From 54275f312c6b71a5b2ec7fb1cb0be05696de3eac Mon Sep 17 00:00:00 2001 From: mikecoomber <58986130+mikecoomber@users.noreply.github.com> Date: Mon, 17 Jun 2024 17:40:24 +0100 Subject: [PATCH] added dart definitions (#54) * added dart definitions * created script to regenerate test files --- package-lock.json | 11 +- package.json | 8 +- scripts/generators/generateDefinitionFiles.ts | 20 +- scripts/generators/generateFonts.ts | 45 +- scripts/templates/icon-types.ts.template | 4 +- scripts/templates/icons.dart.template | 27 +- scripts/types/customTypes.ts | 9 +- test/data/allImageFiles.json | 839 +- test/data/categoryNodes.json | 14747 +------------- test/data/componentSets.json | 383 +- test/data/constants.ts | 2 + test/data/documentResponse.json | 1 + test/data/figmaDoc.json | 16275 ---------------- test/data/generatedFontResponse.json | 2 +- test/data/iconNodes.json | 434 +- test/data/iconsPage.json | 14778 +------------- test/data/index.ts | 5 +- test/data/manifest.json | 2 +- test/data/singleCategoryNode.json | 466 +- test/integration/fetchIcons.test.ts | 2 + test/regenerateTestFiles.ts | 77 + test/unit/figmaUtils.test.ts | 4 +- 22 files changed, 155 insertions(+), 47986 deletions(-) create mode 100644 test/data/documentResponse.json delete mode 100644 test/data/figmaDoc.json create mode 100644 test/regenerateTestFiles.ts diff --git a/package-lock.json b/package-lock.json index d53baaf3..04367fef 100644 --- a/package-lock.json +++ b/package-lock.json @@ -28,7 +28,7 @@ "ts-node": "^10.9.2", "typescript": "^5.4.5", "webfont": "^11.2.26", - "zeta-icon-name-checker": "^0.0.5" + "zeta-icon-name-checker": "^0.0.13" } }, "node_modules/@actions/core": { @@ -9148,10 +9148,11 @@ } }, "node_modules/zeta-icon-name-checker": { - "version": "0.0.5", - "resolved": "https://registry.npmjs.org/zeta-icon-name-checker/-/zeta-icon-name-checker-0.0.5.tgz", - "integrity": "sha512-YlEcEjFv6Z2Em3z4nT05ijI0wtnHRTRInJ22STuD6pnS6/YiKhedoHdsotzFadL7wZT4C4WPYQioqCZ7D89rbA==", - "dev": true + "version": "0.0.13", + "resolved": "https://registry.npmjs.org/zeta-icon-name-checker/-/zeta-icon-name-checker-0.0.13.tgz", + "integrity": "sha512-BGpwJcnRaV6uZrdBCrzJoZZ4wG69peQVhUmbigg0dt/V8s+a4BWYgrhLgWwKFT7QHdtBMHnhjO8Ga8dDKKtH0Q==", + "dev": true, + "license": "MIT" } } } diff --git a/package.json b/package.json index ffec45a6..910da471 100644 --- a/package.json +++ b/package.json @@ -38,7 +38,7 @@ "ts-node": "^10.9.2", "typescript": "^5.4.5", "webfont": "^11.2.26", - "zeta-icon-name-checker": "^0.0.5", + "zeta-icon-name-checker": "^0.0.13", "@types/md5": "^2.3.5", "md5": "^2.3.0", "oslllo-svg-fixer": "^3.0.0" @@ -53,12 +53,12 @@ "license": "MIT", "description": "The icon library for Zebra Technologies' Zeta Design System.", "scripts": { - "pretest": "tsc -p tsconfig.test.json", - "test": "mocha dist/test/**/*.test.js -g fetchIcons -i --file ./test/setup.js --timeout 100000", - "test:build": "mocha dist/test/**/*.test.js -g fetchIcons --timeout 100000", + "test": "tsc -p tsconfig.test.json && mocha dist/test/**/*.test.js -g fetchIcons -i --file ./test/setup.js --timeout 100000", + "test:build": "tsc -p tsconfig.test.json && mocha dist/test/**/*.test.js -g fetchIcons --timeout 100000", "build": "npx tsc -p tsconfig.build.json", "build:fetch-icons": "npx tsc -p tsconfig.scripts.json", "fetch-icons": "npm run build:fetch-icons && node --env-file=.env ./.github/fetch_icons/index.js", + "regenerate-test-files": "ts-node ./test/regenerateTestFiles.ts", "prepack": "npm run build" }, "repository": { diff --git a/scripts/generators/generateDefinitionFiles.ts b/scripts/generators/generateDefinitionFiles.ts index 36a60eb1..9dab5e49 100644 --- a/scripts/generators/generateDefinitionFiles.ts +++ b/scripts/generators/generateDefinitionFiles.ts @@ -39,15 +39,16 @@ const generateDartFile = (fontData: GenerateFontResult): string => { let dartTemplate = readFileSync("./scripts/templates/icons.dart.template").toString(); const newLine = "\n"; - const roundIcons = fontData.dartRoundTypes.join(newLine); - const sharpIcons = fontData.dartSharpTypes.join(newLine); - const roundList = fontData.dartRoundList.join("," + newLine) + ","; - const sharpList = fontData.dartSharpList.join("," + newLine) + ","; + const icons = fontData.dartDefinitions.join(newLine); + const roundIcons = fontData.dartRoundDefinitions.join(newLine); + const sharpIcons = fontData.dartSharpDefinitions.join(newLine); + const iconNames = + fontData.iconNames.map((iconName) => ` '${iconName}': ZetaIcons.${iconName}`).join(`,${newLine}`) + ","; + dartTemplate = dartTemplate.replace("{{icons}}", icons); dartTemplate = dartTemplate.replace("{{roundIcons}}", roundIcons); dartTemplate = dartTemplate.replace("{{sharpIcons}}", sharpIcons); - dartTemplate = dartTemplate.replace("{{sharpIconList}}", sharpList); - dartTemplate = dartTemplate.replace("{{roundIconList}}", roundList); + dartTemplate = dartTemplate.replace("{{iconNames}}", iconNames); return dartTemplate; }; @@ -62,9 +63,12 @@ const generateDartFile = (fontData: GenerateFontResult): string => { const generateTSFile = (fontData: GenerateFontResult): string => { let tsTemplate = readFileSync("./scripts/templates/icon-types.ts.template").toString(); - const tsList = fontData.tsTypes.map((icon) => `"${icon}"`).join(",\n "); + const nameList = fontData.iconNames.map((icon) => `"${icon}"`); + const iconNames = nameList.join(",\n "); + const unionType = nameList.join("\n | "); - tsTemplate = tsTemplate.replace("{{iconNames}}", tsList); + tsTemplate = tsTemplate.replace("{{iconNames}}", iconNames); + tsTemplate = tsTemplate.replace("{{iconTypes}}", unionType); return tsTemplate; }; diff --git a/scripts/generators/generateFonts.ts b/scripts/generators/generateFonts.ts index 8f6888b4..79af5157 100644 --- a/scripts/generators/generateFonts.ts +++ b/scripts/generators/generateFonts.ts @@ -21,12 +21,11 @@ export const generateFonts = async ( fontName: string ): Promise => { const fontResult: GenerateFontResult = { - dartRoundTypes: [], - dartRoundList: [], - dartSharpTypes: [], - dartSharpList: [], - tsTypes: [], - } as GenerateFontResult; + dartDefinitions: [], + dartRoundDefinitions: [], + dartSharpDefinitions: [], + iconNames: [], + }; const baseFontPath = `${fontOutputDir}/${fontName}`; createFolder(fontOutputDir); @@ -77,18 +76,15 @@ const buildFontFile = async (type: FontType, fontResult: GenerateFontResult, inp obj.unicode[0] = String.fromCharCode(unicodeAcc); obj.name = obj.unicode[1] = obj.name.replace("_round", "").replace("_sharp", ""); - const dartIconName = getIconFileName(obj.name, type); - const strUnicode = Number(unicodeAcc).toString(16); if (type === "round") { - fontResult.dartRoundTypes.push(getDartIconDefinition(dartIconName, strUnicode, "round")); - fontResult.dartRoundList.push(getDartIconListItem(dartIconName)); + fontResult.dartDefinitions.push(getDartIconDefinition(obj.name, strUnicode, undefined)); + fontResult.dartRoundDefinitions.push(getDartIconDefinition(obj.name, strUnicode, "round")); - fontResult.tsTypes.push(obj.name); + fontResult.iconNames.push(obj.name); } else if (type === "sharp") { - fontResult.dartSharpTypes.push(getDartIconDefinition(dartIconName, strUnicode, "sharp")); - fontResult.dartSharpList.push(getDartIconListItem(dartIconName)); + fontResult.dartSharpDefinitions.push(getDartIconDefinition(obj.name, strUnicode, "sharp")); } unicodeAcc++; @@ -109,19 +105,14 @@ const buildFontFile = async (type: FontType, fontResult: GenerateFontResult, inp * @param {FontType} type - Round or sharp. * @returns {string} Dart definition line used in body of `Icons.dart`. */ -function getDartIconDefinition(iconName: string, unicode: string, type: FontType): string { - return ` static const IconData ${iconName} = IconData(0x${unicode}, fontFamily: _family${type.capitalize()}, fontPackage: _package);`; -} +function getDartIconDefinition(iconName: string, unicode: string, type: FontType | undefined): string { + if (type == undefined) { + iconName = iconName.toSnakeCase(); + } else { + iconName = getIconFileName(iconName, type); + } -/** - * Generates line in dart icons list for an icon. - * - * * Does not contain new line characters, or commas. - * * Does contain spaces for formatting. - * - * @param {string} iconName - snake_case formatted name for icon. - * @returns {string} Dart map item used for list of icons. - */ -function getDartIconListItem(iconName: string): string { - return ` '${iconName}': ZetaIcons.${iconName}`; + return ` static const IconData ${iconName} = IconData(0x${unicode}, fontFamily: family${ + type?.capitalize() ?? "" + }, fontPackage: package);`; } diff --git a/scripts/templates/icon-types.ts.template b/scripts/templates/icon-types.ts.template index efa0cbef..b6d20977 100644 --- a/scripts/templates/icon-types.ts.template +++ b/scripts/templates/icon-types.ts.template @@ -1,5 +1,5 @@ export const ZetaIconNameList = [ {{iconNames}} ]; -type ZetaIconNameTuple = typeof ZetaIconNameList; -export type ZetaIconName = ZetaIconNameTuple[number]; + +export type ZetaIconName = {{iconTypes}}; diff --git a/scripts/templates/icons.dart.template b/scripts/templates/icons.dart.template index fe8128fd..3cbd9bec 100644 --- a/scripts/templates/icons.dart.template +++ b/scripts/templates/icons.dart.template @@ -1,14 +1,20 @@ // ignore_for_file: public_member_api_docs, constant_identifier_names import 'package:flutter/material.dart'; +// This file is automatically generated by the zeta-icons respository +// DO NOT MODIFY + const zetaIconsVersion = 'VERSION_NUM'; /// Zeta Icons. Full list of icons can be found at [Zeta Icons](https://zeta-icons.web.app/). -class ZetaIcons { - ZetaIcons._(); - static const String _familyRound = 'zeta-icons-round'; - static const String _familySharp = 'zeta-icons-sharp'; - static const String _package = 'zeta_flutter'; +abstract class ZetaIcons { + static const String family = 'zeta-icons'; + static const String familyRound = 'zeta-icons-round'; + static const String familySharp = 'zeta-icons-sharp'; + static const String package = 'zeta_flutter'; + + // Icons +{{icons}} // Round Icons {{roundIcons}} @@ -17,12 +23,7 @@ class ZetaIcons { {{sharpIcons}} } -// List of all rounded icons. -const Map iconsRound = { -{{roundIconList}} -}; - -// List of all sharp icons. -const Map iconsSharp = { -{{sharpIconList}} + // List of all rounded icons. +const Map icons = { +{{iconNames}} }; diff --git a/scripts/types/customTypes.ts b/scripts/types/customTypes.ts index 9f1c1d40..75cf014c 100644 --- a/scripts/types/customTypes.ts +++ b/scripts/types/customTypes.ts @@ -18,11 +18,10 @@ export interface FontDefinition extends IconDefinition { } export interface GenerateFontResult { - dartRoundTypes: string[]; - dartRoundList: string[]; - dartSharpTypes: string[]; - dartSharpList: string[]; - tsTypes: string[]; + dartDefinitions: string[]; + dartRoundDefinitions: string[]; + dartSharpDefinitions: string[]; + iconNames: string[]; } export type IconManifest = Map; diff --git a/test/data/allImageFiles.json b/test/data/allImageFiles.json index 13028953..0421a743 100644 --- a/test/data/allImageFiles.json +++ b/test/data/allImageFiles.json @@ -1,838 +1 @@ -{ - "176:5662": { - "name": "Add", - "searchTerms": ["Plus", "add", "create", "request"], - "roundPath": "./test/outputs/test-figma/icons/content/add_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/content/add_sharp.svg", - "category": "content", - "roundId": "176:5663", - "sharpId": "176:5666", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5669": { - "name": "Sort", - "searchTerms": ["sort", "reorder"], - "roundPath": "./test/outputs/test-figma/icons/content/sort_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/content/sort_sharp.svg", - "category": "content", - "roundId": "176:5670", - "sharpId": "176:5673", - "roundData": "\n\n\n\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n\n\n\n" - }, - "176:5676": { - "name": "Content", - "searchTerms": ["duplicate", "copy", "clipboard", "Workcloud", "WC"], - "roundPath": "./test/outputs/test-figma/icons/content/content_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/content/content_sharp.svg", - "category": "content", - "roundId": "176:5677", - "sharpId": "176:5680", - "roundData": "\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5683": { - "name": "Copy File", - "searchTerms": [""], - "roundPath": "./test/outputs/test-figma/icons/content/copy_file_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/content/copy_file_sharp.svg", - "category": "content", - "roundId": "176:5684", - "sharpId": "176:5687", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5690": { - "name": "Remove Circle Outline", - "searchTerms": ["Minus"], - "roundPath": "./test/outputs/test-figma/icons/content/remove_circle_outline_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/content/remove_circle_outline_sharp.svg", - "category": "content", - "roundId": "176:5691", - "sharpId": "176:5694", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5697": { - "name": "Add Circle Outline", - "searchTerms": ["Plus"], - "roundPath": "./test/outputs/test-figma/icons/content/add_circle_outline_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/content/add_circle_outline_sharp.svg", - "category": "content", - "roundId": "176:5698", - "sharpId": "176:5701", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5704": { - "name": "Remove Circle", - "searchTerms": ["Minus", "Workcloud", "WC"], - "roundPath": "./test/outputs/test-figma/icons/content/remove_circle_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/content/remove_circle_sharp.svg", - "category": "content", - "roundId": "176:5705", - "sharpId": "176:5708", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5711": { - "name": "Block", - "searchTerms": ["unclaim", "cancel", "do not", "DNE", "Workcloud", "WC"], - "roundPath": "./test/outputs/test-figma/icons/content/block_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/content/block_sharp.svg", - "category": "content", - "roundId": "176:5712", - "sharpId": "176:5715", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5718": { - "name": "Add Circle", - "searchTerms": ["Plus"], - "roundPath": "./test/outputs/test-figma/icons/content/add_circle_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/content/add_circle_sharp.svg", - "category": "content", - "roundId": "176:5719", - "sharpId": "176:5722", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5725": { - "name": "Remove", - "searchTerms": ["Minus", "remove", "delete", "Workcloud", "WC"], - "roundPath": "./test/outputs/test-figma/icons/content/remove_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/content/remove_sharp.svg", - "category": "content", - "roundId": "176:5726", - "sharpId": "176:5729", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5732": { - "name": "Android", - "searchTerms": ["OS"], - "roundPath": "./test/outputs/test-figma/icons/content/android_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/content/android_sharp.svg", - "category": "content", - "roundId": "176:5733", - "sharpId": "176:5736", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5739": { - "name": "Add Box", - "searchTerms": ["Plus"], - "roundPath": "./test/outputs/test-figma/icons/content/add_box_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/content/add_box_sharp.svg", - "category": "content", - "roundId": "176:5740", - "sharpId": "176:5743", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5746": { - "name": "Remove Box", - "searchTerms": ["Minus"], - "roundPath": "./test/outputs/test-figma/icons/content/remove_box_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/content/remove_box_sharp.svg", - "category": "content", - "roundId": "176:5747", - "sharpId": "176:5750", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5753": { - "name": "Push Pin", - "searchTerms": ["pin", "save", "pushpin", "mark", "Workcloud", "WC"], - "roundPath": "./test/outputs/test-figma/icons/content/push_pin_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/content/push_pin_sharp.svg", - "category": "content", - "roundId": "176:5754", - "sharpId": "176:5757", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5760": { - "name": "Send", - "searchTerms": ["chat", "message", "communication", "send", "Workcloud", "WC"], - "roundPath": "./test/outputs/test-figma/icons/content/send_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/content/send_sharp.svg", - "category": "content", - "roundId": "176:5761", - "sharpId": "176:5764", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5767": { - "name": "Backspace", - "searchTerms": ["Delete", "clear", "remove", "backspace", "Workcloud", "WC"], - "roundPath": "./test/outputs/test-figma/icons/content/backspace_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/content/backspace_sharp.svg", - "category": "content", - "roundId": "176:5768", - "sharpId": "176:5771", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5774": { - "name": "Flag", - "searchTerms": ["flag", "mark", "Workcloud", "WC"], - "roundPath": "./test/outputs/test-figma/icons/content/flag_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/content/flag_sharp.svg", - "category": "content", - "roundId": "176:5775", - "sharpId": "176:5778", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5781": { - "name": "Save", - "searchTerms": ["file", "save"], - "roundPath": "./test/outputs/test-figma/icons/content/save_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/content/save_sharp.svg", - "category": "content", - "roundId": "176:5782", - "sharpId": "176:5785", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5788": { - "name": "Reply", - "searchTerms": ["email", "e-mail", "envelope", "message", "reply", "Workcloud", "WC"], - "roundPath": "./test/outputs/test-figma/icons/content/reply_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/content/reply_sharp.svg", - "category": "content", - "roundId": "176:5789", - "sharpId": "176:5792", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5795": { - "name": "Redo", - "searchTerms": ["redo", "edit", "Workcloud", "WC"], - "roundPath": "./test/outputs/test-figma/icons/content/redo_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/content/redo_sharp.svg", - "category": "content", - "roundId": "176:5796", - "sharpId": "176:5799", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5802": { - "name": "Save Alt", - "searchTerms": ["save", "file", "import", "download", "Workcloud", "WC"], - "roundPath": "./test/outputs/test-figma/icons/content/save_alt_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/content/save_alt_sharp.svg", - "category": "content", - "roundId": "176:5803", - "sharpId": "176:5806", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5809": { - "name": "Undo", - "searchTerms": ["undo", "edit", "Workcloud", "WC"], - "roundPath": "./test/outputs/test-figma/icons/content/undo_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/content/undo_sharp.svg", - "category": "content", - "roundId": "176:5810", - "sharpId": "176:5813", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5816": { - "name": "Chart Pie", - "searchTerms": ["report", "analytics", "chart", "pie chart", "pie-chart", "piechart"], - "roundPath": "./test/outputs/test-figma/icons/content/chart_pie_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/content/chart_pie_sharp.svg", - "category": "content", - "roundId": "176:5820", - "sharpId": "176:5817", - "roundData": "\n\n\n", - "sharpData": "\n\n\n" - }, - "176:5822": { - "name": "Email", - "searchTerms": ["Mail", "@", "email", "e-mail", "envelope", "message", "Workcloud", "WC"], - "roundPath": "./test/outputs/test-figma/icons/content/email_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/content/email_sharp.svg", - "category": "content", - "roundId": "176:5823", - "sharpId": "176:5826", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5829": { - "name": "Email Outline", - "searchTerms": ["Mail", "@", "email", "e-mail", "envelope", "message", "Workcloud", "WC", "outline"], - "roundPath": "./test/outputs/test-figma/icons/content/email_outline_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/content/email_outline_sharp.svg", - "category": "content", - "roundId": "176:5830", - "sharpId": "176:5833", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5839": { - "name": "Scanner", - "searchTerms": ["mobile"], - "roundPath": "./test/outputs/test-figma/icons/hardware/scanner_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/hardware/scanner_sharp.svg", - "category": "hardware", - "roundId": "176:5840", - "sharpId": "176:5843", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5846": { - "name": "Printer", - "searchTerms": ["print", "printer", "Workcloud", "WC"], - "roundPath": "./test/outputs/test-figma/icons/hardware/printer_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/hardware/printer_sharp.svg", - "category": "hardware", - "roundId": "176:5847", - "sharpId": "176:5850", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5853": { - "name": "Cast", - "searchTerms": ["Chrome"], - "roundPath": "./test/outputs/test-figma/icons/hardware/cast_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/hardware/cast_sharp.svg", - "category": "hardware", - "roundId": "176:5854", - "sharpId": "176:5857", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5860": { - "name": "Cast Connected", - "searchTerms": ["Chrome"], - "roundPath": "./test/outputs/test-figma/icons/hardware/cast_connected_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/hardware/cast_connected_sharp.svg", - "category": "hardware", - "roundId": "176:5861", - "sharpId": "176:5864", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5867": { - "name": "Desktop", - "searchTerms": [""], - "roundPath": "./test/outputs/test-figma/icons/hardware/desktop_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/hardware/desktop_sharp.svg", - "category": "hardware", - "roundId": "176:5868", - "sharpId": "176:5871", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5874": { - "name": "Devices Ecosystem", - "searchTerms": [""], - "roundPath": "./test/outputs/test-figma/icons/hardware/devices_ecosystem_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/hardware/devices_ecosystem_sharp.svg", - "category": "hardware", - "roundId": "176:5875", - "sharpId": "176:5878", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5881": { - "name": "Device Settings", - "searchTerms": [""], - "roundPath": "./test/outputs/test-figma/icons/hardware/device_settings_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/hardware/device_settings_sharp.svg", - "category": "hardware", - "roundId": "176:5882", - "sharpId": "176:5885", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5888": { - "name": "Headphones", - "searchTerms": [""], - "roundPath": "./test/outputs/test-figma/icons/hardware/headphones_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/hardware/headphones_sharp.svg", - "category": "hardware", - "roundId": "176:5889", - "sharpId": "176:5892", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5895": { - "name": "Keyboard", - "searchTerms": ["keyboard", "keypad", "type", "Workcloud", "WC"], - "roundPath": "./test/outputs/test-figma/icons/hardware/keyboard_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/hardware/keyboard_sharp.svg", - "category": "hardware", - "roundId": "176:5896", - "sharpId": "176:5899", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5902": { - "name": "Laptop", - "searchTerms": ["Computer"], - "roundPath": "./test/outputs/test-figma/icons/hardware/laptop_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/hardware/laptop_sharp.svg", - "category": "hardware", - "roundId": "176:5903", - "sharpId": "176:5906", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5909": { - "name": "Memory", - "searchTerms": ["Processor", "Microprocessor"], - "roundPath": "./test/outputs/test-figma/icons/hardware/memory_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/hardware/memory_sharp.svg", - "category": "hardware", - "roundId": "176:5910", - "sharpId": "176:5913", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5916": { - "name": "Monitor", - "searchTerms": [""], - "roundPath": "./test/outputs/test-figma/icons/hardware/monitor_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/hardware/monitor_sharp.svg", - "category": "hardware", - "roundId": "176:5917", - "sharpId": "176:5920", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5923": { - "name": "Phone Android", - "searchTerms": ["Mobile"], - "roundPath": "./test/outputs/test-figma/icons/hardware/phone_android_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/hardware/phone_android_sharp.svg", - "category": "hardware", - "roundId": "176:5924", - "sharpId": "176:5927", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5930": { - "name": "Phone iPhone", - "searchTerms": ["Mobile"], - "roundPath": "./test/outputs/test-figma/icons/hardware/phone_iphone_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/hardware/phone_iphone_sharp.svg", - "category": "hardware", - "roundId": "176:5931", - "sharpId": "176:5934", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5937": { - "name": "Phonelink", - "searchTerms": ["Connected"], - "roundPath": "./test/outputs/test-figma/icons/hardware/phonelink_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/hardware/phonelink_sharp.svg", - "category": "hardware", - "roundId": "176:5938", - "sharpId": "176:5941", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5944": { - "name": "Security", - "searchTerms": ["Protect", "Protection", "Shield"], - "roundPath": "./test/outputs/test-figma/icons/hardware/security_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/hardware/security_sharp.svg", - "category": "hardware", - "roundId": "176:5945", - "sharpId": "176:5948", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5951": { - "name": "Video Play", - "searchTerms": [""], - "roundPath": "./test/outputs/test-figma/icons/hardware/video_play_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/hardware/video_play_sharp.svg", - "category": "hardware", - "roundId": "176:5952", - "sharpId": "176:5955", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5958": { - "name": "Smart Phone", - "searchTerms": ["Mobile", "phone", "device", "Workcloud", "WC"], - "roundPath": "./test/outputs/test-figma/icons/hardware/smart_phone_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/hardware/smart_phone_sharp.svg", - "category": "hardware", - "roundId": "176:5959", - "sharpId": "176:5962", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5965": { - "name": "Speaker", - "searchTerms": [""], - "roundPath": "./test/outputs/test-figma/icons/hardware/speaker_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/hardware/speaker_sharp.svg", - "category": "hardware", - "roundId": "176:5966", - "sharpId": "176:5969", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5972": { - "name": "Tablet", - "searchTerms": [""], - "roundPath": "./test/outputs/test-figma/icons/hardware/tablet_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/hardware/tablet_sharp.svg", - "category": "hardware", - "roundId": "176:5973", - "sharpId": "176:5976", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5979": { - "name": "Tablet Mac", - "searchTerms": ["iPad"], - "roundPath": "./test/outputs/test-figma/icons/hardware/tablet_mac_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/hardware/tablet_mac_sharp.svg", - "category": "hardware", - "roundId": "176:5980", - "sharpId": "176:5983", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5986": { - "name": "TV", - "searchTerms": ["Television"], - "roundPath": "./test/outputs/test-figma/icons/hardware/tv_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/hardware/tv_sharp.svg", - "category": "hardware", - "roundId": "176:5987", - "sharpId": "176:5990", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:5993": { - "name": "Watch", - "searchTerms": ["Smartwatch"], - "roundPath": "./test/outputs/test-figma/icons/hardware/watch_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/hardware/watch_sharp.svg", - "category": "hardware", - "roundId": "176:5994", - "sharpId": "176:5997", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:6003": { - "name": "Finished Download", - "searchTerms": ["Complete", "Success", "Done"], - "roundPath": "./test/outputs/test-figma/icons/file/finished_download_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/file/finished_download_sharp.svg", - "category": "file", - "roundId": "176:6004", - "sharpId": "176:6007", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:6010": { - "name": "Downloading", - "searchTerms": [""], - "roundPath": "./test/outputs/test-figma/icons/file/downloading_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/file/downloading_sharp.svg", - "category": "file", - "roundId": "176:6011", - "sharpId": "176:6014", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:6017": { - "name": "Cloud", - "searchTerms": [""], - "roundPath": "./test/outputs/test-figma/icons/file/cloud_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/file/cloud_sharp.svg", - "category": "file", - "roundId": "176:6018", - "sharpId": "176:6021", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:6024": { - "name": "Cloud Done", - "searchTerms": ["Check", "Check Mark", "Mark"], - "roundPath": "./test/outputs/test-figma/icons/file/cloud_done_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/file/cloud_done_sharp.svg", - "category": "file", - "roundId": "176:6025", - "sharpId": "176:6028", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:6031": { - "name": "Cloud Download", - "searchTerms": ["file", "download", "cloud", "Workcloud", "WC"], - "roundPath": "./test/outputs/test-figma/icons/file/cloud_download_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/file/cloud_download_sharp.svg", - "category": "file", - "roundId": "176:6032", - "sharpId": "176:6035", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:6038": { - "name": "Cloud Outline", - "searchTerms": [""], - "roundPath": "./test/outputs/test-figma/icons/file/cloud_outline_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/file/cloud_outline_sharp.svg", - "category": "file", - "roundId": "176:6039", - "sharpId": "176:6042", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:6045": { - "name": "Cloud Upload", - "searchTerms": ["file", "upload", "cloud", "Workcloud", "WC"], - "roundPath": "./test/outputs/test-figma/icons/file/cloud_upload_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/file/cloud_upload_sharp.svg", - "category": "file", - "roundId": "176:6046", - "sharpId": "176:6049", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:6052": { - "name": "Cloud Off", - "searchTerms": ["Offline"], - "roundPath": "./test/outputs/test-figma/icons/file/cloud_off_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/file/cloud_off_sharp.svg", - "category": "file", - "roundId": "176:6053", - "sharpId": "176:6056", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:6059": { - "name": "Folder", - "searchTerms": ["folder", "Workcloud", "WC"], - "roundPath": "./test/outputs/test-figma/icons/file/folder_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/file/folder_sharp.svg", - "category": "file", - "roundId": "176:6060", - "sharpId": "176:6063", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:6066": { - "name": "Create New Folder", - "searchTerms": ["Add"], - "roundPath": "./test/outputs/test-figma/icons/file/create_new_folder_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/file/create_new_folder_sharp.svg", - "category": "file", - "roundId": "176:6067", - "sharpId": "176:6070", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:6073": { - "name": "Folder Outline", - "searchTerms": [""], - "roundPath": "./test/outputs/test-figma/icons/file/folder_outline_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/file/folder_outline_sharp.svg", - "category": "file", - "roundId": "176:6074", - "sharpId": "176:6077", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:6080": { - "name": "Shared Folder", - "searchTerms": ["Network", "Access"], - "roundPath": "./test/outputs/test-figma/icons/file/shared_folder_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/file/shared_folder_sharp.svg", - "category": "file", - "roundId": "176:6081", - "sharpId": "176:6084", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:6087": { - "name": "Grid View", - "searchTerms": ["2x2"], - "roundPath": "./test/outputs/test-figma/icons/file/grid_view_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/file/grid_view_sharp.svg", - "category": "file", - "roundId": "176:6088", - "sharpId": "176:6095", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:6102": { - "name": "Upload File", - "searchTerms": [""], - "roundPath": "./test/outputs/test-figma/icons/file/upload_file_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/file/upload_file_sharp.svg", - "category": "file", - "roundId": "176:6103", - "sharpId": "176:6106", - "roundData": "\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n\n\n\n\n" - }, - "176:6109": { - "name": "JPG Attach", - "searchTerms": ["Type", "File"], - "roundPath": "./test/outputs/test-figma/icons/file/jpg_attach_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/file/jpg_attach_sharp.svg", - "category": "file", - "roundId": "176:6110", - "sharpId": "176:6114", - "roundData": "\n\n\n\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n" - }, - "176:6119": { - "name": "PDF Attach", - "searchTerms": ["Type", "File"], - "roundPath": "./test/outputs/test-figma/icons/file/pdf_attach_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/file/pdf_attach_sharp.svg", - "category": "file", - "roundId": "176:6120", - "sharpId": "176:6124", - "roundData": "\n\n\n\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n" - }, - "176:6129": { - "name": "PNG Attach", - "searchTerms": ["Type", "File"], - "roundPath": "./test/outputs/test-figma/icons/file/png_attach_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/file/png_attach_sharp.svg", - "category": "file", - "roundId": "176:6130", - "sharpId": "176:6134", - "roundData": "\n\n\n\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n" - }, - "176:6139": { - "name": "DOC Attach", - "searchTerms": ["Type", "File"], - "roundPath": "./test/outputs/test-figma/icons/file/doc_attach_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/file/doc_attach_sharp.svg", - "category": "file", - "roundId": "176:6140", - "sharpId": "176:6144", - "roundData": "\n\n\n\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n" - }, - "176:6149": { - "name": "PPT Attach", - "searchTerms": ["Type", "File"], - "roundPath": "./test/outputs/test-figma/icons/file/ppt_attach_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/file/ppt_attach_sharp.svg", - "category": "file", - "roundId": "176:6150", - "sharpId": "176:6154", - "roundData": "\n\n\n\n\n\n\n\n\n\n\n\n\n", - "sharpData": "\n\n\n\n\n\n" - }, - "176:6159": { - "name": "Open New Off", - "searchTerms": ["Workcloud", "WC", "file", "do not export", "export", "open in new", "open", "launch"], - "roundPath": "./test/outputs/test-figma/icons/file/open_new_off_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/file/open_new_off_sharp.svg", - "category": "file", - "roundId": "176:6160", - "sharpId": "176:6162", - "roundData": "\n\n\n", - "sharpData": "\n\n\n" - }, - "176:6164": { - "name": "Page Height", - "searchTerms": ["Workcloud", "WC", "page height"], - "roundPath": "./test/outputs/test-figma/icons/file/page_height_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/file/page_height_sharp.svg", - "category": "file", - "roundId": "176:6165", - "sharpId": "176:6167", - "roundData": "\n\n\n\n\n", - "sharpData": "\n\n\n\n\n" - }, - "176:6169": { - "name": "Page Width", - "searchTerms": ["Workcloud", "WC", "page height"], - "roundPath": "./test/outputs/test-figma/icons/file/page_width_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/file/page_width_sharp.svg", - "category": "file", - "roundId": "176:6170", - "sharpId": "176:6172", - "roundData": "\n\n\n\n\n", - "sharpData": "\n\n\n\n\n" - }, - "176:6174": { - "name": "Page Rotate", - "searchTerms": ["Workcloud", "WC", "page rotate"], - "roundPath": "./test/outputs/test-figma/icons/file/page_rotate_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/file/page_rotate_sharp.svg", - "category": "file", - "roundId": "176:6175", - "sharpId": "176:6177", - "roundData": "\n\n\n", - "sharpData": "\n\n\n" - }, - "176:6179": { - "name": "Save File", - "searchTerms": ["Workcloud", "WC", "file", "save"], - "roundPath": "./test/outputs/test-figma/icons/file/save_file_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/file/save_file_sharp.svg", - "category": "file", - "roundId": "176:6180", - "sharpId": "176:6182", - "roundData": "\n\n\n", - "sharpData": "\n\n\n" - }, - "176:6184": { - "name": "Publish", - "searchTerms": ["Workcloud", "WC", "file", "publish"], - "roundPath": "./test/outputs/test-figma/icons/file/publish_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/file/publish_sharp.svg", - "category": "file", - "roundId": "176:6185", - "sharpId": "176:6187", - "roundData": "\n\n\n", - "sharpData": "\n\n\n" - }, - "176:6189": { - "name": "File", - "searchTerms": ["Workcloud", "WC", "file", "note", "paper"], - "roundPath": "./test/outputs/test-figma/icons/file/file_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/file/file_sharp.svg", - "category": "file", - "roundId": "176:6190", - "sharpId": "176:6192", - "roundData": "\n\n\n", - "sharpData": "\n\n\n" - }, - "176:6194": { - "name": "Folder File", - "searchTerms": ["Workcloud", "WC", "project", "folder", "file"], - "roundPath": "./test/outputs/test-figma/icons/file/folder_file_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/file/folder_file_sharp.svg", - "category": "file", - "roundId": "176:6195", - "sharpId": "176:6197", - "roundData": "\n\n\n", - "sharpData": "\n\n\n" - }, - "176:6199": { - "name": "Maintenance", - "searchTerms": ["Workcloud", "WC", "maintenance", "repair", "hammer", "wrench", "tools"], - "roundPath": "./test/outputs/test-figma/icons/file/maintenance_round.svg", - "sharpPath": "./test/outputs/test-figma/icons/file/maintenance_sharp.svg", - "category": "file", - "roundId": "176:6200", - "sharpId": "176:6202", - "roundData": "\n\n\n\n", - "sharpData": "\n\n\n\n" - } -} +{"176:5662":{"name":"Add","searchTerms":["Plus","add","create","request"],"roundPath":"./test/outputs/test-figma/icons/content/add_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/add_sharp.svg","category":"content","roundId":"176:5663","sharpId":"176:5666","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5669":{"name":"Sort","searchTerms":["sort","reorder"],"roundPath":"./test/outputs/test-figma/icons/content/sort_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/sort_sharp.svg","category":"content","roundId":"176:5670","sharpId":"176:5673","roundData":"\n\n\n\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n\n\n\n"},"176:5676":{"name":"Content","searchTerms":["duplicate","copy","clipboard","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/content/content_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/content_sharp.svg","category":"content","roundId":"176:5677","sharpId":"176:5680","roundData":"\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5683":{"name":"Copy File","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/content/copy_file_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/copy_file_sharp.svg","category":"content","roundId":"176:5684","sharpId":"176:5687","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5690":{"name":"Remove Circle Outline","searchTerms":["Minus"],"roundPath":"./test/outputs/test-figma/icons/content/remove_circle_outline_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/remove_circle_outline_sharp.svg","category":"content","roundId":"176:5691","sharpId":"176:5694","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5697":{"name":"Add Circle Outline","searchTerms":["Plus"],"roundPath":"./test/outputs/test-figma/icons/content/add_circle_outline_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/add_circle_outline_sharp.svg","category":"content","roundId":"176:5698","sharpId":"176:5701","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5704":{"name":"Remove Circle","searchTerms":["Minus","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/content/remove_circle_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/remove_circle_sharp.svg","category":"content","roundId":"176:5705","sharpId":"176:5708","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5711":{"name":"Block","searchTerms":["unclaim","cancel","do not","DNE","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/content/block_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/block_sharp.svg","category":"content","roundId":"176:5712","sharpId":"176:5715","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5718":{"name":"Add Circle","searchTerms":["Plus"],"roundPath":"./test/outputs/test-figma/icons/content/add_circle_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/add_circle_sharp.svg","category":"content","roundId":"176:5719","sharpId":"176:5722","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5725":{"name":"Remove","searchTerms":["Minus","remove","delete","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/content/remove_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/remove_sharp.svg","category":"content","roundId":"176:5726","sharpId":"176:5729","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5732":{"name":"Android","searchTerms":["OS"],"roundPath":"./test/outputs/test-figma/icons/content/android_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/android_sharp.svg","category":"content","roundId":"176:5733","sharpId":"176:5736","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5739":{"name":"Add Box","searchTerms":["Plus"],"roundPath":"./test/outputs/test-figma/icons/content/add_box_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/add_box_sharp.svg","category":"content","roundId":"176:5740","sharpId":"176:5743","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5746":{"name":"Remove Box","searchTerms":["Minus"],"roundPath":"./test/outputs/test-figma/icons/content/remove_box_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/remove_box_sharp.svg","category":"content","roundId":"176:5747","sharpId":"176:5750","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5753":{"name":"Push Pin","searchTerms":["pin","save","pushpin","mark","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/content/push_pin_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/push_pin_sharp.svg","category":"content","roundId":"176:5754","sharpId":"176:5757","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5760":{"name":"Send","searchTerms":["chat","message","communication","send","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/content/send_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/send_sharp.svg","category":"content","roundId":"176:5761","sharpId":"176:5764","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5767":{"name":"Backspace","searchTerms":["Delete","clear","remove","backspace","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/content/backspace_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/backspace_sharp.svg","category":"content","roundId":"176:5768","sharpId":"176:5771","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5774":{"name":"Flag","searchTerms":["flag","mark","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/content/flag_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/flag_sharp.svg","category":"content","roundId":"176:5775","sharpId":"176:5778","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5781":{"name":"Save","searchTerms":["file","save"],"roundPath":"./test/outputs/test-figma/icons/content/save_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/save_sharp.svg","category":"content","roundId":"176:5782","sharpId":"176:5785","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5788":{"name":"Reply","searchTerms":["email","e-mail","envelope","message","reply","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/content/reply_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/reply_sharp.svg","category":"content","roundId":"176:5789","sharpId":"176:5792","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5795":{"name":"Redo","searchTerms":["redo","edit","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/content/redo_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/redo_sharp.svg","category":"content","roundId":"176:5796","sharpId":"176:5799","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5802":{"name":"Save Alt","searchTerms":["save","file","import","download","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/content/save_alt_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/save_alt_sharp.svg","category":"content","roundId":"176:5803","sharpId":"176:5806","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5809":{"name":"Undo","searchTerms":["undo","edit","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/content/undo_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/undo_sharp.svg","category":"content","roundId":"176:5810","sharpId":"176:5813","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5816":{"name":"Chart Pie","searchTerms":["report","analytics","chart","pie chart","pie-chart","piechart"],"roundPath":"./test/outputs/test-figma/icons/content/chart_pie_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/chart_pie_sharp.svg","category":"content","roundId":"176:5820","sharpId":"176:5817","roundData":"\n\n\n","sharpData":"\n\n\n"},"176:5822":{"name":"Email","searchTerms":["Mail","@","email","e-mail","envelope","message","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/content/email_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/email_sharp.svg","category":"content","roundId":"176:5823","sharpId":"176:5826","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5829":{"name":"Email Outline","searchTerms":["Mail","@","email","e-mail","envelope","message","Workcloud","WC","outline"],"roundPath":"./test/outputs/test-figma/icons/content/email_outline_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/email_outline_sharp.svg","category":"content","roundId":"176:5830","sharpId":"176:5833","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5839":{"name":"Scanner","searchTerms":["mobile"],"roundPath":"./test/outputs/test-figma/icons/hard_ware/scanner_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/scanner_sharp.svg","category":"hard_ware","roundId":"176:5840","sharpId":"176:5843","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5846":{"name":"Printer","searchTerms":["print","printer","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/hard_ware/printer_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/printer_sharp.svg","category":"hard_ware","roundId":"176:5847","sharpId":"176:5850","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5853":{"name":"Cast","searchTerms":["Chrome"],"roundPath":"./test/outputs/test-figma/icons/hard_ware/cast_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/cast_sharp.svg","category":"hard_ware","roundId":"176:5854","sharpId":"176:5857","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5860":{"name":"Cast Connected","searchTerms":["Chrome"],"roundPath":"./test/outputs/test-figma/icons/hard_ware/cast_connected_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/cast_connected_sharp.svg","category":"hard_ware","roundId":"176:5861","sharpId":"176:5864","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5867":{"name":"Desktop","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/hard_ware/desktop_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/desktop_sharp.svg","category":"hard_ware","roundId":"176:5868","sharpId":"176:5871","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5874":{"name":"Devices Ecosystem","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/hard_ware/devices_ecosystem_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/devices_ecosystem_sharp.svg","category":"hard_ware","roundId":"176:5875","sharpId":"176:5878","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5881":{"name":"Device Settings","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/hard_ware/device_settings_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/device_settings_sharp.svg","category":"hard_ware","roundId":"176:5882","sharpId":"176:5885","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5888":{"name":"Headphones","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/hard_ware/headphones_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/headphones_sharp.svg","category":"hard_ware","roundId":"176:5889","sharpId":"176:5892","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5895":{"name":"Keyboard","searchTerms":["keyboard","keypad","type","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/hard_ware/keyboard_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/keyboard_sharp.svg","category":"hard_ware","roundId":"176:5896","sharpId":"176:5899","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5902":{"name":"Laptop","searchTerms":["Computer"],"roundPath":"./test/outputs/test-figma/icons/hard_ware/laptop_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/laptop_sharp.svg","category":"hard_ware","roundId":"176:5903","sharpId":"176:5906","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5909":{"name":"Memory","searchTerms":["Processor","Microprocessor"],"roundPath":"./test/outputs/test-figma/icons/hard_ware/memory_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/memory_sharp.svg","category":"hard_ware","roundId":"176:5910","sharpId":"176:5913","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5916":{"name":"Monitor","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/hard_ware/monitor_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/monitor_sharp.svg","category":"hard_ware","roundId":"176:5917","sharpId":"176:5920","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5923":{"name":"Phone Android","searchTerms":["Mobile"],"roundPath":"./test/outputs/test-figma/icons/hard_ware/phone_android_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/phone_android_sharp.svg","category":"hard_ware","roundId":"176:5924","sharpId":"176:5927","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5930":{"name":"Phone iPhone","searchTerms":["Mobile"],"roundPath":"./test/outputs/test-figma/icons/hard_ware/phone_iphone_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/phone_iphone_sharp.svg","category":"hard_ware","roundId":"176:5931","sharpId":"176:5934","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5937":{"name":"Phonelink","searchTerms":["Connected"],"roundPath":"./test/outputs/test-figma/icons/hard_ware/phonelink_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/phonelink_sharp.svg","category":"hard_ware","roundId":"176:5938","sharpId":"176:5941","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5944":{"name":"Security","searchTerms":["Protect","Protection","Shield"],"roundPath":"./test/outputs/test-figma/icons/hard_ware/security_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/security_sharp.svg","category":"hard_ware","roundId":"176:5945","sharpId":"176:5948","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5951":{"name":"Video Play","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/hard_ware/video_play_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/video_play_sharp.svg","category":"hard_ware","roundId":"176:5952","sharpId":"176:5955","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5958":{"name":"Smart Phone","searchTerms":["Mobile","phone","device","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/hard_ware/smart_phone_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/smart_phone_sharp.svg","category":"hard_ware","roundId":"176:5959","sharpId":"176:5962","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5965":{"name":"Speaker","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/hard_ware/speaker_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/speaker_sharp.svg","category":"hard_ware","roundId":"176:5966","sharpId":"176:5969","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5972":{"name":"Tablet","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/hard_ware/tablet_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/tablet_sharp.svg","category":"hard_ware","roundId":"176:5973","sharpId":"176:5976","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5979":{"name":"Tablet Mac","searchTerms":["iPad"],"roundPath":"./test/outputs/test-figma/icons/hard_ware/tablet_mac_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/tablet_mac_sharp.svg","category":"hard_ware","roundId":"176:5980","sharpId":"176:5983","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5986":{"name":"TV","searchTerms":["Television"],"roundPath":"./test/outputs/test-figma/icons/hard_ware/tv_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/tv_sharp.svg","category":"hard_ware","roundId":"176:5987","sharpId":"176:5990","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:5993":{"name":"Watch","searchTerms":["Smartwatch"],"roundPath":"./test/outputs/test-figma/icons/hard_ware/watch_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/watch_sharp.svg","category":"hard_ware","roundId":"176:5994","sharpId":"176:5997","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:6003":{"name":"Finished Download","searchTerms":["Complete","Success","Done"],"roundPath":"./test/outputs/test-figma/icons/file/finished_download_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/finished_download_sharp.svg","category":"file","roundId":"176:6004","sharpId":"176:6007","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:6010":{"name":"Downloading","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/file/downloading_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/downloading_sharp.svg","category":"file","roundId":"176:6011","sharpId":"176:6014","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:6017":{"name":"Cloud","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/file/cloud_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/cloud_sharp.svg","category":"file","roundId":"176:6018","sharpId":"176:6021","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:6024":{"name":"Cloud Done","searchTerms":["Check","Check Mark","Mark"],"roundPath":"./test/outputs/test-figma/icons/file/cloud_done_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/cloud_done_sharp.svg","category":"file","roundId":"176:6025","sharpId":"176:6028","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:6031":{"name":"Cloud Download","searchTerms":["file","download","cloud","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/file/cloud_download_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/cloud_download_sharp.svg","category":"file","roundId":"176:6032","sharpId":"176:6035","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:6038":{"name":"Cloud Outline","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/file/cloud_outline_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/cloud_outline_sharp.svg","category":"file","roundId":"176:6039","sharpId":"176:6042","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:6045":{"name":"Cloud Upload","searchTerms":["file","upload","cloud","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/file/cloud_upload_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/cloud_upload_sharp.svg","category":"file","roundId":"176:6046","sharpId":"176:6049","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:6052":{"name":"Cloud Off","searchTerms":["Offline"],"roundPath":"./test/outputs/test-figma/icons/file/cloud_off_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/cloud_off_sharp.svg","category":"file","roundId":"176:6053","sharpId":"176:6056","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:6059":{"name":"Folder","searchTerms":["folder","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/file/folder_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/folder_sharp.svg","category":"file","roundId":"176:6060","sharpId":"176:6063","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:6066":{"name":"Create New Folder","searchTerms":["Add"],"roundPath":"./test/outputs/test-figma/icons/file/create_new_folder_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/create_new_folder_sharp.svg","category":"file","roundId":"176:6067","sharpId":"176:6070","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:6073":{"name":"Folder Outline","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/file/folder_outline_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/folder_outline_sharp.svg","category":"file","roundId":"176:6074","sharpId":"176:6077","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:6080":{"name":"Shared Folder","searchTerms":["Network","Access"],"roundPath":"./test/outputs/test-figma/icons/file/shared_folder_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/shared_folder_sharp.svg","category":"file","roundId":"176:6081","sharpId":"176:6084","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:6087":{"name":"Grid View","searchTerms":["2x2"],"roundPath":"./test/outputs/test-figma/icons/file/grid_view_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/grid_view_sharp.svg","category":"file","roundId":"176:6088","sharpId":"176:6095","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:6102":{"name":"Upload File","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/file/upload_file_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/upload_file_sharp.svg","category":"file","roundId":"176:6103","sharpId":"176:6106","roundData":"\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n\n\n\n\n"},"176:6109":{"name":"JPG Attach","searchTerms":["Type","File"],"roundPath":"./test/outputs/test-figma/icons/file/jpg_attach_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/jpg_attach_sharp.svg","category":"file","roundId":"176:6110","sharpId":"176:6114","roundData":"\n\n\n\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n"},"176:6119":{"name":"PDF Attach","searchTerms":["Type","File"],"roundPath":"./test/outputs/test-figma/icons/file/pdf_attach_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/pdf_attach_sharp.svg","category":"file","roundId":"176:6120","sharpId":"176:6124","roundData":"\n\n\n\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n"},"176:6129":{"name":"PNG Attach","searchTerms":["Type","File"],"roundPath":"./test/outputs/test-figma/icons/file/png_attach_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/png_attach_sharp.svg","category":"file","roundId":"176:6130","sharpId":"176:6134","roundData":"\n\n\n\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n"},"176:6139":{"name":"DOC Attach","searchTerms":["Type","File"],"roundPath":"./test/outputs/test-figma/icons/file/doc_attach_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/doc_attach_sharp.svg","category":"file","roundId":"176:6140","sharpId":"176:6144","roundData":"\n\n\n\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n"},"176:6149":{"name":"PPT Attach","searchTerms":["Type","File"],"roundPath":"./test/outputs/test-figma/icons/file/ppt_attach_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/ppt_attach_sharp.svg","category":"file","roundId":"176:6150","sharpId":"176:6154","roundData":"\n\n\n\n\n\n\n\n\n\n\n\n\n","sharpData":"\n\n\n\n\n\n"},"176:6159":{"name":"Open New Off","searchTerms":["Workcloud","WC","file","do not export","export","open in new","open","launch"],"roundPath":"./test/outputs/test-figma/icons/file/open_new_off_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/open_new_off_sharp.svg","category":"file","roundId":"176:6160","sharpId":"176:6162","roundData":"\n\n\n","sharpData":"\n\n\n"},"176:6164":{"name":"Page Height","searchTerms":["Workcloud","WC","page height"],"roundPath":"./test/outputs/test-figma/icons/file/page_height_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/page_height_sharp.svg","category":"file","roundId":"176:6165","sharpId":"176:6167","roundData":"\n\n\n\n\n","sharpData":"\n\n\n\n\n"},"176:6169":{"name":"Page Width","searchTerms":["Workcloud","WC","page height"],"roundPath":"./test/outputs/test-figma/icons/file/page_width_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/page_width_sharp.svg","category":"file","roundId":"176:6170","sharpId":"176:6172","roundData":"\n\n\n\n\n","sharpData":"\n\n\n\n\n"},"176:6174":{"name":"Page Rotate","searchTerms":["Workcloud","WC","page rotate"],"roundPath":"./test/outputs/test-figma/icons/file/page_rotate_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/page_rotate_sharp.svg","category":"file","roundId":"176:6175","sharpId":"176:6177","roundData":"\n\n\n","sharpData":"\n\n\n"},"176:6179":{"name":"Save File","searchTerms":["Workcloud","WC","file","save"],"roundPath":"./test/outputs/test-figma/icons/file/save_file_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/save_file_sharp.svg","category":"file","roundId":"176:6180","sharpId":"176:6182","roundData":"\n\n\n","sharpData":"\n\n\n"},"176:6184":{"name":"Publish","searchTerms":["Workcloud","WC","file","publish"],"roundPath":"./test/outputs/test-figma/icons/file/publish_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/publish_sharp.svg","category":"file","roundId":"176:6185","sharpId":"176:6187","roundData":"\n\n\n","sharpData":"\n\n\n"},"176:6189":{"name":"File","searchTerms":["Workcloud","WC","file","note","paper"],"roundPath":"./test/outputs/test-figma/icons/file/file_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/file_sharp.svg","category":"file","roundId":"176:6190","sharpId":"176:6192","roundData":"\n\n\n","sharpData":"\n\n\n"},"176:6194":{"name":"Folder File","searchTerms":["Workcloud","WC","project","folder","file"],"roundPath":"./test/outputs/test-figma/icons/file/folder_file_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/folder_file_sharp.svg","category":"file","roundId":"176:6195","sharpId":"176:6197","roundData":"\n\n\n","sharpData":"\n\n\n"},"176:6199":{"name":"Maintenance","searchTerms":["Workcloud","WC","maintenance","repair","hammer","wrench","tools"],"roundPath":"./test/outputs/test-figma/icons/file/maintenance_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/maintenance_sharp.svg","category":"file","roundId":"176:6200","sharpId":"176:6202","roundData":"\n\n\n\n","sharpData":"\n\n\n\n"}} \ No newline at end of file diff --git a/test/data/categoryNodes.json b/test/data/categoryNodes.json index 90a3b683..c460361c 100644 --- a/test/data/categoryNodes.json +++ b/test/data/categoryNodes.json @@ -1,14746 +1 @@ -[ - { - "id": "176:5659", - "name": "Content", - "type": "FRAME", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5662", - "name": "Add", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5663", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5664", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -137, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5665", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -132, "y": -210, "width": 14, "height": 14 }, - "absoluteRenderBounds": { "x": -132, "y": -210, "width": 14, "height": 14 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -137, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -137, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5666", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5667", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -97, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5668", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -92, "y": -210, "width": 14, "height": 14 }, - "absoluteRenderBounds": { "x": -92, "y": -210, "width": 14, "height": 14 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -97, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -97, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -161, "y": -239, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -161, "y": -239, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5669", - "name": "Sort", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5670", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5671", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1143, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5672", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1144.5, "y": -212, "width": 20.68938636779785, "height": 18 }, - "absoluteRenderBounds": { "x": 1144.5, "y": -212, "width": 20.6893310546875, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null, "2": null, "3": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 1143, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1143, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5673", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5674", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1183, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5675", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1184.5, "y": -212, "width": 20.68938636779785, "height": 18 }, - "absoluteRenderBounds": { "x": 1184.5, "y": -212, "width": 20.6893310546875, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null, "2": null, "3": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 1183, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1183, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1119, "y": -239, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 1119, "y": -239, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5676", - "name": "Content", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5677", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "rotation": -1.224648970167536e-16, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5678", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 663, - "y": 24.999999999999996, - "width": 24, - "height": 24.000000000000004 - }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5679", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "rotation": 1.224648970167536e-16, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 665, "y": 26, "width": 19, "height": 22 }, - "absoluteRenderBounds": { "x": 665, "y": 26, "width": 19, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { - "x": 663, - "y": 24.999999999999996, - "width": 24, - "height": 24.000000000000004 - }, - "absoluteRenderBounds": { - "x": 663, - "y": 24.999999999999996, - "width": 24, - "height": 24.000000000000004 - }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5680", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5681", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 703, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5682", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 705, "y": 26, "width": 19, "height": 22 }, - "absoluteRenderBounds": { "x": 705, "y": 26, "width": 19, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 703, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 703, "y": 25, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 639, "y": 1, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 639, "y": 1, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5683", - "name": "Copy File", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5684", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5685", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 343, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5686", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 345, "y": 26, "width": 19, "height": 22 }, - "absoluteRenderBounds": { "x": 345, "y": 26, "width": 19, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 343, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 343, "y": 25, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5687", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5688", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 383, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5689", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 385, "y": 26, "width": 19, "height": 22 }, - "absoluteRenderBounds": { "x": 385, "y": 26, "width": 19, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 383, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 383, "y": 25, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 319, "y": 1, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 319, "y": 1, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5690", - "name": "Remove Circle Outline", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5691", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5692", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 343, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5693", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 345, "y": -213, "width": 20, "height": 20 }, - "absoluteRenderBounds": { "x": 345, "y": -213, "width": 20, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 343, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 343, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5694", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5695", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 383, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5696", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 385, "y": -213, "width": 20, "height": 20 }, - "absoluteRenderBounds": { "x": 385, "y": -213, "width": 20, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 383, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 383, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 319, "y": -239, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 319, "y": -239, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5697", - "name": "Add Circle Outline", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5698", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5699", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 183, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5700", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 185, "y": -213, "width": 20, "height": 20 }, - "absoluteRenderBounds": { "x": 185, "y": -213, "width": 20, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 183, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 183, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5701", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5702", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 223, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5703", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 225, "y": -213, "width": 20, "height": 20 }, - "absoluteRenderBounds": { "x": 225, "y": -213, "width": 20, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 223, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 223, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 159, "y": -239, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 159, "y": -239, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5704", - "name": "Remove Circle", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5705", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5706", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 663, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5707", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 665, "y": -213, "width": 20, "height": 20 }, - "absoluteRenderBounds": { "x": 665, "y": -213, "width": 20, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 663, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 663, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5708", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5709", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 703, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5710", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 705, "y": -213, "width": 20, "height": 20 }, - "absoluteRenderBounds": { "x": 705, "y": -213, "width": 20, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 703, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 703, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 639, "y": -239, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 639, "y": -239, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5711", - "name": "Block", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5712", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5713", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 183, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5714", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 185, "y": 27, "width": 20, "height": 20 }, - "absoluteRenderBounds": { "x": 185, "y": 27, "width": 20, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 183, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 183, "y": 25, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5715", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5716", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 223, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5717", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 225, "y": 27, "width": 20, "height": 20 }, - "absoluteRenderBounds": { "x": 225, "y": 27, "width": 20, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 223, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 223, "y": 25, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 159, "y": 1, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 159, "y": 1, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5718", - "name": "Add Circle", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5719", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5720", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 503, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5721", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 505, "y": -213, "width": 20, "height": 20 }, - "absoluteRenderBounds": { "x": 505, "y": -213, "width": 20, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 503, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 503, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5722", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5723", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 543, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5724", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 545, "y": -213, "width": 20, "height": 20 }, - "absoluteRenderBounds": { "x": 545, "y": -213, "width": 20, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 543, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 543, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 479, "y": -239, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 479, "y": -239, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5725", - "name": "Remove", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5726", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5727", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 23, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5728", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 28, "y": -204, "width": 14, "height": 2 }, - "absoluteRenderBounds": { "x": 28, "y": -204, "width": 14, "height": 2 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 23, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 23, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5729", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5730", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 63, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5731", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 68, "y": -204, "width": 14, "height": 2 }, - "absoluteRenderBounds": { "x": 68, "y": -204, "width": 14, "height": 2 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 63, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 63, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1, "y": -239, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1, "y": -239, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5732", - "name": "Android", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5733", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5734", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 503, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5735", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 506, "y": 26, "width": 18.603267669677734, "height": 22 }, - "absoluteRenderBounds": { "x": 506, "y": 26, "width": 18.603271484375, "height": 22 }, - "preserveRatio": true, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 503, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 503, "y": 25, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5736", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5737", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 543, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5738", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 546, "y": 26, "width": 18.603267669677734, "height": 22 }, - "absoluteRenderBounds": { "x": 546, "y": 26, "width": 18.603271484375, "height": 22 }, - "preserveRatio": true, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 543, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 543, "y": 25, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 479, "y": 1, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 479, "y": 1, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5739", - "name": "Add Box", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5740", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5741", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 823, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5742", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 826, "y": -212, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 826, "y": -212, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 823, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 823, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5743", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5744", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 863, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5745", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 866, "y": -212, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 866, "y": -212, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 863, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 863, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 799, "y": -239, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 799, "y": -239, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5746", - "name": "Remove Box", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5747", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5748", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 983, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5749", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 986, "y": -212, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 986, "y": -212, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 983, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 983, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5750", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5751", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1023, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5752", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1026, "y": -212, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 1026, "y": -212, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1023, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1023, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 959, "y": -239, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 959, "y": -239, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5753", - "name": "Push Pin", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5754", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5755", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 23, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5756", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 28, "y": -93, "width": 14, "height": 20 }, - "absoluteRenderBounds": { "x": 28, "y": -93, "width": 14, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 23, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 23, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5757", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5758", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 63, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5759", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 68, "y": -93, "width": 14, "height": 20 }, - "absoluteRenderBounds": { "x": 68, "y": -93, "width": 14, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 63, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 63, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1, "y": -119, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1, "y": -119, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5760", - "name": "Send", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5761", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5762", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 183, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5763", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 185, - "y": -91.48487854003906, - "width": 19.457500457763672, - "height": 16.96976089477539 - }, - "absoluteRenderBounds": { - "x": 185, - "y": -91.48487854003906, - "width": 19.457504272460938, - "height": 16.969757080078125 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 183, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 183, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5764", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5765", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 223, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5766", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 225, "y": -92, "width": 21, "height": 18 }, - "absoluteRenderBounds": { "x": 225, "y": -92, "width": 21, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 223, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 223, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 159, "y": -119, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 159, "y": -119, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5767", - "name": "Backspace", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5768", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5769", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 343, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5770", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 343.2049865722656, - "y": -92, - "width": 23.795000076293945, - "height": 18 - }, - "absoluteRenderBounds": { - "x": 343.2049865722656, - "y": -92, - "width": 23.795013427734375, - "height": 18 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 343, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 343, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5771", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5772", - "name": "Backspace", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 383, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5773", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 383, "y": -92, "width": 24, "height": 18 }, - "absoluteRenderBounds": { "x": 383, "y": -92, "width": 24, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 383, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 383, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 319, "y": -119, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 319, "y": -119, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5774", - "name": "Flag", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5775", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5776", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 503, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5777", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 508, "y": -91, "width": 15, "height": 17 }, - "absoluteRenderBounds": { "x": 508, "y": -91, "width": 15, "height": 17 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 503, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 503, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5778", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5779", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 543, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5780", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 548, "y": -91, "width": 15, "height": 17 }, - "absoluteRenderBounds": { "x": 548, "y": -91, "width": 15, "height": 17 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 543, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 543, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 479, "y": -119, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 479, "y": -119, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5781", - "name": "Save", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5782", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5783", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 663, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5784", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 666, "y": -92, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 666, "y": -92, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 663, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 663, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5785", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5786", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 703, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5787", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 706, "y": -92, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 706, "y": -92, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 703, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 703, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 639, "y": -119, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 639, "y": -119, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5788", - "name": "Reply", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5789", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5790", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 983, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5791", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 986.407470703125, - "y": -88.59400939941406, - "width": 17.592500686645508, - "height": 13.594012260437012 - }, - "absoluteRenderBounds": { - "x": 986.407470703125, - "y": -88.59400939941406, - "width": 17.592529296875, - "height": 13.594009399414062 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 983, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 983, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5792", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5793", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1023, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5794", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1026, "y": -90, "width": 18, "height": 15 }, - "absoluteRenderBounds": { "x": 1026, "y": -90, "width": 18, "height": 15 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1023, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1023, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 959, "y": -119, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 959, "y": -119, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5795", - "name": "Redo", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5796", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5797", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1143, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5798", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 1144.9423828125, - "y": -87, - "width": 20.05765724182129, - "height": 8 - }, - "absoluteRenderBounds": { "x": 1144.9423828125, "y": -87, "width": 20.0576171875, "height": 8 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1143, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1143, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5799", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5800", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1183, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5801", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 1184.5400390625, - "y": -88, - "width": 20.459999084472656, - "height": 9 - }, - "absoluteRenderBounds": { "x": 1184.5400390625, "y": -88, "width": 20.4599609375, "height": 9 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1183, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1183, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1119, "y": -119, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 1119, "y": -119, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5802", - "name": "Save Alt", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5803", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5804", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 823, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5805", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 826, "y": -92, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 826, "y": -92, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 823, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 823, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5806", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5807", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 863, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5808", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 866, "y": -92, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 866, "y": -92, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 863, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 863, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 799, "y": -119, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 799, "y": -119, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5809", - "name": "Undo", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5810", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5811", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1303, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5812", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1305, "y": -87, "width": 20.067657470703125, "height": 8 }, - "absoluteRenderBounds": { "x": 1305, "y": -87, "width": 20.067626953125, "height": 8 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1303, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1303, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5813", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5814", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1343, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5815", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1345, "y": -88, "width": 20.469999313354492, "height": 9 }, - "absoluteRenderBounds": { "x": 1345, "y": -88, "width": 20.469970703125, "height": 9 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1343, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1343, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1279, "y": -119, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 1279, "y": -119, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5816", - "name": "Chart Pie", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5817", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5818", - "name": "Rectangle 1756", - "type": "RECTANGLE", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 860, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5819", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 862, "y": 27, "width": 20, "height": 20 }, - "absoluteRenderBounds": { - "x": 862, - "y": 27.028961181640625, - "width": 19.970947265625, - "height": 19.94207763671875 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 860, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 860, "y": 25, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5820", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5821", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 826, "y": 27, "width": 20, "height": 20 }, - "absoluteRenderBounds": { - "x": 826, - "y": 27.028961181640625, - "width": 19.970947265625, - "height": 19.94207763671875 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 824, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 824, "y": 25, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 799, "y": 1, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 799, "y": 1, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.5921568870544434, "g": 0.27843138575553894, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "strokeDashes": [10, 5], - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5822", - "name": "Email", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5823", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5824", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -137, "y": 137, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5825", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -135, "y": 141, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": -135, "y": 141, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -137, "y": 137, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -137, "y": 137, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5826", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5827", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -97, "y": 137, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5828", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -95, "y": 141, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": -95, "y": 141, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -97, "y": 137, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -97, "y": 137, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -161, "y": 113, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -161, "y": 113, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5829", - "name": "Email Outline", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5830", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5831", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 23, "y": 137, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5832", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 25, "y": 141, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": 25, "y": 141, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 23, "y": 137, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 23, "y": 137, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5833", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5834", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 63, "y": 137, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5835", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 65, "y": 141, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": 65, "y": 141, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 63, "y": 137, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 63, "y": 137, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1, "y": 113, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1, "y": 113, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -257, "y": -432, "width": 1744, "height": 1280 }, - "absoluteRenderBounds": { "x": -257, "y": -432, "width": 1744, "height": 1280 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "clipsContent": true, - "background": [{ "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 1, "g": 1, "b": 1, "a": 1 } }], - "fills": [{ "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 1, "g": 1, "b": 1, "a": 1 } }], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 1, "g": 1, "b": 1, "a": 1 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5836", - "name": "Hardware", - "type": "FRAME", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5837", - "name": "Hardware", - "type": "TEXT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2105, "y": -352, "width": 109, "height": 32 }, - "absoluteRenderBounds": { - "x": -2102.93603515625, - "y": -344.760009765625, - "width": 104.982421875, - "height": 18.048004150390625 - }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.11372549086809158, "g": 0.11764705926179886, "b": 0.13725490868091583, "a": 1 } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "OUTSIDE", - "styles": { "fill": "1:2", "text": "1:3" }, - "exportSettings": [], - "effects": [], - "characters": "Hardware", - "style": { - "fontFamily": "IBM Plex Sans", - "fontPostScriptName": "IBMPlexSans-Medium", - "fontWeight": 500, - "textAutoResize": "WIDTH_AND_HEIGHT", - "fontSize": 24, - "textAlignHorizontal": "LEFT", - "textAlignVertical": "TOP", - "letterSpacing": 0, - "lineHeightPx": 32, - "lineHeightPercent": 102.5641098022461, - "lineHeightPercentFontSize": 133.3333282470703, - "lineHeightUnit": "PIXELS" - }, - "layoutVersion": 3, - "characterStyleOverrides": [], - "styleOverrideTable": {}, - "lineTypes": ["NONE"], - "lineIndentations": [0] - }, - { - "id": "176:5838", - "name": "Line", - "type": "RECTANGLE", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2105, "y": -304, "width": 1552, "height": 1 }, - "absoluteRenderBounds": { "x": -2105, "y": -304, "width": 1552, "height": 1 }, - "constraints": { "vertical": "TOP", "horizontal": "CENTER" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.8784313797950745, "g": 0.8901960849761963, "b": 0.9137254953384399, "a": 1 } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:4" }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5839", - "name": "Scanner", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5840", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5841", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1121, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5842", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1119, "y": -92, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": -1119, "y": -92, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1121, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1121, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5843", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5844", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1081, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5845", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1079, "y": -92, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": -1079, "y": -92, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1081, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1081, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1145, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1145, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5846", - "name": "Printer", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5847", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5848", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -961, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5849", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -959, "y": -93, "width": 20, "height": 18 }, - "absoluteRenderBounds": { "x": -959, "y": -93, "width": 20, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -961, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -961, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5850", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5851", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -921, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5852", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -919, "y": -93, "width": 20, "height": 18 }, - "absoluteRenderBounds": { "x": -919, "y": -93, "width": 20, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -921, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -921, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -985, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -985, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5853", - "name": "Cast", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5854", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5855", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2081, "y": 24, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5856", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2080, "y": 27, "width": 22, "height": 18 }, - "absoluteRenderBounds": { "x": -2080, "y": 27, "width": 22, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -2081, "y": 24, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -2081, "y": 24, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5857", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5858", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2041, "y": 24, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5859", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2040, "y": 27, "width": 22, "height": 18 }, - "absoluteRenderBounds": { "x": -2040, "y": 27, "width": 22, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -2041, "y": 24, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -2041, "y": 24, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -2105, "y": 0, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -2105, "y": 0, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5860", - "name": "Cast Connected", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5861", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5862", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1921, "y": 24, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5863", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1920, "y": 27, "width": 22, "height": 18 }, - "absoluteRenderBounds": { "x": -1920, "y": 27, "width": 22, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1921, "y": 24, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1921, "y": 24, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5864", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5865", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1881, "y": 24, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5866", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1880, "y": 27, "width": 22, "height": 18 }, - "absoluteRenderBounds": { "x": -1880, "y": 27, "width": 22, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1881, "y": 24, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1881, "y": 24, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [ - { - "blendMode": "NORMAL", - "visible": false, - "type": "SOLID", - "color": { "r": 1, "g": 1, "b": 1, "a": 1 } - } - ], - "fills": [ - { - "blendMode": "NORMAL", - "visible": false, - "type": "SOLID", - "color": { "r": 1, "g": 1, "b": 1, "a": 1 } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1945, "y": 0, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1945, "y": 0, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5867", - "name": "Desktop", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5868", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5869", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -638, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5870", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -637, "y": -214, "width": 22, "height": 20 }, - "absoluteRenderBounds": { "x": -637, "y": -214, "width": 22, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -638, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -638, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5871", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5872", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -598, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5873", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -597, "y": -214, "width": 22, "height": 20 }, - "absoluteRenderBounds": { "x": -597, "y": -214, "width": 22, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -598, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -598, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -662, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -662, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5874", - "name": "Devices Ecosystem", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5875", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5876", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2081, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5877", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2080, "y": -92, "width": 22, "height": 16 }, - "absoluteRenderBounds": { "x": -2080, "y": -92, "width": 22, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -2081, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -2081, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5878", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5879", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2041, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5880", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2040, "y": -92, "width": 22, "height": 16 }, - "absoluteRenderBounds": { "x": -2040, "y": -92, "width": 22, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -2041, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -2041, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -2105, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -2105, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5881", - "name": "Device Settings", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5882", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5883", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1921, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5884", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": -1917.81494140625, - "y": -95, - "width": 17.81491470336914, - "height": 22 - }, - "absoluteRenderBounds": { - "x": -1917.81494140625, - "y": -95, - "width": 17.81494140625, - "height": 22 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1921, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1921, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5885", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5886", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1881, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5887", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": -1877.97021484375, - "y": -95, - "width": 17.969999313354492, - "height": 22 - }, - "absoluteRenderBounds": { - "x": -1877.97021484375, - "y": -95, - "width": 17.969970703125, - "height": 22 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1881, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1881, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1945, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1945, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5888", - "name": "Headphones", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5889", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5890", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1761, "y": 24, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5891", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1758, "y": 27, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": -1758, "y": 27, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1761, "y": 24, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1761, "y": 24, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5892", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5893", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1721, "y": 24, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5894", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1718, "y": 27, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": -1718, "y": 27, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1721, "y": 24, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1721, "y": 24, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1785, "y": 0, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1785, "y": 0, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5895", - "name": "Keyboard", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5896", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5897", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1601, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5898", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1599, "y": -91, "width": 20, "height": 14 }, - "absoluteRenderBounds": { "x": -1599, "y": -91, "width": 20, "height": 14 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1601, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1601, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5899", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5900", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1561, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5901", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1559, "y": -91, "width": 20, "height": 14 }, - "absoluteRenderBounds": { "x": -1559, "y": -91, "width": 20, "height": 14 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1561, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1561, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1625, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1625, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5902", - "name": "Laptop", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5903", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5904", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1601, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5905", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1601, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": -1601, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1601, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1601, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5906", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5907", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1561, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5908", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1561, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": -1561, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1561, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1561, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1625, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1625, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5909", - "name": "Memory", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5910", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5911", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1761, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5912", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1758, "y": -93, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": -1758, "y": -93, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1761, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1761, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5913", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5914", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1721, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5915", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1718, "y": -93, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": -1718, "y": -93, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1721, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1721, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1785, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1785, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5916", - "name": "Monitor", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5917", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5918", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -801, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5919", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -799, "y": -213, "width": 19.990081787109375, "height": 18 }, - "absoluteRenderBounds": { "x": -799, "y": -213, "width": 19.9901123046875, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -801, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -801, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5920", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5921", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -761, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5922", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -759, "y": -213, "width": 20, "height": 18 }, - "absoluteRenderBounds": { "x": -759, "y": -213, "width": 20, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -761, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -761, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -825, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -825, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5923", - "name": "Phone Android", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5924", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5925", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2081, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5926", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2076, "y": -215, "width": 14, "height": 22 }, - "absoluteRenderBounds": { "x": -2076, "y": -215, "width": 14, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -2081, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -2081, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5927", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5928", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2041, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5929", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2036, "y": -215, "width": 14, "height": 22 }, - "absoluteRenderBounds": { "x": -2036, "y": -215, "width": 14, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -2041, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -2041, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -2105, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -2105, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5930", - "name": "Phone iPhone", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5931", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5932", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1921, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5933", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1916, "y": -215, "width": 13, "height": 22 }, - "absoluteRenderBounds": { "x": -1916, "y": -215, "width": 13, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1921, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1921, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5934", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5935", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1881, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5936", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1876, "y": -215, "width": 13, "height": 22 }, - "absoluteRenderBounds": { "x": -1876, "y": -215, "width": 13, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1881, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1881, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1945, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1945, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5937", - "name": "Phonelink", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5938", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5939", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1441, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5940", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1441, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": -1441, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1441, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1441, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5941", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5942", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1401, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5943", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1401, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": -1401, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1401, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1401, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1465, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1465, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5944", - "name": "Security", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5945", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5946", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -641, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5947", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -638, "y": -94.8125, "width": 18, "height": 21.8125 }, - "absoluteRenderBounds": { "x": -638, "y": -94.8125, "width": 18, "height": 21.8125 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -641, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -641, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5948", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5949", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -601, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5950", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -598, "y": -95, "width": 18, "height": 22 }, - "absoluteRenderBounds": { "x": -598, "y": -95, "width": 18, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -601, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -601, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -665, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -665, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5951", - "name": "Video Play", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5952", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5953", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -801, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5954", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -799, "y": -92, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": -799, "y": -92, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -801, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -801, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5955", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5956", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -761, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5957", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -759, "y": -92, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": -759, "y": -92, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -761, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -761, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -825, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -825, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5958", - "name": "Smart Phone", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5959", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5960", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1761, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5961", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1756, "y": -215, "width": 14, "height": 22 }, - "absoluteRenderBounds": { "x": -1756, "y": -215, "width": 14, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1761, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1761, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5962", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5963", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1721, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5964", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1716, "y": -215, "width": 14, "height": 22 }, - "absoluteRenderBounds": { "x": -1716, "y": -215, "width": 14, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1721, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1721, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1785, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1785, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5965", - "name": "Speaker", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5966", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5967", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1281, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5968", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1276, "y": -94, "width": 14, "height": 20 }, - "absoluteRenderBounds": { "x": -1276, "y": -94, "width": 14, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1281, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1281, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5969", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5970", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1241, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5971", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1236, "y": -94, "width": 14, "height": 19.989999771118164 }, - "absoluteRenderBounds": { "x": -1236, "y": -94, "width": 14, "height": 19.98999786376953 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1241, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1241, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1305, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1305, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5972", - "name": "Tablet", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5973", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5974", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1281, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5975", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1280, "y": -212, "width": 22, "height": 16 }, - "absoluteRenderBounds": { "x": -1280, "y": -212, "width": 22, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1281, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1281, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5976", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5977", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1241, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5978", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1240, "y": -212, "width": 22, "height": 16 }, - "absoluteRenderBounds": { "x": -1240, "y": -212, "width": 22, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1241, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1241, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1305, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1305, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5979", - "name": "Tablet Mac", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5980", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5981", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1121, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5982", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1119, "y": -216, "width": 19, "height": 24 }, - "absoluteRenderBounds": { "x": -1119, "y": -216, "width": 19, "height": 24 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1121, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1121, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5983", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5984", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1081, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5985", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1079, "y": -216, "width": 19, "height": 24 }, - "absoluteRenderBounds": { "x": -1079, "y": -216, "width": 19, "height": 24 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1081, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1081, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1145, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1145, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5986", - "name": "TV", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5987", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5988", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -961, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5989", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -960, "y": -213, "width": 22, "height": 18 }, - "absoluteRenderBounds": { "x": -960, "y": -213, "width": 22, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -961, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -961, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5990", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5991", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -921, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5992", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -920, "y": -213, "width": 22, "height": 18 }, - "absoluteRenderBounds": { "x": -920, "y": -213, "width": 22, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -921, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -921, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -985, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -985, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5993", - "name": "Watch", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5994", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5995", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1441, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5996", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1437, "y": -96, "width": 16, "height": 24 }, - "absoluteRenderBounds": { "x": -1437, "y": -96, "width": 16, "height": 24 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1441, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1441, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5997", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5998", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1401, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5999", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1397, "y": -96, "width": 16, "height": 24 }, - "absoluteRenderBounds": { "x": -1397, "y": -96, "width": 16, "height": 24 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1401, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1401, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1465, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1465, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -2201, "y": -432, "width": 1744, "height": 1280 }, - "absoluteRenderBounds": { "x": -2201, "y": -432, "width": 1744, "height": 1280 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "clipsContent": true, - "background": [{ "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 1, "g": 1, "b": 1, "a": 1 } }], - "fills": [{ "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 1, "g": 1, "b": 1, "a": 1 } }], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 1, "g": 1, "b": 1, "a": 1 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6000", - "name": "File", - "type": "FRAME", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6001", - "name": "File", - "type": "TEXT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1840, "y": -352, "width": 41, "height": 32 }, - "absoluteRenderBounds": { - "x": 1842.06396484375, - "y": -344.8559875488281, - "width": 37.130859375, - "height": 18.14398193359375 - }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.11372549086809158, "g": 0.11764705926179886, "b": 0.13725490868091583, "a": 1 } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "OUTSIDE", - "styles": { "fill": "1:2", "text": "1:3" }, - "exportSettings": [], - "effects": [], - "characters": "File", - "style": { - "fontFamily": "IBM Plex Sans", - "fontPostScriptName": "IBMPlexSans-Medium", - "fontWeight": 500, - "textAutoResize": "WIDTH_AND_HEIGHT", - "fontSize": 24, - "textAlignHorizontal": "LEFT", - "textAlignVertical": "TOP", - "letterSpacing": 0, - "lineHeightPx": 32, - "lineHeightPercent": 102.5641098022461, - "lineHeightPercentFontSize": 133.3333282470703, - "lineHeightUnit": "PIXELS" - }, - "layoutVersion": 3, - "characterStyleOverrides": [], - "styleOverrideTable": {}, - "lineTypes": ["NONE"], - "lineIndentations": [0] - }, - { - "id": "176:6002", - "name": "Line", - "type": "RECTANGLE", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1840, "y": -304, "width": 1552, "height": 1 }, - "absoluteRenderBounds": { "x": 1840, "y": -304, "width": 1552, "height": 1 }, - "constraints": { "vertical": "TOP", "horizontal": "CENTER" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.8784313797950745, "g": 0.8901960849761963, "b": 0.9137254953384399, "a": 1 } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:4" }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6003", - "name": "Finished Download", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6004", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6005", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1859, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6006", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 1864, - "y": -211.43499755859375, - "width": 14, - "height": 15.4350004196167 - }, - "absoluteRenderBounds": { - "x": 1864, - "y": -211.43499755859375, - "width": 14, - "height": 15.43499755859375 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1859, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1859, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6007", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6008", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1899, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6009", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1904, "y": -212, "width": 14, "height": 16 }, - "absoluteRenderBounds": { "x": 1904, "y": -212, "width": 14, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1899, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1899, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1835, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 1835, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6010", - "name": "Downloading", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6011", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6012", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2019, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6013", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 2021, - "y": -213.7744140625, - "width": 19.77721405029297, - "height": 19.558454513549805 - }, - "absoluteRenderBounds": { - "x": 2021, - "y": -213.7744140625, - "width": 19.7772216796875, - "height": 19.558456420898438 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2019, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2019, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6014", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6015", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2059, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6016", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 2061, - "y": -213.9499969482422, - "width": 19.950000762939453, - "height": 19.900001525878906 - }, - "absoluteRenderBounds": { - "x": 2061, - "y": -213.9499969482422, - "width": 19.949951171875, - "height": 19.900009155273438 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2059, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2059, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1995, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 1995, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6017", - "name": "Cloud", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6018", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6019", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2179, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6020", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2179, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": 2179, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2179, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2179, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6021", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6022", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2219, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6023", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2219, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": 2219, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2219, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2219, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2155, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 2155, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6024", - "name": "Cloud Done", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6025", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6026", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2499, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6027", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2499, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": 2499, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2499, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2499, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6028", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6029", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2539, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6030", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2539, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": 2539, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2539, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2539, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2475, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 2475, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6031", - "name": "Cloud Download", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6032", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6033", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2659, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6034", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2659, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": 2659, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2659, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2659, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6035", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6036", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2699, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6037", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2699, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": 2699, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2699, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2699, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2635, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 2635, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6038", - "name": "Cloud Outline", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6039", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6040", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2339, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6041", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2339, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": 2339, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2339, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2339, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6042", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6043", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2379, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6044", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2379, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": 2379, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2379, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2379, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2315, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 2315, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6045", - "name": "Cloud Upload", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6046", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6047", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2819, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6048", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2819, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": 2819, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2819, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2819, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6049", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6050", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2859, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6051", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2859, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": 2859, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2859, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2859, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2795, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 2795, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6052", - "name": "Cloud Off", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6053", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6054", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2979, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6055", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 2979.002685546875, - "y": -212, - "width": 23.997297286987305, - "height": 17.582500457763672 - }, - "absoluteRenderBounds": { - "x": 2979.002685546875, - "y": -212, - "width": 23.997314453125, - "height": 17.582504272460938 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2979, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2979, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6056", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6057", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3019, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6058", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 3019, - "y": -212.13999938964844, - "width": 24, - "height": 18.139999389648438 - }, - "absoluteRenderBounds": { - "x": 3019, - "y": -212.13999938964844, - "width": 24, - "height": 18.139999389648438 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3019, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 3019, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2955, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 2955, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6059", - "name": "Folder", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6060", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6061", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1864, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6062", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1866, "y": -92, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": 1866, "y": -92, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1864, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1864, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6063", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6064", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1904, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6065", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1906, "y": -92, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": 1906, "y": -92, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1904, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1904, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1840, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 1840, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6066", - "name": "Create New Folder", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6067", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6068", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2184, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6069", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2186, "y": -92, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": 2186, "y": -92, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2184, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2184, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6070", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6071", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2224, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6072", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2226, "y": -92, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": 2226, "y": -92, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2224, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2224, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2160, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 2160, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6073", - "name": "Folder Outline", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6074", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6075", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2024, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6076", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2026, "y": -92, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": 2026, "y": -92, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2024, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2024, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6077", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6078", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2064, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6079", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2066, "y": -92, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": 2066, "y": -92, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2064, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2064, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2000, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 2000, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6080", - "name": "Shared Folder", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6081", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6082", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2344, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6083", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2346, "y": -92, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": 2346, "y": -92, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2344, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2344, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6084", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6085", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2384, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6086", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2386, "y": -92, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": 2386, "y": -92, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2384, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2384, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2320, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 2320, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6087", - "name": "Grid View", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6088", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6089", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2504, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6090", - "name": "Vector", - "type": "BOOLEAN_OPERATION", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "booleanOperation": "UNION", - "children": [ - { - "id": "176:6091", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2507, "y": -93, "width": 8, "height": 8 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [{ "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 0, "g": 0, "b": 0, "a": 1 } }], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6092", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2507, "y": -83, "width": 8, "height": 8 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [{ "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 0, "g": 0, "b": 0, "a": 1 } }], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6093", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2517, "y": -93, "width": 8, "height": 8 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [{ "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 0, "g": 0, "b": 0, "a": 1 } }], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6094", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2517, "y": -83, "width": 8, "height": 8 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [{ "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 0, "g": 0, "b": 0, "a": 1 } }], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2507, "y": -93, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 2507, "y": -93, "width": 18, "height": 18 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2504, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2504, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6095", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6096", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2544, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6097", - "name": "Vector", - "type": "BOOLEAN_OPERATION", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "booleanOperation": "UNION", - "children": [ - { - "id": "176:6098", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2547, "y": -93, "width": 8, "height": 8 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [{ "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 0, "g": 0, "b": 0, "a": 1 } }], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6099", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2547, "y": -83, "width": 8, "height": 8 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [{ "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 0, "g": 0, "b": 0, "a": 1 } }], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6100", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2557, "y": -93, "width": 8, "height": 8 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [{ "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 0, "g": 0, "b": 0, "a": 1 } }], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6101", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2557, "y": -83, "width": 8, "height": 8 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [{ "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 0, "g": 0, "b": 0, "a": 1 } }], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2547, "y": -93, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 2547, "y": -93, "width": 18, "height": 18 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2544, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2544, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2480, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 2480, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6102", - "name": "Upload File", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6103", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6104", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2664, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6105", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2668, "y": -94, "width": 16, "height": 20 }, - "absoluteRenderBounds": { "x": 2668, "y": -94, "width": 16, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2664, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2664, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6106", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6107", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2704, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6108", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2708, "y": -94, "width": 16, "height": 20 }, - "absoluteRenderBounds": { "x": 2708, "y": -94, "width": 16, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2704, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2704, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2640, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 2640, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6109", - "name": "JPG Attach", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6110", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6111", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2824, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6112", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2825, "y": -95, "width": 22, "height": 22 }, - "absoluteRenderBounds": { "x": 2825, "y": -95, "width": 22, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6113", - "name": "JPG", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 2827.5859375, - "y": -84.0999984741211, - "width": 16.662187576293945, - "height": 7.220000267028809 - }, - "absoluteRenderBounds": { - "x": 2827.5859375, - "y": -84.0999984741211, - "width": 16.662109375, - "height": 7.220001220703125 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "OUTSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2824, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2824, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6114", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6115", - "name": "Subtract", - "type": "BOOLEAN_OPERATION", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "booleanOperation": "SUBTRACT", - "children": [ - { - "id": "176:6116", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2865, "y": -95, "width": 22, "height": 22 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [{ "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 0, "g": 0, "b": 0, "a": 1 } }], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6117", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2867, "y": -93, "width": 18, "height": 18 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2865, "y": -95, "width": 22, "height": 22 }, - "absoluteRenderBounds": { "x": 2865, "y": -95, "width": 22, "height": 22 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6118", - "name": "JPG", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 2867.5859375, - "y": -84.0999984741211, - "width": 16.662187576293945, - "height": 7.220000267028809 - }, - "absoluteRenderBounds": { - "x": 2867.5859375, - "y": -84.0999984741211, - "width": 16.662109375, - "height": 7.220001220703125 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "OUTSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2864, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2864, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2800, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 2800, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6119", - "name": "PDF Attach", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6120", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6121", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3144, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6122", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3145, "y": -95, "width": 22, "height": 22 }, - "absoluteRenderBounds": { "x": 3145, "y": -95, "width": 22, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6123", - "name": "PDF", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 3147.9658203125, - "y": -83.9800033569336, - "width": 16.262189865112305, - "height": 6.980000019073486 - }, - "absoluteRenderBounds": { - "x": 3147.9658203125, - "y": -83.9800033569336, - "width": 16.26220703125, - "height": 6.980003356933594 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "OUTSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3144, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 3144, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6124", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6125", - "name": "Subtract", - "type": "BOOLEAN_OPERATION", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "booleanOperation": "SUBTRACT", - "children": [ - { - "id": "176:6126", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3185, "y": -95, "width": 22, "height": 22 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [{ "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 0, "g": 0, "b": 0, "a": 1 } }], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6127", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3187, "y": -93, "width": 18, "height": 18 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3185, "y": -95, "width": 22, "height": 22 }, - "absoluteRenderBounds": { "x": 3185, "y": -95, "width": 22, "height": 22 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6128", - "name": "PDF", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 3187.9658203125, - "y": -83.9800033569336, - "width": 16.262189865112305, - "height": 6.980000019073486 - }, - "absoluteRenderBounds": { - "x": 3187.9658203125, - "y": -83.9800033569336, - "width": 16.26220703125, - "height": 6.980003356933594 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "OUTSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3184, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 3184, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3120, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 3120, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6129", - "name": "PNG Attach", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6130", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6131", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2984, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6132", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2985, "y": -95, "width": 22, "height": 22 }, - "absoluteRenderBounds": { "x": 2985, "y": -95, "width": 22, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6133", - "name": "PNG", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 2987.9658203125, - "y": -84.0999984741211, - "width": 16.282188415527344, - "height": 7.220000267028809 - }, - "absoluteRenderBounds": { - "x": 2987.9658203125, - "y": -84.0999984741211, - "width": 16.2822265625, - "height": 7.220001220703125 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "OUTSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2984, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2984, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6134", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6135", - "name": "Subtract", - "type": "BOOLEAN_OPERATION", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "booleanOperation": "SUBTRACT", - "children": [ - { - "id": "176:6136", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3025, "y": -95, "width": 22, "height": 22 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [{ "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 0, "g": 0, "b": 0, "a": 1 } }], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6137", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3027, "y": -93, "width": 18, "height": 18 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3025, "y": -95, "width": 22, "height": 22 }, - "absoluteRenderBounds": { "x": 3025, "y": -95, "width": 22, "height": 22 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6138", - "name": "PNG", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 3027.9658203125, - "y": -84.0999984741211, - "width": 16.282188415527344, - "height": 7.220000267028809 - }, - "absoluteRenderBounds": { - "x": 3027.9658203125, - "y": -84.0999984741211, - "width": 16.2822265625, - "height": 7.220001220703125 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "OUTSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3024, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 3024, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2960, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 2960, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6139", - "name": "DOC Attach", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6140", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6141", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3304, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6142", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3305, "y": -95, "width": 22, "height": 22 }, - "absoluteRenderBounds": { "x": 3305, "y": -95, "width": 22, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6143", - "name": "DOC", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 3307.845947265625, - "y": -84.0999984741211, - "width": 16.58218765258789, - "height": 7.220000267028809 - }, - "absoluteRenderBounds": { - "x": 3307.845947265625, - "y": -84.0999984741211, - "width": 16.582275390625, - "height": 7.220001220703125 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "OUTSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3304, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 3304, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6144", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6145", - "name": "Subtract", - "type": "BOOLEAN_OPERATION", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "booleanOperation": "SUBTRACT", - "children": [ - { - "id": "176:6146", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3345, "y": -95, "width": 22, "height": 22 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [{ "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 0, "g": 0, "b": 0, "a": 1 } }], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6147", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3347, "y": -93, "width": 18, "height": 18 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3345, "y": -95, "width": 22, "height": 22 }, - "absoluteRenderBounds": { "x": 3345, "y": -95, "width": 22, "height": 22 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6148", - "name": "DOC", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 3347.845947265625, - "y": -84.0999984741211, - "width": 16.58218765258789, - "height": 7.220000267028809 - }, - "absoluteRenderBounds": { - "x": 3347.845947265625, - "y": -84.0999984741211, - "width": 16.582275390625, - "height": 7.220001220703125 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "OUTSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3344, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 3344, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3280, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 3280, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6149", - "name": "PPT Attach", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6150", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6151", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3304, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6152", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3305, "y": -214, "width": 22, "height": 22 }, - "absoluteRenderBounds": { "x": 3305, "y": -214, "width": 22, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6153", - "name": "PPT", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 3307.9658203125, - "y": -202.97999572753906, - "width": 16.59218978881836, - "height": 6.980000019073486 - }, - "absoluteRenderBounds": { - "x": 3307.9658203125, - "y": -202.97999572753906, - "width": 16.59228515625, - "height": 6.9799957275390625 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "OUTSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3304, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 3304, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6154", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6155", - "name": "Subtract", - "type": "BOOLEAN_OPERATION", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "booleanOperation": "SUBTRACT", - "children": [ - { - "id": "176:6156", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3345, "y": -214, "width": 22, "height": 22 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [{ "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 0, "g": 0, "b": 0, "a": 1 } }], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6157", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3347, "y": -212, "width": 18, "height": 18 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3345, "y": -214, "width": 22, "height": 22 }, - "absoluteRenderBounds": { "x": 3345, "y": -214, "width": 22, "height": 22 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6158", - "name": "PPT", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 3347.9658203125, - "y": -202.97999572753906, - "width": 16.59218978881836, - "height": 6.980000019073486 - }, - "absoluteRenderBounds": { - "x": 3347.9658203125, - "y": -202.97999572753906, - "width": 16.59228515625, - "height": 6.9799957275390625 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "OUTSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3344, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 3344, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3280, "y": -239, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 3280, "y": -239, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6159", - "name": "Open New Off", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6160", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6161", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 1861.389892578125, - "y": 142.81005859375, - "width": 19.790000915527344, - "height": 19.80000114440918 - }, - "absoluteRenderBounds": { - "x": 1861.8028564453125, - "y": 143.00006103515625, - "width": 19.197021484375, - "height": 19.192001342773438 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null, "2": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 1860, "y": 140, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1860, "y": 140, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6162", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6163", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 1905.389892578125, - "y": 142.81005859375, - "width": 19.790000915527344, - "height": 19.80000114440918 - }, - "absoluteRenderBounds": { - "x": 1905.8028564453125, - "y": 143.00006103515625, - "width": 19.197021484375, - "height": 19.192001342773438 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null, "2": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 1904, "y": 140, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1904, "y": 140, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1840, "y": 120, "width": 108, "height": 64 }, - "absoluteRenderBounds": { "x": 1840, "y": 120, "width": 108, "height": 64 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.5921568870544434, "g": 0.27843138575553894, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 20, - "counterAxisAlignItems": "CENTER", - "primaryAxisAlignItems": "CENTER", - "paddingLeft": 20, - "paddingRight": 20, - "paddingTop": 20, - "paddingBottom": 20, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6164", - "name": "Page Height", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6165", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6166", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2024, "y": 144, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 2024, "y": 144, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "2": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2021, "y": 141, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2021, "y": 141, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6167", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6168", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2068, "y": 144, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 2068, "y": 144, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "2": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2065, "y": 141, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2065, "y": 141, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2001, "y": 121, "width": 108, "height": 64 }, - "absoluteRenderBounds": { "x": 2001, "y": 121, "width": 108, "height": 64 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.5921568870544434, "g": 0.27843138575553894, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 20, - "counterAxisAlignItems": "CENTER", - "primaryAxisAlignItems": "CENTER", - "paddingLeft": 20, - "paddingRight": 20, - "paddingTop": 20, - "paddingBottom": 20, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6169", - "name": "Page Width", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6170", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6171", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2185, "y": 144, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 2185, "y": 144, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "2": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2182, "y": 141, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2182, "y": 141, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6172", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6173", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2229, "y": 144, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 2229, "y": 144, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "2": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2226, "y": 141, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2226, "y": 141, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2162, "y": 121, "width": 108, "height": 64 }, - "absoluteRenderBounds": { "x": 2162, "y": 121, "width": 108, "height": 64 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.5921568870544434, "g": 0.27843138575553894, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 20, - "counterAxisAlignItems": "CENTER", - "primaryAxisAlignItems": "CENTER", - "paddingLeft": 20, - "paddingRight": 20, - "paddingTop": 20, - "paddingBottom": 20, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6174", - "name": "Page Rotate", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6175", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6176", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2344, "y": 141, "width": 21, "height": 21 }, - "absoluteRenderBounds": { - "x": 2344.414306640625, - "y": 141.3221893310547, - "width": 20.585693359375, - "height": 20.677810668945312 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null, "2": null, "3": null }, - "strokes": [], - "strokeWeight": 0.02500000037252903, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 2343, "y": 140, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2343, "y": 140, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6177", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6178", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2388, "y": 141, "width": 21, "height": 21 }, - "absoluteRenderBounds": { - "x": 2388.414306640625, - "y": 141.3221893310547, - "width": 20.585693359375, - "height": 20.677810668945312 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null, "2": null, "3": null }, - "strokes": [], - "strokeWeight": 0.02500000037252903, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 2387, "y": 140, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2387, "y": 140, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2323, "y": 120, "width": 108, "height": 64 }, - "absoluteRenderBounds": { "x": 2323, "y": 120, "width": 108, "height": 64 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.5921568870544434, "g": 0.27843138575553894, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 20, - "counterAxisAlignItems": "CENTER", - "primaryAxisAlignItems": "CENTER", - "paddingLeft": 20, - "paddingRight": 20, - "paddingTop": 20, - "paddingBottom": 20, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6179", - "name": "Save", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6180", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6181", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2507, "y": 143, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 2507, "y": 143, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2504, "y": 140, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2504, "y": 140, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6182", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6183", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2551, "y": 143, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 2551, "y": 143, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2548, "y": 140, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2548, "y": 140, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2484, "y": 120, "width": 108, "height": 64 }, - "absoluteRenderBounds": { "x": 2484, "y": 120, "width": 108, "height": 64 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.5921568870544434, "g": 0.27843138575553894, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 20, - "counterAxisAlignItems": "CENTER", - "primaryAxisAlignItems": "CENTER", - "paddingLeft": 20, - "paddingRight": 20, - "paddingTop": 20, - "paddingBottom": 20, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6184", - "name": "Publish", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6185", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6186", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2670, "y": 147, "width": 14, "height": 16 }, - "absoluteRenderBounds": { "x": 2670, "y": 147, "width": 14, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null, "2": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 2665, "y": 143, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2665, "y": 143, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6187", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6188", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2714, "y": 147, "width": 14, "height": 16 }, - "absoluteRenderBounds": { "x": 2714, "y": 147, "width": 14, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null, "2": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 2709, "y": 143, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2709, "y": 143, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2645, "y": 123, "width": 108, "height": 64 }, - "absoluteRenderBounds": { "x": 2645, "y": 123, "width": 108, "height": 64 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.5921568870544434, "g": 0.27843138575553894, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 20, - "counterAxisAlignItems": "CENTER", - "primaryAxisAlignItems": "CENTER", - "paddingLeft": 20, - "paddingRight": 20, - "paddingTop": 20, - "paddingBottom": 20, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6189", - "name": "File", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6190", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6191", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2830, "y": 143, "width": 16, "height": 20 }, - "absoluteRenderBounds": { "x": 2830, "y": 143, "width": 16, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 2826, "y": 141, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2826, "y": 141, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6192", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6193", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2874, "y": 143, "width": 16, "height": 20 }, - "absoluteRenderBounds": { "x": 2874, "y": 143, "width": 16, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 2870, "y": 141, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2870, "y": 141, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2806, "y": 121, "width": 108, "height": 64 }, - "absoluteRenderBounds": { "x": 2806, "y": 121, "width": 108, "height": 64 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.5921568870544434, "g": 0.27843138575553894, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 20, - "counterAxisAlignItems": "CENTER", - "primaryAxisAlignItems": "CENTER", - "paddingLeft": 20, - "paddingRight": 20, - "paddingTop": 20, - "paddingBottom": 20, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6194", - "name": "Folder", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6195", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6196", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2989, "y": 147, "width": 20, "height": 15.294116973876953 }, - "absoluteRenderBounds": { "x": 2989, "y": 147, "width": 20, "height": 15.294113159179688 }, - "preserveRatio": true, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2987, "y": 143, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2987, "y": 143, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6197", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6198", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3033, "y": 147, "width": 20, "height": 15.294116973876953 }, - "absoluteRenderBounds": { "x": 3033, "y": 147, "width": 20, "height": 15.294113159179688 }, - "preserveRatio": true, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3031, "y": 143, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 3031, "y": 143, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2967, "y": 123, "width": 108, "height": 64 }, - "absoluteRenderBounds": { "x": 2967, "y": 123, "width": 108, "height": 64 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.5921568870544434, "g": 0.27843138575553894, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 20, - "counterAxisAlignItems": "CENTER", - "primaryAxisAlignItems": "CENTER", - "paddingLeft": 20, - "paddingRight": 20, - "paddingTop": 20, - "paddingBottom": 20, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6199", - "name": "Maintenance", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6200", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6201", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 3150, - "y": 146, - "width": 19.800125122070312, - "height": 18.555572509765625 - }, - "absoluteRenderBounds": { - "x": 3150.103515625, - "y": 146, - "width": 19.0751953125, - "height": 17.93426513671875 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null, "2": null, "3": null, "4": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 3148, "y": 143, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 3148, "y": 143, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6202", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6203", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 3194, - "y": 146, - "width": 19.800125122070312, - "height": 18.555572509765625 - }, - "absoluteRenderBounds": { - "x": 3194.103515625, - "y": 146, - "width": 19.0751953125, - "height": 17.93426513671875 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null, "2": null, "3": null, "4": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 3192, "y": 143, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 3192, "y": 143, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3128, "y": 123, "width": 108, "height": 64 }, - "absoluteRenderBounds": { "x": 3128, "y": 123, "width": 108, "height": 64 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.5921568870544434, "g": 0.27843138575553894, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 20, - "counterAxisAlignItems": "CENTER", - "primaryAxisAlignItems": "CENTER", - "paddingLeft": 20, - "paddingRight": 20, - "paddingTop": 20, - "paddingBottom": 20, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1744, "y": -432, "width": 1744, "height": 1280 }, - "absoluteRenderBounds": { "x": 1744, "y": -432, "width": 1744, "height": 1280 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "clipsContent": true, - "background": [{ "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 1, "g": 1, "b": 1, "a": 1 } }], - "fills": [{ "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 1, "g": 1, "b": 1, "a": 1 } }], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 1, "g": 1, "b": 1, "a": 1 }, - "exportSettings": [], - "effects": [] - } -] +[{"id":"176:5659","name":"Content","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5660","name":"Content","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-161,"y":-352,"width":88,"height":32},"absoluteRenderBounds":{"x":-159.67999267578125,"y":-344.0400085449219,"width":85.08937072753906,"height":17.3280029296875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"exportSettings":[],"effects":[],"characters":"Content","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"176:5661","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-161,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":-161,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"exportSettings":[],"effects":[]},{"id":"176:5662","name":"Add","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5663","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5664","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5665","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-132,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-132,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5666","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5667","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5668","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-92,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-92,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-161,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5669","name":"Sort","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5670","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5671","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5672","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1144.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1144.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5673","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5674","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5675","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1184.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1184.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1119,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5676","name":"Content","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5677","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","rotation":-1.224648970167536e-16,"blendMode":"PASS_THROUGH","children":[{"id":"176:5678","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5679","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":1.224648970167536e-16,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":665,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":665,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5680","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5681","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5682","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":705,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":705,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5683","name":"Copy File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5684","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5685","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5686","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":345,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":345,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5687","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5688","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5689","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":385,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":385,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5690","name":"Remove Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5691","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5692","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5693","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":345,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":345,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5694","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5695","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5696","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":385,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":385,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5697","name":"Add Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5698","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5699","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5700","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5701","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5702","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5703","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5704","name":"Remove Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5705","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5706","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5707","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":665,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":665,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5708","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5709","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5710","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":705,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":705,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5711","name":"Block","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5712","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5713","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5714","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5715","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5716","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5717","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5718","name":"Add Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5719","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5720","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5721","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":505,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":505,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5722","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5723","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5724","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":545,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":545,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5725","name":"Remove","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5726","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5727","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5728","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":28,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":28,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5729","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5730","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5731","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":68,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":68,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5732","name":"Android","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5733","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5734","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5735","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":506,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":506,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5736","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5737","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5738","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":546,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":546,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5739","name":"Add Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5740","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5741","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5742","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5743","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5744","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5745","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":866,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5746","name":"Remove Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5747","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5748","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5749","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":986,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":986,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5750","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5751","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5752","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1026,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":1026,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":959,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5753","name":"Push Pin","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5754","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5755","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5756","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":28,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":28,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5757","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5758","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5759","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":68,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":68,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5760","name":"Send","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5761","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5762","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5763","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":-91.48487854003906,"width":19.457500457763672,"height":16.96976089477539},"absoluteRenderBounds":{"x":185,"y":-91.48487854003906,"width":19.457504272460938,"height":16.969757080078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5764","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5765","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5766","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":-92,"width":21,"height":18},"absoluteRenderBounds":{"x":225,"y":-92,"width":21,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5767","name":"Backspace","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5768","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5769","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5770","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343.2049865722656,"y":-92,"width":23.795000076293945,"height":18},"absoluteRenderBounds":{"x":343.2049865722656,"y":-92,"width":23.795013427734375,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5771","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5772","name":"Backspace","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5773","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-92,"width":24,"height":18},"absoluteRenderBounds":{"x":383,"y":-92,"width":24,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5774","name":"Flag","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5775","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5776","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5777","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":508,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":508,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5778","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5779","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5780","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":548,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":548,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5781","name":"Save","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5782","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5783","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5784","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":666,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":666,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5785","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5786","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5787","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":706,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":706,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5788","name":"Reply","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5789","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5790","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5791","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592500686645508,"height":13.594012260437012},"absoluteRenderBounds":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592529296875,"height":13.594009399414062},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5792","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5793","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5794","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1026,"y":-90,"width":18,"height":15},"absoluteRenderBounds":{"x":1026,"y":-90,"width":18,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":959,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5795","name":"Redo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5796","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5797","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5798","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1144.9423828125,"y":-87,"width":20.05765724182129,"height":8},"absoluteRenderBounds":{"x":1144.9423828125,"y":-87,"width":20.0576171875,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5799","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5800","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5801","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1184.5400390625,"y":-88,"width":20.459999084472656,"height":9},"absoluteRenderBounds":{"x":1184.5400390625,"y":-88,"width":20.4599609375,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1119,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5802","name":"Save Alt","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5803","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5804","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5805","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5806","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5807","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5808","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":866,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5809","name":"Undo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5810","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5811","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5812","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1305,"y":-87,"width":20.067657470703125,"height":8},"absoluteRenderBounds":{"x":1305,"y":-87,"width":20.067626953125,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1303,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5813","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5814","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5815","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1345,"y":-88,"width":20.469999313354492,"height":9},"absoluteRenderBounds":{"x":1345,"y":-88,"width":20.469970703125,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1279,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1279,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5816","name":"Chart Pie","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5817","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5818","name":"Rectangle 1756","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5819","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":862,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":862,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":860,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5820","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5821","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":826,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":824,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":824,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:5822","name":"Email","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5823","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5824","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5825","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-135,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-135,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5826","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5827","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5828","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-95,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-95,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-161,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:5829","name":"Email Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5830","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5831","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5832","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":25,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":25,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5833","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5834","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5835","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":65,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":65,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-257,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-257,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"exportSettings":[],"effects":[]},{"id":"176:5836","name":"Hard ware","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5837","name":"Hardware","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2105,"y":-352,"width":109,"height":32},"absoluteRenderBounds":{"x":-2102.93603515625,"y":-344.760009765625,"width":104.982421875,"height":18.048004150390625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"exportSettings":[],"effects":[],"characters":"Hardware","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"176:5838","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2105,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":-2105,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"exportSettings":[],"effects":[]},{"id":"176:5839","name":"Scanner","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5840","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5841","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5842","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-1119,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5843","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5844","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5845","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-1079,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5846","name":"Printer","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5847","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5848","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5849","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":-93,"width":20,"height":18},"absoluteRenderBounds":{"x":-959,"y":-93,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5850","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5851","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5852","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":-93,"width":20,"height":18},"absoluteRenderBounds":{"x":-919,"y":-93,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5853","name":"Cast","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5854","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5855","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5856","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2080,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-2080,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5857","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5858","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5859","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2040,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-2040,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5860","name":"Cast Connected","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5861","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5862","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5863","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1920,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-1920,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5864","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5865","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5866","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1880,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-1880,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5867","name":"Desktop","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5868","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5869","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-638,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5870","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-637,"y":-214,"width":22,"height":20},"absoluteRenderBounds":{"x":-637,"y":-214,"width":22,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-638,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-638,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5871","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5872","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-598,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5873","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-597,"y":-214,"width":22,"height":20},"absoluteRenderBounds":{"x":-597,"y":-214,"width":22,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-598,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-598,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-662,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-662,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5874","name":"Devices Ecosystem","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5875","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5876","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5877","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2080,"y":-92,"width":22,"height":16},"absoluteRenderBounds":{"x":-2080,"y":-92,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5878","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5879","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5880","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2040,"y":-92,"width":22,"height":16},"absoluteRenderBounds":{"x":-2040,"y":-92,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5881","name":"Device Settings","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5882","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5883","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5884","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1917.81494140625,"y":-95,"width":17.81491470336914,"height":22},"absoluteRenderBounds":{"x":-1917.81494140625,"y":-95,"width":17.81494140625,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5885","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5886","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5887","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1877.97021484375,"y":-95,"width":17.969999313354492,"height":22},"absoluteRenderBounds":{"x":-1877.97021484375,"y":-95,"width":17.969970703125,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5888","name":"Headphones","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5889","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5890","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5891","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1758,"y":27,"width":18,"height":18},"absoluteRenderBounds":{"x":-1758,"y":27,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5892","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5893","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5894","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1718,"y":27,"width":18,"height":18},"absoluteRenderBounds":{"x":-1718,"y":27,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5895","name":"Keyboard","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5896","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5897","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5898","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":-91,"width":20,"height":14},"absoluteRenderBounds":{"x":-1599,"y":-91,"width":20,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5899","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5900","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5901","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":-91,"width":20,"height":14},"absoluteRenderBounds":{"x":-1559,"y":-91,"width":20,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5902","name":"Laptop","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5903","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5904","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5905","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1601,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5906","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5907","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5908","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1561,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5909","name":"Memory","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5910","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5911","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5912","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1758,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":-1758,"y":-93,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5913","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5914","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5915","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1718,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":-1718,"y":-93,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5916","name":"Monitor","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5917","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5918","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5919","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":-213,"width":19.990081787109375,"height":18},"absoluteRenderBounds":{"x":-799,"y":-213,"width":19.9901123046875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5920","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5921","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5922","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":-213,"width":20,"height":18},"absoluteRenderBounds":{"x":-759,"y":-213,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5923","name":"Phone Android","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5924","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5925","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5926","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2076,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-2076,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5927","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5928","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5929","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2036,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-2036,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5930","name":"Phone iPhone","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5931","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5932","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5933","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1916,"y":-215,"width":13,"height":22},"absoluteRenderBounds":{"x":-1916,"y":-215,"width":13,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5934","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5935","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5936","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1876,"y":-215,"width":13,"height":22},"absoluteRenderBounds":{"x":-1876,"y":-215,"width":13,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5937","name":"Phonelink","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5938","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5939","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5940","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1441,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5941","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5942","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5943","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1401,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5944","name":"Security","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5945","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5946","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5947","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-638,"y":-94.8125,"width":18,"height":21.8125},"absoluteRenderBounds":{"x":-638,"y":-94.8125,"width":18,"height":21.8125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5948","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5949","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5950","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-598,"y":-95,"width":18,"height":22},"absoluteRenderBounds":{"x":-598,"y":-95,"width":18,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5951","name":"Video Play","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5952","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5953","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5954","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-799,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5955","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5956","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5957","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-759,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5958","name":"Smart Phone","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5959","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5960","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5961","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1756,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-1756,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5962","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5963","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5964","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1716,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-1716,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5965","name":"Speaker","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5966","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5967","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5968","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1276,"y":-94,"width":14,"height":20},"absoluteRenderBounds":{"x":-1276,"y":-94,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5969","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5970","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5971","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1236,"y":-94,"width":14,"height":19.989999771118164},"absoluteRenderBounds":{"x":-1236,"y":-94,"width":14,"height":19.98999786376953},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5972","name":"Tablet","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5973","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5974","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5975","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1280,"y":-212,"width":22,"height":16},"absoluteRenderBounds":{"x":-1280,"y":-212,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5976","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5977","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5978","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1240,"y":-212,"width":22,"height":16},"absoluteRenderBounds":{"x":-1240,"y":-212,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5979","name":"Tablet Mac","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5980","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5981","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5982","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":-216,"width":19,"height":24},"absoluteRenderBounds":{"x":-1119,"y":-216,"width":19,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5983","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5984","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5985","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":-216,"width":19,"height":24},"absoluteRenderBounds":{"x":-1079,"y":-216,"width":19,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5986","name":"TV","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5987","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5988","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5989","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-960,"y":-213,"width":22,"height":18},"absoluteRenderBounds":{"x":-960,"y":-213,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5990","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5991","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5992","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-920,"y":-213,"width":22,"height":18},"absoluteRenderBounds":{"x":-920,"y":-213,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5993","name":"Watch","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5994","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5995","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5996","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1437,"y":-96,"width":16,"height":24},"absoluteRenderBounds":{"x":-1437,"y":-96,"width":16,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5997","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5998","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5999","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1397,"y":-96,"width":16,"height":24},"absoluteRenderBounds":{"x":-1397,"y":-96,"width":16,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]}],"absoluteBoundingBox":{"x":-2201,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-2201,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"exportSettings":[],"effects":[]},{"id":"176:6000","name":"File","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6001","name":"File","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1840,"y":-352,"width":41,"height":32},"absoluteRenderBounds":{"x":1842.06396484375,"y":-344.8559875488281,"width":37.130859375,"height":18.14398193359375},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"exportSettings":[],"effects":[],"characters":"File","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"176:6002","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1840,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":1840,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"exportSettings":[],"effects":[]},{"id":"176:6003","name":"Finished Download","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6004","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6005","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6006","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1864,"y":-211.43499755859375,"width":14,"height":15.4350004196167},"absoluteRenderBounds":{"x":1864,"y":-211.43499755859375,"width":14,"height":15.43499755859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":1859,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6007","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6008","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1899,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6009","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1904,"y":-212,"width":14,"height":16},"absoluteRenderBounds":{"x":1904,"y":-212,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1899,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":1899,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1835,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":1835,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6010","name":"Downloading","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6011","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6012","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6013","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2021,"y":-213.7744140625,"width":19.77721405029297,"height":19.558454513549805},"absoluteRenderBounds":{"x":2021,"y":-213.7744140625,"width":19.7772216796875,"height":19.558456420898438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2019,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6014","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6015","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2059,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6016","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2061,"y":-213.9499969482422,"width":19.950000762939453,"height":19.900001525878906},"absoluteRenderBounds":{"x":2061,"y":-213.9499969482422,"width":19.949951171875,"height":19.900009155273438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2059,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2059,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1995,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":1995,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6017","name":"Cloud","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6018","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6019","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2179,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6020","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2179,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2179,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2179,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2179,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6021","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6022","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2219,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6023","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2219,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2219,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2219,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2219,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2155,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2155,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6024","name":"Cloud Done","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6025","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6026","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2499,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6027","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2499,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2499,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2499,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2499,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6028","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6029","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2539,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6030","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2539,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2539,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2539,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2539,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2475,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2475,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6031","name":"Cloud Download","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6032","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6033","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2659,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6034","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2659,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2659,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2659,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2659,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6035","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6036","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2699,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6037","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2699,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2699,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2699,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2699,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2635,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2635,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6038","name":"Cloud Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6039","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6040","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2339,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6041","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2339,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2339,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2339,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2339,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6042","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6043","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2379,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6044","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2379,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2379,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2379,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2379,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2315,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2315,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6045","name":"Cloud Upload","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6046","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6047","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2819,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6048","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2819,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2819,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2819,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2819,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6049","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6050","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6051","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2859,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2859,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2859,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2795,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2795,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6052","name":"Cloud Off","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6053","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6054","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2979,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6055","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2979.002685546875,"y":-212,"width":23.997297286987305,"height":17.582500457763672},"absoluteRenderBounds":{"x":2979.002685546875,"y":-212,"width":23.997314453125,"height":17.582504272460938},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2979,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2979,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6056","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6057","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6058","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3019,"y":-212.13999938964844,"width":24,"height":18.139999389648438},"absoluteRenderBounds":{"x":3019,"y":-212.13999938964844,"width":24,"height":18.139999389648438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":3019,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2955,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2955,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6059","name":"Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6060","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6061","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6062","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1866,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":1866,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":1864,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6063","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6064","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1904,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6065","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1906,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":1906,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1904,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":1904,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1840,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":1840,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6066","name":"Create New Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6067","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6068","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6069","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2186,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2186,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2184,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6070","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6071","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2224,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6072","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2226,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2226,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2224,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2224,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2160,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2160,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6073","name":"Folder Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6074","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6075","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6076","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2026,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2026,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2024,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6077","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6078","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2064,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6079","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2066,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2066,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2064,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2064,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2000,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2000,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6080","name":"Shared Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6081","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6082","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6083","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2346,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2346,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2344,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6084","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6085","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2384,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6086","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2386,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2386,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2384,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2384,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2320,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2320,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6087","name":"Grid View","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6088","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6089","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2504,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6090","name":"Vector","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"176:6091","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2507,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6092","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2507,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6093","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2517,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6094","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2517,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2507,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":2507,"y":-93,"width":18,"height":18},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2504,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2504,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6095","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6096","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2544,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6097","name":"Vector","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"176:6098","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2547,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6099","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2547,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6100","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2557,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6101","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2557,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2547,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":2547,"y":-93,"width":18,"height":18},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2544,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2544,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2480,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2480,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6102","name":"Upload File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6103","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6104","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2664,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6105","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2668,"y":-94,"width":16,"height":20},"absoluteRenderBounds":{"x":2668,"y":-94,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2664,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2664,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6106","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6107","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2704,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6108","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2708,"y":-94,"width":16,"height":20},"absoluteRenderBounds":{"x":2708,"y":-94,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2704,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2704,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2640,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2640,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6109","name":"JPG Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6110","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6111","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2824,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6112","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2825,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2825,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6113","name":"JPG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2827.5859375,"y":-84.0999984741211,"width":16.662187576293945,"height":7.220000267028809},"absoluteRenderBounds":{"x":2827.5859375,"y":-84.0999984741211,"width":16.662109375,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2824,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2824,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6114","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6115","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6116","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2865,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6117","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2867,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2865,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2865,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6118","name":"JPG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2867.5859375,"y":-84.0999984741211,"width":16.662187576293945,"height":7.220000267028809},"absoluteRenderBounds":{"x":2867.5859375,"y":-84.0999984741211,"width":16.662109375,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2864,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2800,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2800,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6119","name":"PDF Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6120","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6121","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3144,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6122","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3145,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3145,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6123","name":"PDF","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3147.9658203125,"y":-83.9800033569336,"width":16.262189865112305,"height":6.980000019073486},"absoluteRenderBounds":{"x":3147.9658203125,"y":-83.9800033569336,"width":16.26220703125,"height":6.980003356933594},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3144,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3144,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6124","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6125","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6126","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3185,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6127","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3187,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3185,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3185,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6128","name":"PDF","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3187.9658203125,"y":-83.9800033569336,"width":16.262189865112305,"height":6.980000019073486},"absoluteRenderBounds":{"x":3187.9658203125,"y":-83.9800033569336,"width":16.26220703125,"height":6.980003356933594},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3184,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3120,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":3120,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6129","name":"PNG Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6130","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6131","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2984,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6132","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2985,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2985,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6133","name":"PNG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2987.9658203125,"y":-84.0999984741211,"width":16.282188415527344,"height":7.220000267028809},"absoluteRenderBounds":{"x":2987.9658203125,"y":-84.0999984741211,"width":16.2822265625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2984,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2984,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6134","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6135","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6136","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3025,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6137","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3027,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3025,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3025,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6138","name":"PNG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3027.9658203125,"y":-84.0999984741211,"width":16.282188415527344,"height":7.220000267028809},"absoluteRenderBounds":{"x":3027.9658203125,"y":-84.0999984741211,"width":16.2822265625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3024,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2960,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2960,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6139","name":"DOC Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6140","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6141","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3304,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6142","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3305,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3305,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6143","name":"DOC","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3307.845947265625,"y":-84.0999984741211,"width":16.58218765258789,"height":7.220000267028809},"absoluteRenderBounds":{"x":3307.845947265625,"y":-84.0999984741211,"width":16.582275390625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3304,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3304,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6144","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6145","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6146","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3345,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6147","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3347,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3345,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3345,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6148","name":"DOC","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3347.845947265625,"y":-84.0999984741211,"width":16.58218765258789,"height":7.220000267028809},"absoluteRenderBounds":{"x":3347.845947265625,"y":-84.0999984741211,"width":16.582275390625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3344,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3280,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":3280,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6149","name":"PPT Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6150","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6151","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3304,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6152","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3305,"y":-214,"width":22,"height":22},"absoluteRenderBounds":{"x":3305,"y":-214,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6153","name":"PPT","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3307.9658203125,"y":-202.97999572753906,"width":16.59218978881836,"height":6.980000019073486},"absoluteRenderBounds":{"x":3307.9658203125,"y":-202.97999572753906,"width":16.59228515625,"height":6.9799957275390625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3304,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":3304,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6154","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6155","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6156","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3345,"y":-214,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6157","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3347,"y":-212,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3345,"y":-214,"width":22,"height":22},"absoluteRenderBounds":{"x":3345,"y":-214,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6158","name":"PPT","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3347.9658203125,"y":-202.97999572753906,"width":16.59218978881836,"height":6.980000019073486},"absoluteRenderBounds":{"x":3347.9658203125,"y":-202.97999572753906,"width":16.59228515625,"height":6.9799957275390625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3344,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":3344,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3280,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":3280,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6159","name":"Open New Off","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6160","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6161","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1861.389892578125,"y":142.81005859375,"width":19.790000915527344,"height":19.80000114440918},"absoluteRenderBounds":{"x":1861.8028564453125,"y":143.00006103515625,"width":19.197021484375,"height":19.192001342773438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1860,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":1860,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6162","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6163","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1905.389892578125,"y":142.81005859375,"width":19.790000915527344,"height":19.80000114440918},"absoluteRenderBounds":{"x":1905.8028564453125,"y":143.00006103515625,"width":19.197021484375,"height":19.192001342773438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1904,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":1904,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1840,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":1840,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6164","name":"Page Height","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6165","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6166","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2024,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2024,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2021,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2021,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6167","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6168","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2068,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2068,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2065,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2065,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2001,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2001,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6169","name":"Page Width","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6170","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6171","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2185,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2185,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2182,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2182,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6172","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6173","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2229,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2229,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2226,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2226,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2162,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2162,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6174","name":"Page Rotate","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6175","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6176","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2344,"y":141,"width":21,"height":21},"absoluteRenderBounds":{"x":2344.414306640625,"y":141.3221893310547,"width":20.585693359375,"height":20.677810668945312},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":0.02500000037252903,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2343,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2343,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6177","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6178","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2388,"y":141,"width":21,"height":21},"absoluteRenderBounds":{"x":2388.414306640625,"y":141.3221893310547,"width":20.585693359375,"height":20.677810668945312},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":0.02500000037252903,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2387,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2387,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2323,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":2323,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6179","name":"Save","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6180","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6181","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2507,"y":143,"width":18,"height":18},"absoluteRenderBounds":{"x":2507,"y":143,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2504,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2504,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6182","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6183","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2551,"y":143,"width":18,"height":18},"absoluteRenderBounds":{"x":2551,"y":143,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2548,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2548,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2484,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":2484,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6184","name":"Publish","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6185","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6186","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2670,"y":147,"width":14,"height":16},"absoluteRenderBounds":{"x":2670,"y":147,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2665,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2665,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6187","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6188","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2714,"y":147,"width":14,"height":16},"absoluteRenderBounds":{"x":2714,"y":147,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2709,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2709,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2645,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":2645,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6189","name":"File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6190","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6191","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2830,"y":143,"width":16,"height":20},"absoluteRenderBounds":{"x":2830,"y":143,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2826,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2826,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6192","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6193","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2874,"y":143,"width":16,"height":20},"absoluteRenderBounds":{"x":2874,"y":143,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2870,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2870,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2806,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2806,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6194","name":"Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6195","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6196","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2989,"y":147,"width":20,"height":15.294116973876953},"absoluteRenderBounds":{"x":2989,"y":147,"width":20,"height":15.294113159179688},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2987,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2987,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6197","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6198","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3033,"y":147,"width":20,"height":15.294116973876953},"absoluteRenderBounds":{"x":3033,"y":147,"width":20,"height":15.294113159179688},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3031,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3031,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2967,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":2967,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6199","name":"Maintenance","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6200","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6201","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3150,"y":146,"width":19.800125122070312,"height":18.555572509765625},"absoluteRenderBounds":{"x":3150.103515625,"y":146,"width":19.0751953125,"height":17.93426513671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null,"4":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":3148,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3148,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6202","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6203","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3194,"y":146,"width":19.800125122070312,"height":18.555572509765625},"absoluteRenderBounds":{"x":3194.103515625,"y":146,"width":19.0751953125,"height":17.93426513671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null,"4":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":3192,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3192,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3128,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":3128,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1744,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":1744,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"exportSettings":[],"effects":[]}] \ No newline at end of file diff --git a/test/data/componentSets.json b/test/data/componentSets.json index c3bbda19..808456dc 100644 --- a/test/data/componentSets.json +++ b/test/data/componentSets.json @@ -1,382 +1 @@ -{ - "176:5662": { - "name": "Add", - "description": "Plus, add, create, request", - "documentationLinks": [] - }, - "176:5669": { - "name": "Sort", - "description": "sort, reorder", - "documentationLinks": [] - }, - "176:5676": { - "name": "Content", - "description": "duplicate, copy, clipboard, Workcloud, WC", - "documentationLinks": [] - }, - "176:5683": { - "name": "Copy File", - "description": "", - "documentationLinks": [] - }, - "176:5690": { - "name": "Remove Circle Outline", - "description": "Minus", - "documentationLinks": [] - }, - "176:5697": { - "name": "Add Circle Outline", - "description": "Plus", - "documentationLinks": [] - }, - "176:5704": { - "name": "Remove Circle", - "description": "Minus, Workcloud, WC", - "documentationLinks": [] - }, - "176:5711": { - "name": "Block", - "description": "unclaim, cancel, do not, DNE, Workcloud, WC", - "documentationLinks": [] - }, - "176:5718": { - "name": "Add Circle", - "description": "Plus", - "documentationLinks": [] - }, - "176:5725": { - "name": "Remove", - "description": "Minus, remove, delete, Workcloud, WC", - "documentationLinks": [] - }, - "176:5732": { - "name": "Android", - "description": "OS", - "documentationLinks": [] - }, - "176:5739": { - "name": "Add Box", - "description": "Plus", - "documentationLinks": [] - }, - "176:5746": { - "name": "Remove Box", - "description": "Minus", - "documentationLinks": [] - }, - "176:5753": { - "name": "Push Pin", - "description": "pin, save, pushpin, mark, Workcloud, WC", - "documentationLinks": [] - }, - "176:5760": { - "name": "Send", - "description": "chat, message, communication, send, Workcloud, WC", - "documentationLinks": [] - }, - "176:5767": { - "name": "Backspace", - "description": "Delete, clear, remove, backspace, Workcloud, WC", - "documentationLinks": [] - }, - "176:5774": { - "name": "Flag", - "description": "flag, mark, Workcloud, WC", - "documentationLinks": [] - }, - "176:5781": { - "name": "Save", - "description": "file, save", - "documentationLinks": [] - }, - "176:5788": { - "name": "Reply", - "description": "email, e-mail, envelope, message, reply, Workcloud, WC", - "documentationLinks": [] - }, - "176:5795": { - "name": "Redo", - "description": "redo, edit, Workcloud, WC", - "documentationLinks": [] - }, - "176:5802": { - "name": "Save Alt", - "description": "save, file, import, download, Workcloud, WC", - "documentationLinks": [] - }, - "176:5809": { - "name": "Undo", - "description": "undo, edit, Workcloud, WC", - "documentationLinks": [] - }, - "176:5816": { - "name": "Chart Pie", - "description": "report, analytics, chart, pie chart, pie-chart, piechart", - "documentationLinks": [] - }, - "176:5822": { - "name": "Email", - "description": "Mail, @, email, e-mail, envelope, message, Workcloud, WC", - "documentationLinks": [] - }, - "176:5829": { - "name": "Email Outline", - "description": "Mail, @, email, e-mail, envelope, message, Workcloud, WC, outline", - "documentationLinks": [] - }, - "176:5839": { - "name": "Scanner", - "description": "mobile", - "documentationLinks": [] - }, - "176:5846": { - "name": "Printer", - "description": "print, printer, Workcloud, WC", - "documentationLinks": [] - }, - "176:5853": { - "name": "Cast", - "description": "Chrome", - "documentationLinks": [] - }, - "176:5860": { - "name": "Cast Connected", - "description": "Chrome", - "documentationLinks": [] - }, - "176:5867": { - "name": "Desktop", - "description": "", - "documentationLinks": [] - }, - "176:5874": { - "name": "Devices Ecosystem", - "description": "", - "documentationLinks": [] - }, - "176:5881": { - "name": "Device Settings", - "description": "", - "documentationLinks": [] - }, - "176:5888": { - "name": "Headphones", - "description": "", - "documentationLinks": [] - }, - "176:5895": { - "name": "Keyboard", - "description": "keyboard, keypad, type, Workcloud, WC", - "documentationLinks": [] - }, - "176:5902": { - "name": "Laptop", - "description": "Computer", - "documentationLinks": [] - }, - "176:5909": { - "name": "Memory", - "description": "Processor, Microprocessor", - "documentationLinks": [] - }, - "176:5916": { - "name": "Monitor", - "description": "", - "documentationLinks": [] - }, - "176:5923": { - "name": "Phone Android", - "description": "Mobile", - "documentationLinks": [] - }, - "176:5930": { - "name": "Phone iPhone", - "description": "Mobile", - "documentationLinks": [] - }, - "176:5937": { - "name": "Phonelink", - "description": "Connected", - "documentationLinks": [] - }, - "176:5944": { - "name": "Security", - "description": "Protect, Protection, Shield", - "documentationLinks": [] - }, - "176:5951": { - "name": "Video Play", - "description": "", - "documentationLinks": [] - }, - "176:5958": { - "name": "Smart Phone", - "description": "Mobile, phone, device, Workcloud, WC", - "documentationLinks": [] - }, - "176:5965": { - "name": "Speaker", - "description": "", - "documentationLinks": [] - }, - "176:5972": { - "name": "Tablet", - "description": "", - "documentationLinks": [] - }, - "176:5979": { - "name": "Tablet Mac", - "description": "iPad", - "documentationLinks": [] - }, - "176:5986": { - "name": "TV", - "description": "Television", - "documentationLinks": [] - }, - "176:5993": { - "name": "Watch", - "description": "Smartwatch", - "documentationLinks": [] - }, - "176:6003": { - "name": "Finished Download", - "description": "Complete, Success, Done", - "documentationLinks": [] - }, - "176:6010": { - "name": "Downloading", - "description": "", - "documentationLinks": [] - }, - "176:6017": { - "name": "Cloud", - "description": "", - "documentationLinks": [] - }, - "176:6024": { - "name": "Cloud Done", - "description": "Check, Check Mark, Mark", - "documentationLinks": [] - }, - "176:6031": { - "name": "Cloud Download", - "description": "file, download, cloud, Workcloud, WC", - "documentationLinks": [] - }, - "176:6038": { - "name": "Cloud Outline", - "description": "", - "documentationLinks": [] - }, - "176:6045": { - "name": "Cloud Upload", - "description": "file, upload, cloud, Workcloud, WC", - "documentationLinks": [] - }, - "176:6052": { - "name": "Cloud Off", - "description": "Offline", - "documentationLinks": [] - }, - "176:6059": { - "name": "Folder", - "description": "folder, Workcloud, WC", - "documentationLinks": [] - }, - "176:6066": { - "name": "Create New Folder", - "description": "Add", - "documentationLinks": [] - }, - "176:6073": { - "name": "Folder Outline", - "description": "", - "documentationLinks": [] - }, - "176:6080": { - "name": "Shared Folder", - "description": "Network, Access", - "documentationLinks": [] - }, - "176:6087": { - "name": "Grid View", - "description": "2x2", - "documentationLinks": [] - }, - "176:6102": { - "name": "Upload File", - "description": "", - "documentationLinks": [] - }, - "176:6109": { - "name": "JPG Attach", - "description": "Type, File", - "documentationLinks": [] - }, - "176:6119": { - "name": "PDF Attach", - "description": "Type, File", - "documentationLinks": [] - }, - "176:6129": { - "name": "PNG Attach", - "description": "Type, File", - "documentationLinks": [] - }, - "176:6139": { - "name": "DOC Attach", - "description": "Type, File", - "documentationLinks": [] - }, - "176:6149": { - "name": "PPT Attach", - "description": "Type, File", - "documentationLinks": [] - }, - "176:6159": { - "name": "Open New Off", - "description": "Workcloud, WC, file, do not export, export, open in new, open, launch", - "documentationLinks": [] - }, - "176:6164": { - "name": "Page Height", - "description": "Workcloud, WC, page height", - "documentationLinks": [] - }, - "176:6169": { - "name": "Page Width", - "description": "Workcloud, WC, page height", - "documentationLinks": [] - }, - "176:6174": { - "name": "Page Rotate", - "description": "Workcloud, WC, page rotate", - "documentationLinks": [] - }, - "176:6179": { - "name": "Save", - "description": "Workcloud, WC, file, save", - "documentationLinks": [] - }, - "176:6184": { - "name": "Publish", - "description": "Workcloud, WC, file, publish", - "documentationLinks": [] - }, - "176:6189": { - "name": "File", - "description": "Workcloud, WC, file, note, paper", - "documentationLinks": [] - }, - "176:6194": { - "name": "Folder", - "description": "Workcloud, WC, project, folder, file", - "documentationLinks": [] - }, - "176:6199": { - "name": "Maintenance", - "description": "Workcloud, WC, maintenance, repair, hammer, wrench, tools", - "documentationLinks": [] - } -} +{"176:5662":{"key":"cbf0fe6f1493d9acb5f9da092c1e092661ffd5f7","name":"Add","description":"Plus, add, create, request","documentationLinks":[]},"176:5669":{"key":"eb347d64ad1a0ffea96e92bdd1fedaf91f894ebd","name":"Sort","description":"sort, reorder","documentationLinks":[]},"176:5676":{"key":"476c816bb2731239ef0d55b8874ff6852fe61fe4","name":"Content","description":"duplicate, copy, clipboard, Workcloud, WC","documentationLinks":[]},"176:5683":{"key":"a95e9a1b11930e82830dad91c4dd8f8c68b5369f","name":"Copy File","description":"","documentationLinks":[]},"176:5690":{"key":"3f9d8dfa8742bc26fccc9c0f6e1e90276411c4ba","name":"Remove Circle Outline","description":"Minus","documentationLinks":[]},"176:5697":{"key":"867aaef00117348017898031f8567926c802182a","name":"Add Circle Outline","description":"Plus","documentationLinks":[]},"176:5704":{"key":"1e516e7cbd288bc2f95f595ba2b4c25c089ec41c","name":"Remove Circle","description":"Minus, Workcloud, WC","documentationLinks":[]},"176:5711":{"key":"c2702ac3e63ecb4a29e3ac97764d2fbc64c5b922","name":"Block","description":"unclaim, cancel, do not, DNE, Workcloud, WC","documentationLinks":[]},"176:5718":{"key":"9076c146080074c5e99fd1f74bacfd5c54d36ee4","name":"Add Circle","description":"Plus","documentationLinks":[]},"176:5725":{"key":"983869598a5a08e238eb714b7375b4fbfdfbf148","name":"Remove","description":"Minus, remove, delete, Workcloud, WC","documentationLinks":[]},"176:5732":{"key":"b1f3ec1029872f0654476023993c070271e4434b","name":"Android","description":"OS","documentationLinks":[]},"176:5739":{"key":"02da4b5d3d168fc03bf72db45388cfff88cf6d4e","name":"Add Box","description":"Plus","documentationLinks":[]},"176:5746":{"key":"690bf611d9ba8d6a78c3c28fbe395ac44cc57675","name":"Remove Box","description":"Minus","documentationLinks":[]},"176:5753":{"key":"51059388245bb98ddb4f1cd0f2fd6ccf3fa6d2d7","name":"Push Pin","description":"pin, save, pushpin, mark, Workcloud, WC","documentationLinks":[]},"176:5760":{"key":"9d7edf3a6280c9fcbf34dbe9f552cdd3927c0412","name":"Send","description":"chat, message, communication, send, Workcloud, WC","documentationLinks":[]},"176:5767":{"key":"d0ba0d4e165c398d30f062dd1301e2c74c91adb0","name":"Backspace","description":"Delete, clear, remove, backspace, Workcloud, WC","documentationLinks":[]},"176:5774":{"key":"60d55f7bcc8939fba1646e93729c59f0e3417de6","name":"Flag","description":"flag, mark, Workcloud, WC","documentationLinks":[]},"176:5781":{"key":"edb8e60d1699e7d0d2e585ba93ed6989b652c835","name":"Save","description":"file, save","documentationLinks":[]},"176:5788":{"key":"855361f282b8997f75f6f26328f83c3eeef01e19","name":"Reply","description":"email, e-mail, envelope, message, reply, Workcloud, WC","documentationLinks":[]},"176:5795":{"key":"180f33ff8f0dcb0869f75101dd7e80cb36fb5739","name":"Redo","description":"redo, edit, Workcloud, WC","documentationLinks":[]},"176:5802":{"key":"55662773af7f6b841859247ab6599299fae78711","name":"Save Alt","description":"save, file, import, download, Workcloud, WC","documentationLinks":[]},"176:5809":{"key":"fcd14ef19ee15d947517edb0a13103ec0e575473","name":"Undo","description":"undo, edit, Workcloud, WC","documentationLinks":[]},"176:5816":{"key":"5c50319a70cef03422ea05db2574746f63de85a7","name":"Chart Pie","description":"report, analytics, chart, pie chart, pie-chart, piechart","documentationLinks":[]},"176:5822":{"key":"ff7d1cffd91c319c4a4cac169c4f4e291eb66314","name":"Email","description":"Mail, @, email, e-mail, envelope, message, Workcloud, WC","documentationLinks":[]},"176:5829":{"key":"2e842858b83493b6bff43874f51a467ccd2ae494","name":"Email Outline","description":"Mail, @, email, e-mail, envelope, message, Workcloud, WC, outline","documentationLinks":[]},"176:5839":{"key":"f78e6558254b20c3a7d50c0a97e0e8b592358d55","name":"Scanner","description":"mobile","documentationLinks":[]},"176:5846":{"key":"5a9c331842ee93f6db77cf3730faf89f08ffa38a","name":"Printer","description":"print, printer, Workcloud, WC","documentationLinks":[]},"176:5853":{"key":"45364c041b3552011021e4aa4f94d4187382517d","name":"Cast","description":"Chrome","documentationLinks":[]},"176:5860":{"key":"c8d5aaa229a78646e816b04773c35117548d5a7e","name":"Cast Connected","description":"Chrome","documentationLinks":[]},"176:5867":{"key":"f364c6a6f68b48d6d03751bd316c8d62416273e5","name":"Desktop","description":"","documentationLinks":[]},"176:5874":{"key":"e1ae05ebc3b0eac945d2c64120de2dcdfb9c6185","name":"Devices Ecosystem","description":"","documentationLinks":[]},"176:5881":{"key":"7c7cfed104befae2ebdd932e4363cffe3733fdb9","name":"Device Settings","description":"","documentationLinks":[]},"176:5888":{"key":"1332d478aa097d9cb591848a1d2843ef2aed7421","name":"Headphones","description":"","documentationLinks":[]},"176:5895":{"key":"a7fd94e6b6f733e7eba00867ede1eadc8033acb9","name":"Keyboard","description":"keyboard, keypad, type, Workcloud, WC","documentationLinks":[]},"176:5902":{"key":"a7f3246b66215ea043b14e9530156c584cd65769","name":"Laptop","description":"Computer","documentationLinks":[]},"176:5909":{"key":"43688d3cefa72f2bc3237769d805bb1796044d93","name":"Memory","description":"Processor, Microprocessor","documentationLinks":[]},"176:5916":{"key":"a4c37dcc364c03c81b32b25191e6672ab1e2e6aa","name":"Monitor","description":"","documentationLinks":[]},"176:5923":{"key":"adc6052bc2b202f0437bcebd72a04926c80a8998","name":"Phone Android","description":"Mobile","documentationLinks":[]},"176:5930":{"key":"d33d761829524c20a1f6a6cc4e88a432dfe1f8cd","name":"Phone iPhone","description":"Mobile","documentationLinks":[]},"176:5937":{"key":"3266c82724c4f5cd69e1a861a6fa35e4b98841da","name":"Phonelink","description":"Connected","documentationLinks":[]},"176:5944":{"key":"03ba6ba94a31a4760796d8a35b229657969ed49d","name":"Security","description":"Protect, Protection, Shield","documentationLinks":[]},"176:5951":{"key":"4ffc9025404ffc8a3ef4c8e733f4d0fdbe3e4993","name":"Video Play","description":"","documentationLinks":[]},"176:5958":{"key":"8fee21bd48fef3f5536867ca0b483c5a52b445c3","name":"Smart Phone","description":"Mobile, phone, device, Workcloud, WC","documentationLinks":[]},"176:5965":{"key":"c3f5d07881ea9a4374491a1f1ec67cb7b104e558","name":"Speaker","description":"","documentationLinks":[]},"176:5972":{"key":"5b459d11e075ecf4bc663615c10f4a09e9cbaac0","name":"Tablet","description":"","documentationLinks":[]},"176:5979":{"key":"8dbef44fe722c85f87ed4aa2438446721a456065","name":"Tablet Mac","description":"iPad","documentationLinks":[]},"176:5986":{"key":"0c3278693479899a7c014cdff625a66b878bb920","name":"TV","description":"Television","documentationLinks":[]},"176:5993":{"key":"dd2fcb897604a454798081a77cb1a6693c6e5e60","name":"Watch","description":"Smartwatch","documentationLinks":[]},"176:6003":{"key":"026e47ecab4b5822d7a006cc0c34e2253425906f","name":"Finished Download","description":"Complete, Success, Done","documentationLinks":[]},"176:6010":{"key":"0975725ec5b32c1783247274f5197886d54fe2ab","name":"Downloading","description":"","documentationLinks":[]},"176:6017":{"key":"0c3d47e0b99b8a2d6a721011e5de86c98a3b3f13","name":"Cloud","description":"","documentationLinks":[]},"176:6024":{"key":"fa65f0dd571b1981d1ef36b1a0d92669928e856e","name":"Cloud Done","description":"Check, Check Mark, Mark","documentationLinks":[]},"176:6031":{"key":"bce46f0cde2d3029a213b4a083fe9424e3d5d652","name":"Cloud Download","description":"file, download, cloud, Workcloud, WC","documentationLinks":[]},"176:6038":{"key":"8cde2e1a8cdc8505bf98f68886e009b77d70dcab","name":"Cloud Outline","description":"","documentationLinks":[]},"176:6045":{"key":"1f9b23077a5cca2527be6b0e877b42b536318cef","name":"Cloud Upload","description":"file, upload, cloud, Workcloud, WC","documentationLinks":[]},"176:6052":{"key":"06e4af58fefc9796299155aa1d75bd36d75d72d0","name":"Cloud Off","description":"Offline","documentationLinks":[]},"176:6059":{"key":"41426d9912a342b838f7f3133c2e3a2eb49907a1","name":"Folder","description":"folder, Workcloud, WC","documentationLinks":[]},"176:6066":{"key":"0e855bdc2b0f8b1b76fd4f71195fa890b4f0abf8","name":"Create New Folder","description":"Add","documentationLinks":[]},"176:6073":{"key":"64511c4804a8a1ce6c515e2536961ce82ffdf562","name":"Folder Outline","description":"","documentationLinks":[]},"176:6080":{"key":"373f5fbab000865af43afc1eb53126927b9159ac","name":"Shared Folder","description":"Network, Access","documentationLinks":[]},"176:6087":{"key":"34353c2325dbbbc0d04e0776d55c57b96ba4f95e","name":"Grid View","description":"2x2","documentationLinks":[]},"176:6102":{"key":"898dce0f408dc79374d2796db8a66612408dfa2a","name":"Upload File","description":"","documentationLinks":[]},"176:6109":{"key":"b418ad93c74479f4abc83564943b693bfc108ade","name":"JPG Attach","description":"Type, File","documentationLinks":[]},"176:6119":{"key":"c1a90a0fc4209dd1ab8061fd92fef86a92f5be60","name":"PDF Attach","description":"Type, File","documentationLinks":[]},"176:6129":{"key":"c2cbc52a8984b918c5a105fc448f6cb8720653c3","name":"PNG Attach","description":"Type, File","documentationLinks":[]},"176:6139":{"key":"57338bc2a0b2839d80bc7c208a8e26055e98e479","name":"DOC Attach","description":"Type, File","documentationLinks":[]},"176:6149":{"key":"5ff5900c067b902dca74d5512cf2ec864ac16ca0","name":"PPT Attach","description":"Type, File","documentationLinks":[]},"176:6159":{"key":"d72a937dd7196d0162f7076aefced9f1536156e1","name":"Open New Off","description":"Workcloud, WC, file, do not export, export, open in new, open, launch","documentationLinks":[]},"176:6164":{"key":"041a9e7f1ef241f385fff07aebfceaa97af1e93c","name":"Page Height","description":"Workcloud, WC, page height","documentationLinks":[]},"176:6169":{"key":"ce53fdaf4694e4166c3a590e3144f5653d856624","name":"Page Width","description":"Workcloud, WC, page height","documentationLinks":[]},"176:6174":{"key":"cf3a6a774cb9923b9976a4fea13f9fca8207652c","name":"Page Rotate","description":"Workcloud, WC, page rotate","documentationLinks":[]},"176:6179":{"key":"83ec664a107d1ac5360053807b6fc096ce84bff9","name":"Save","description":"Workcloud, WC, file, save","documentationLinks":[]},"176:6184":{"key":"51a6d9b8dcab30b3c3b1eb6e7605cda1dbc5205f","name":"Publish","description":"Workcloud, WC, file, publish","documentationLinks":[]},"176:6189":{"key":"e1e8cb0dd03cb7e59c4612d300e6dfdb4027f336","name":"File","description":"Workcloud, WC, file, note, paper","documentationLinks":[]},"176:6194":{"key":"9fc690ca5dc618d555d5ddda770e80ff005413dd","name":"Folder","description":"Workcloud, WC, project, folder, file","documentationLinks":[]},"176:6199":{"key":"fc7c807aecaf8e4ac414bda29cfec7a075ff6b33","name":"Maintenance","description":"Workcloud, WC, maintenance, repair, hammer, wrench, tools","documentationLinks":[]},"1327:5":{"key":"fa74d772647bf4646618db5f5c3a1625d8070e14","name":"Life Guard","description":"Android","documentationLinks":[]},"1327:18":{"key":"7a9402271b9decfd5801a2639e9aca2cbfa252a1","name":"Mobility DNA","description":"","documentationLinks":[]},"1327:25":{"key":"cf1ae2a65281a6c0bccde0f117e0ad0839c86b2a","name":"TekSpeech Pro","description":"","documentationLinks":[]},"1327:32":{"key":"3459fffb48a486ea6a8c88acb530e9664538492a","name":"Enterprise Browser","description":"","documentationLinks":[]},"1327:39":{"key":"59fe9624af4661995fd21e528f5b4648b01146dc","name":"AppGallery","description":"Store","documentationLinks":[]},"1327:46":{"key":"27db2f0b9d39f7a51228101aa39556e8ba1ca7a7","name":"Workforce Connect","description":"WFC","documentationLinks":[]},"1327:53":{"key":"1171a60346cc1cc50a0e0bbd77e5fb1efbf66480","name":"SimulScan","description":"Signature","documentationLinks":[]},"1327:60":{"key":"81a24a04fa4a7f8c3ce4fb3f468e538a2a8c5af7","name":"Power Precision","description":"","documentationLinks":[]},"1327:67":{"key":"74d69f9036a58a631e3bf51ac020a1659331cdfe","name":"Power Precision +","description":"","documentationLinks":[]},"1327:74":{"key":"3fe69a0892bb641d3bb1c569b9c56f49f956c9ce","name":"Mobility Security","description":"","documentationLinks":[]},"1327:81":{"key":"24c0c7e84c3e5e0a9436b11f83869e8fb70bde2e","name":"StageNow","description":"","documentationLinks":[]},"1327:94":{"key":"ad3d6d802a7bc376fe7e4d2532750ce9fad2a888","name":"EMDK","description":"Toolbox","documentationLinks":[]},"1327:101":{"key":"fb744205c2bdf134b11377fac9e5fd0a0b07e543","name":"Enterprise Keyboard","description":"Setting","documentationLinks":[]},"1327:108":{"key":"90343edb43abc6c5142f6aee76bab35fd481d9a2","name":"MDM Toolkit","description":"","documentationLinks":[]},"1327:115":{"key":"02fa7e2ad504a72e11acec2aa2ad6341ab6c6330","name":"MX","description":"Mobility, Extensions","documentationLinks":[]},"1327:122":{"key":"a1ddca9e8af3f07d0af31d1b00b3ac4f021634ad","name":"RX","description":"Prescription","documentationLinks":[]},"1327:129":{"key":"a76a36e5bd7ba2d4a1668f08f35aab7d4436e160","name":"Setting Tool","description":"","documentationLinks":[]},"1327:136":{"key":"28d3f3d08802d32fb731e8034a5709857c1ba2c8","name":"Data Wedge","description":"","documentationLinks":[]},"1327:143":{"key":"dc8b8caef21c37879e6306a5458e3ca2963551c3","name":"Application Analytics","description":"","documentationLinks":[]},"1327:150":{"key":"1caf5d165efc3f7fb2ad7fa474ca4f24005e8a4c","name":"Swipe Assist","description":"","documentationLinks":[]},"1327:157":{"key":"064bd32633184eff705cd71f6edcc44f749fd972","name":"SmartDEX","description":"","documentationLinks":[]},"1327:164":{"key":"610e7daa0dbaa6eaa48f9dff0a89e0ae68567951","name":"Direct Connect","description":"","documentationLinks":[]},"1327:171":{"key":"6bd0ca2156087395a163934f50d09d50572bc25d","name":"Remote Control","description":"","documentationLinks":[]},"1327:178":{"key":"a8d43f8e262ada8ca60de953048f3bb08d6b7141","name":"Asset Tracker Lite","description":"","documentationLinks":[]},"1327:185":{"key":"c17737032ddbd06cec19ff34ada2f0a9ed63cf4d","name":"Voice Wedge","description":"","documentationLinks":[]},"1327:200":{"key":"11148f7c3482c0b2aa5d643389c04dfb337ae8ff","name":"Device Tracker","description":"","documentationLinks":[]},"1327:211":{"key":"fe317fda46a45fd752f3b525dcab6e80b47d9548","name":"WorryFree Wi-Fi","description":"","documentationLinks":[]},"1327:218":{"key":"737e6fa2fdfea23be063a19dcd0079cea879adbd","name":"Workstation Connect","description":"","documentationLinks":[]},"1327:241":{"key":"d6824832dd615e9a10cddcaf28b6a4c0dc6cbd60","name":"OEM Config","description":"","documentationLinks":[]},"1327:256":{"key":"1ac009970d754b3c737a53b6996879b083571ca2","name":"GMS Restricted Mode","description":"","documentationLinks":[]},"1327:271":{"key":"85842a1d05987316ec2a91199ab4ecd8c6746836","name":"Zero Touch","description":"","documentationLinks":[]},"1327:284":{"key":"d567c8b1b0cd0183c57e8afcf4b86158c5978005","name":"Smart TEK","description":"","documentationLinks":[]},"1327:317":{"key":"5b0018b335d85a73c564e03c3631c725d66d7f72","name":"OCR","description":"","documentationLinks":[]},"1327:338":{"key":"0939ae271428c3c19ecce31d8b158dda18d4e51b","name":"Smart TE","description":"","documentationLinks":[]},"1327:345":{"key":"73280896599d0125f3df190f7966d2561a0d0937","name":"Smart TE Lite","description":"","documentationLinks":[]},"1327:376":{"key":"c5dcb75e6cc0ccc1d2c5b3aca2ee81e532b4b970","name":"PRZM","description":"","documentationLinks":[]},"1327:403":{"key":"fdfc455f2955e2f4381ac792c59137289556cac2","name":"Multi Code Data Formatting","description":"","documentationLinks":[]},"1327:410":{"key":"9e09e39195a0b64458e2e91e61b15bd4c5a26278","name":"Remote Management","description":"","documentationLinks":[]},"1327:417":{"key":"3c7d3578a5900a50d9429a7c77a400c2d77a5d6f","name":"Preferred Symbol","description":"","documentationLinks":[]},"1327:424":{"key":"eb6f998106dc88eb8337031c815ab49f87db8f9e","name":"Wi-Fi Friendly Mode","description":"Bluetooth","documentationLinks":[]},"1327:443":{"key":"99f6e0c14701a750e74740a2827e03145d4ffce8","name":"Intelligent Document Capture","description":"","documentationLinks":[]},"1327:470":{"key":"b8f863f07cd1ba6ae16e0610022f3399f36daa52","name":"123Scan","description":"","documentationLinks":[]},"1327:529":{"key":"e8af8d378864c0da3586e579c4c7f3d5c0b6dcd6","name":"Scan To Connect","description":"","documentationLinks":[]},"1327:548":{"key":"b0e47b062dc3af80596f33682be6c7751e4c86aa","name":"Scanner Control Application","description":"","documentationLinks":[]},"1327:565":{"key":"d1f3555489cce24b0ebed9e7201eea601959e7fd","name":"Scan Speed Analytics","description":"","documentationLinks":[]},"1327:572":{"key":"ec8650e006f7dc37ff1e993ce27e93d7ad0023f4","name":"Remote Diagnostics","description":"","documentationLinks":[]},"1327:595":{"key":"7bcea349614d95637e66fddbcaf06b4e28d82a6c","name":"123 RFID","description":"","documentationLinks":[]},"1327:612":{"key":"fc84bd6800a2ce27e57a1c543db823a2373f7b2c","name":"Blood Bag Plus","description":"","documentationLinks":[]},"1327:619":{"key":"d361b920472b59a6c5aaccc635355bef6590fa59","name":"Label Plus","description":"","documentationLinks":[]},"1327:626":{"key":"9cc37a9080b52964bb289b494bf5aac21acc0263","name":"Virtual Tether","description":"","documentationLinks":[]},"1327:633":{"key":"57ec1170fb3193fc25828ea6c7e47277435eb973","name":"Link OS","description":"","documentationLinks":[]},"1327:640":{"key":"4223ad6dd6923de5e67b24653752704ce193fc67","name":"MDM Connectors","description":"","documentationLinks":[]},"1327:647":{"key":"898f55a1df23b3fcc4c14ddd528f330187f8e4d8","name":"Browser Print","description":"","documentationLinks":[]},"1327:660":{"key":"d1abf0f98ee9e45be644b4c06b4e136510835fd9","name":"Cloud Connect","description":"","documentationLinks":[]},"1327:667":{"key":"c060801462bcd862d679571dd5f92e2522f92b6e","name":"Virtual Devices","description":"","documentationLinks":[]},"1327:678":{"key":"9861ffb6d1475b8ff328535ef5a0930073101c66","name":"Enterprise Connectors","description":"","documentationLinks":[]},"1327:685":{"key":"ede69463bd0f227ce2017e9ce7b9437f239b09af","name":"Pairing Solutions","description":"","documentationLinks":[]},"1327:704":{"key":"7a8278746ace27d38a01520a4c99b85dc3f3f1a3","name":"Scan And Pair","description":"","documentationLinks":[]},"1327:729":{"key":"cb269e1ea9c076ae3250e6f73d0853a623046e0b","name":"Zebra Designer","description":"","documentationLinks":[]},"1327:758":{"key":"4eab2fd93528b3de22f4df8b0138a3cfb9a1febe","name":"PDF Direct","description":"Print","documentationLinks":[]},"1327:765":{"key":"a211c9d29afa6fa7a7e5cf0fa31b6efd81009513","name":"Print Station","description":"","documentationLinks":[]},"1327:780":{"key":"f45c8eba47d910cd95254fedda7736162f62ac56","name":"Printer Profile Manager","description":"","documentationLinks":[]},"1327:795":{"key":"6753cb421dd07c37c426c963ac7871720e3b59d5","name":"Zebra Setup Utility","description":"","documentationLinks":[]},"1327:818":{"key":"a137efbd957879ecc966c1dc0a8697dd0a4e6f33","name":"Bluetooth Management","description":"","documentationLinks":[]},"1327:825":{"key":"a555f9fb40298e035c402ccae06df3aa14c57433","name":"Zebra OneCare","description":"","documentationLinks":[]},"1327:832":{"key":"9d26c7dbda99cae2466479d2d917dc2f6db1f338","name":"Visibility Services","description":"","documentationLinks":[]},"1327:843":{"key":"992562e87360944835a797ca34c253cc7a203c59","name":"Print Secure","description":"","documentationLinks":[]},"1327:858":{"key":"bce454710c9baf25cac336be25a63caed030a5cf","name":"Design Tools","description":"","documentationLinks":[]}} \ No newline at end of file diff --git a/test/data/constants.ts b/test/data/constants.ts index ddd43e39..d9c03e60 100644 --- a/test/data/constants.ts +++ b/test/data/constants.ts @@ -11,3 +11,5 @@ export const zdsIntegrationOutputDir = `${baseDir}/zds`; export const testFontName = "test-zeta-icons"; export const testFileId = "oIiGXVNKX4KjppcGxOEbZa"; + +export const testIconPageName = "Icons"; diff --git a/test/data/documentResponse.json b/test/data/documentResponse.json new file mode 100644 index 00000000..a344b0a8 --- /dev/null +++ b/test/data/documentResponse.json @@ -0,0 +1 @@ +{"document":{"id":"0:0","name":"Document","type":"DOCUMENT","scrollBehavior":"SCROLLS","children":[{"id":"156:1674","name":"Icons","type":"CANVAS","scrollBehavior":"SCROLLS","children":[{"id":"176:5659","name":"Content","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5660","name":"Content","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-161,"y":-352,"width":88,"height":32},"absoluteRenderBounds":{"x":-159.67999267578125,"y":-344.0400085449219,"width":85.08937072753906,"height":17.3280029296875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"exportSettings":[],"effects":[],"characters":"Content","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"176:5661","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-161,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":-161,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"exportSettings":[],"effects":[]},{"id":"176:5662","name":"Add","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5663","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5664","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5665","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-132,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-132,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5666","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5667","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5668","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-92,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-92,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-161,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5669","name":"Sort","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5670","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5671","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5672","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1144.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1144.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5673","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5674","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5675","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1184.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1184.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1119,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5676","name":"Content","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5677","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","rotation":-1.224648970167536e-16,"blendMode":"PASS_THROUGH","children":[{"id":"176:5678","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5679","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":1.224648970167536e-16,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":665,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":665,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5680","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5681","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5682","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":705,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":705,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5683","name":"Copy File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5684","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5685","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5686","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":345,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":345,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5687","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5688","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5689","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":385,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":385,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5690","name":"Remove Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5691","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5692","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5693","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":345,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":345,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5694","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5695","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5696","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":385,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":385,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5697","name":"Add Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5698","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5699","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5700","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5701","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5702","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5703","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5704","name":"Remove Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5705","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5706","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5707","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":665,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":665,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5708","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5709","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5710","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":705,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":705,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5711","name":"Block","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5712","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5713","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5714","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5715","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5716","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5717","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5718","name":"Add Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5719","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5720","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5721","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":505,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":505,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5722","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5723","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5724","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":545,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":545,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5725","name":"Remove","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5726","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5727","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5728","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":28,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":28,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5729","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5730","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5731","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":68,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":68,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5732","name":"Android","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5733","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5734","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5735","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":506,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":506,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5736","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5737","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5738","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":546,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":546,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5739","name":"Add Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5740","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5741","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5742","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5743","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5744","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5745","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":866,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5746","name":"Remove Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5747","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5748","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5749","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":986,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":986,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5750","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5751","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5752","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1026,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":1026,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":959,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5753","name":"Push Pin","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5754","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5755","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5756","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":28,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":28,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5757","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5758","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5759","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":68,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":68,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5760","name":"Send","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5761","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5762","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5763","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":-91.48487854003906,"width":19.457500457763672,"height":16.96976089477539},"absoluteRenderBounds":{"x":185,"y":-91.48487854003906,"width":19.457504272460938,"height":16.969757080078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5764","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5765","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5766","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":-92,"width":21,"height":18},"absoluteRenderBounds":{"x":225,"y":-92,"width":21,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5767","name":"Backspace","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5768","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5769","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5770","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343.2049865722656,"y":-92,"width":23.795000076293945,"height":18},"absoluteRenderBounds":{"x":343.2049865722656,"y":-92,"width":23.795013427734375,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5771","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5772","name":"Backspace","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5773","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-92,"width":24,"height":18},"absoluteRenderBounds":{"x":383,"y":-92,"width":24,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5774","name":"Flag","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5775","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5776","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5777","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":508,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":508,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5778","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5779","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5780","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":548,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":548,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5781","name":"Save","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5782","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5783","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5784","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":666,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":666,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5785","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5786","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5787","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":706,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":706,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5788","name":"Reply","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5789","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5790","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5791","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592500686645508,"height":13.594012260437012},"absoluteRenderBounds":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592529296875,"height":13.594009399414062},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5792","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5793","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5794","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1026,"y":-90,"width":18,"height":15},"absoluteRenderBounds":{"x":1026,"y":-90,"width":18,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":959,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5795","name":"Redo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5796","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5797","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5798","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1144.9423828125,"y":-87,"width":20.05765724182129,"height":8},"absoluteRenderBounds":{"x":1144.9423828125,"y":-87,"width":20.0576171875,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5799","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5800","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5801","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1184.5400390625,"y":-88,"width":20.459999084472656,"height":9},"absoluteRenderBounds":{"x":1184.5400390625,"y":-88,"width":20.4599609375,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1119,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5802","name":"Save Alt","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5803","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5804","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5805","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5806","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5807","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5808","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":866,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5809","name":"Undo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5810","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5811","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5812","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1305,"y":-87,"width":20.067657470703125,"height":8},"absoluteRenderBounds":{"x":1305,"y":-87,"width":20.067626953125,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1303,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5813","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5814","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5815","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1345,"y":-88,"width":20.469999313354492,"height":9},"absoluteRenderBounds":{"x":1345,"y":-88,"width":20.469970703125,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1279,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1279,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5816","name":"Chart Pie","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5817","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5818","name":"Rectangle 1756","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5819","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":862,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":862,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":860,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5820","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5821","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":826,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":824,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":824,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:5822","name":"Email","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5823","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5824","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5825","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-135,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-135,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5826","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5827","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5828","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-95,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-95,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-161,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:5829","name":"Email Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5830","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5831","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5832","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":25,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":25,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5833","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5834","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5835","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":65,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":65,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-257,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-257,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"exportSettings":[],"effects":[]},{"id":"176:5836","name":"Hard ware","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5837","name":"Hardware","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2105,"y":-352,"width":109,"height":32},"absoluteRenderBounds":{"x":-2102.93603515625,"y":-344.760009765625,"width":104.982421875,"height":18.048004150390625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"exportSettings":[],"effects":[],"characters":"Hardware","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"176:5838","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2105,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":-2105,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"exportSettings":[],"effects":[]},{"id":"176:5839","name":"Scanner","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5840","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5841","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5842","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-1119,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5843","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5844","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5845","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-1079,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5846","name":"Printer","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5847","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5848","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5849","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":-93,"width":20,"height":18},"absoluteRenderBounds":{"x":-959,"y":-93,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5850","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5851","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5852","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":-93,"width":20,"height":18},"absoluteRenderBounds":{"x":-919,"y":-93,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5853","name":"Cast","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5854","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5855","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5856","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2080,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-2080,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5857","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5858","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5859","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2040,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-2040,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5860","name":"Cast Connected","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5861","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5862","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5863","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1920,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-1920,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5864","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5865","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5866","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1880,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-1880,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5867","name":"Desktop","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5868","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5869","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-638,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5870","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-637,"y":-214,"width":22,"height":20},"absoluteRenderBounds":{"x":-637,"y":-214,"width":22,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-638,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-638,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5871","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5872","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-598,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5873","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-597,"y":-214,"width":22,"height":20},"absoluteRenderBounds":{"x":-597,"y":-214,"width":22,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-598,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-598,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-662,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-662,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5874","name":"Devices Ecosystem","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5875","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5876","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5877","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2080,"y":-92,"width":22,"height":16},"absoluteRenderBounds":{"x":-2080,"y":-92,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5878","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5879","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5880","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2040,"y":-92,"width":22,"height":16},"absoluteRenderBounds":{"x":-2040,"y":-92,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5881","name":"Device Settings","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5882","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5883","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5884","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1917.81494140625,"y":-95,"width":17.81491470336914,"height":22},"absoluteRenderBounds":{"x":-1917.81494140625,"y":-95,"width":17.81494140625,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5885","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5886","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5887","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1877.97021484375,"y":-95,"width":17.969999313354492,"height":22},"absoluteRenderBounds":{"x":-1877.97021484375,"y":-95,"width":17.969970703125,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5888","name":"Headphones","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5889","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5890","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5891","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1758,"y":27,"width":18,"height":18},"absoluteRenderBounds":{"x":-1758,"y":27,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5892","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5893","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5894","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1718,"y":27,"width":18,"height":18},"absoluteRenderBounds":{"x":-1718,"y":27,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5895","name":"Keyboard","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5896","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5897","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5898","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":-91,"width":20,"height":14},"absoluteRenderBounds":{"x":-1599,"y":-91,"width":20,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5899","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5900","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5901","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":-91,"width":20,"height":14},"absoluteRenderBounds":{"x":-1559,"y":-91,"width":20,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5902","name":"Laptop","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5903","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5904","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5905","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1601,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5906","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5907","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5908","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1561,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5909","name":"Memory","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5910","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5911","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5912","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1758,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":-1758,"y":-93,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5913","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5914","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5915","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1718,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":-1718,"y":-93,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5916","name":"Monitor","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5917","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5918","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5919","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":-213,"width":19.990081787109375,"height":18},"absoluteRenderBounds":{"x":-799,"y":-213,"width":19.9901123046875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5920","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5921","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5922","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":-213,"width":20,"height":18},"absoluteRenderBounds":{"x":-759,"y":-213,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5923","name":"Phone Android","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5924","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5925","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5926","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2076,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-2076,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5927","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5928","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5929","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2036,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-2036,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5930","name":"Phone iPhone","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5931","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5932","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5933","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1916,"y":-215,"width":13,"height":22},"absoluteRenderBounds":{"x":-1916,"y":-215,"width":13,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5934","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5935","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5936","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1876,"y":-215,"width":13,"height":22},"absoluteRenderBounds":{"x":-1876,"y":-215,"width":13,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5937","name":"Phonelink","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5938","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5939","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5940","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1441,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5941","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5942","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5943","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1401,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5944","name":"Security","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5945","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5946","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5947","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-638,"y":-94.8125,"width":18,"height":21.8125},"absoluteRenderBounds":{"x":-638,"y":-94.8125,"width":18,"height":21.8125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5948","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5949","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5950","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-598,"y":-95,"width":18,"height":22},"absoluteRenderBounds":{"x":-598,"y":-95,"width":18,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5951","name":"Video Play","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5952","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5953","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5954","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-799,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5955","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5956","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5957","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-759,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5958","name":"Smart Phone","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5959","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5960","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5961","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1756,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-1756,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5962","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5963","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5964","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1716,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-1716,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5965","name":"Speaker","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5966","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5967","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5968","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1276,"y":-94,"width":14,"height":20},"absoluteRenderBounds":{"x":-1276,"y":-94,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5969","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5970","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5971","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1236,"y":-94,"width":14,"height":19.989999771118164},"absoluteRenderBounds":{"x":-1236,"y":-94,"width":14,"height":19.98999786376953},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5972","name":"Tablet","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5973","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5974","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5975","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1280,"y":-212,"width":22,"height":16},"absoluteRenderBounds":{"x":-1280,"y":-212,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5976","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5977","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5978","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1240,"y":-212,"width":22,"height":16},"absoluteRenderBounds":{"x":-1240,"y":-212,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5979","name":"Tablet Mac","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5980","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5981","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5982","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":-216,"width":19,"height":24},"absoluteRenderBounds":{"x":-1119,"y":-216,"width":19,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5983","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5984","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5985","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":-216,"width":19,"height":24},"absoluteRenderBounds":{"x":-1079,"y":-216,"width":19,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5986","name":"TV","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5987","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5988","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5989","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-960,"y":-213,"width":22,"height":18},"absoluteRenderBounds":{"x":-960,"y":-213,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5990","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5991","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5992","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-920,"y":-213,"width":22,"height":18},"absoluteRenderBounds":{"x":-920,"y":-213,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5993","name":"Watch","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5994","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5995","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5996","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1437,"y":-96,"width":16,"height":24},"absoluteRenderBounds":{"x":-1437,"y":-96,"width":16,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5997","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5998","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5999","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1397,"y":-96,"width":16,"height":24},"absoluteRenderBounds":{"x":-1397,"y":-96,"width":16,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]}],"absoluteBoundingBox":{"x":-2201,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-2201,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"exportSettings":[],"effects":[]},{"id":"176:6000","name":"File","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6001","name":"File","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1840,"y":-352,"width":41,"height":32},"absoluteRenderBounds":{"x":1842.06396484375,"y":-344.8559875488281,"width":37.130859375,"height":18.14398193359375},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"exportSettings":[],"effects":[],"characters":"File","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"176:6002","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1840,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":1840,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"exportSettings":[],"effects":[]},{"id":"176:6003","name":"Finished Download","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6004","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6005","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6006","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1864,"y":-211.43499755859375,"width":14,"height":15.4350004196167},"absoluteRenderBounds":{"x":1864,"y":-211.43499755859375,"width":14,"height":15.43499755859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":1859,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6007","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6008","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1899,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6009","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1904,"y":-212,"width":14,"height":16},"absoluteRenderBounds":{"x":1904,"y":-212,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1899,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":1899,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1835,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":1835,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6010","name":"Downloading","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6011","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6012","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6013","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2021,"y":-213.7744140625,"width":19.77721405029297,"height":19.558454513549805},"absoluteRenderBounds":{"x":2021,"y":-213.7744140625,"width":19.7772216796875,"height":19.558456420898438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2019,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6014","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6015","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2059,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6016","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2061,"y":-213.9499969482422,"width":19.950000762939453,"height":19.900001525878906},"absoluteRenderBounds":{"x":2061,"y":-213.9499969482422,"width":19.949951171875,"height":19.900009155273438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2059,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2059,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1995,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":1995,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6017","name":"Cloud","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6018","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6019","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2179,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6020","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2179,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2179,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2179,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2179,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6021","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6022","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2219,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6023","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2219,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2219,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2219,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2219,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2155,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2155,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6024","name":"Cloud Done","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6025","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6026","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2499,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6027","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2499,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2499,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2499,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2499,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6028","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6029","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2539,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6030","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2539,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2539,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2539,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2539,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2475,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2475,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6031","name":"Cloud Download","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6032","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6033","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2659,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6034","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2659,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2659,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2659,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2659,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6035","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6036","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2699,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6037","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2699,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2699,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2699,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2699,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2635,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2635,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6038","name":"Cloud Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6039","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6040","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2339,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6041","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2339,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2339,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2339,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2339,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6042","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6043","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2379,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6044","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2379,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2379,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2379,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2379,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2315,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2315,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6045","name":"Cloud Upload","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6046","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6047","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2819,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6048","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2819,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2819,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2819,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2819,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6049","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6050","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6051","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2859,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2859,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2859,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2795,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2795,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6052","name":"Cloud Off","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6053","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6054","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2979,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6055","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2979.002685546875,"y":-212,"width":23.997297286987305,"height":17.582500457763672},"absoluteRenderBounds":{"x":2979.002685546875,"y":-212,"width":23.997314453125,"height":17.582504272460938},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2979,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2979,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6056","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6057","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6058","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3019,"y":-212.13999938964844,"width":24,"height":18.139999389648438},"absoluteRenderBounds":{"x":3019,"y":-212.13999938964844,"width":24,"height":18.139999389648438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":3019,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2955,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2955,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6059","name":"Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6060","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6061","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6062","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1866,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":1866,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":1864,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6063","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6064","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1904,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6065","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1906,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":1906,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1904,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":1904,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1840,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":1840,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6066","name":"Create New Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6067","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6068","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6069","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2186,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2186,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2184,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6070","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6071","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2224,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6072","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2226,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2226,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2224,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2224,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2160,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2160,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6073","name":"Folder Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6074","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6075","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6076","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2026,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2026,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2024,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6077","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6078","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2064,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6079","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2066,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2066,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2064,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2064,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2000,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2000,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6080","name":"Shared Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6081","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6082","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6083","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2346,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2346,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2344,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6084","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6085","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2384,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6086","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2386,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2386,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2384,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2384,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2320,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2320,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6087","name":"Grid View","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6088","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6089","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2504,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6090","name":"Vector","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"176:6091","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2507,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6092","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2507,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6093","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2517,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6094","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2517,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2507,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":2507,"y":-93,"width":18,"height":18},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2504,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2504,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6095","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6096","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2544,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6097","name":"Vector","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"176:6098","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2547,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6099","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2547,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6100","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2557,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6101","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2557,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2547,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":2547,"y":-93,"width":18,"height":18},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2544,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2544,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2480,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2480,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6102","name":"Upload File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6103","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6104","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2664,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6105","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2668,"y":-94,"width":16,"height":20},"absoluteRenderBounds":{"x":2668,"y":-94,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2664,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2664,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6106","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6107","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2704,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6108","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2708,"y":-94,"width":16,"height":20},"absoluteRenderBounds":{"x":2708,"y":-94,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2704,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2704,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2640,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2640,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6109","name":"JPG Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6110","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6111","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2824,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6112","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2825,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2825,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6113","name":"JPG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2827.5859375,"y":-84.0999984741211,"width":16.662187576293945,"height":7.220000267028809},"absoluteRenderBounds":{"x":2827.5859375,"y":-84.0999984741211,"width":16.662109375,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2824,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2824,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6114","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6115","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6116","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2865,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6117","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2867,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2865,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2865,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6118","name":"JPG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2867.5859375,"y":-84.0999984741211,"width":16.662187576293945,"height":7.220000267028809},"absoluteRenderBounds":{"x":2867.5859375,"y":-84.0999984741211,"width":16.662109375,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2864,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2800,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2800,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6119","name":"PDF Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6120","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6121","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3144,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6122","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3145,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3145,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6123","name":"PDF","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3147.9658203125,"y":-83.9800033569336,"width":16.262189865112305,"height":6.980000019073486},"absoluteRenderBounds":{"x":3147.9658203125,"y":-83.9800033569336,"width":16.26220703125,"height":6.980003356933594},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3144,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3144,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6124","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6125","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6126","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3185,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6127","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3187,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3185,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3185,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6128","name":"PDF","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3187.9658203125,"y":-83.9800033569336,"width":16.262189865112305,"height":6.980000019073486},"absoluteRenderBounds":{"x":3187.9658203125,"y":-83.9800033569336,"width":16.26220703125,"height":6.980003356933594},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3184,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3120,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":3120,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6129","name":"PNG Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6130","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6131","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2984,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6132","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2985,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2985,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6133","name":"PNG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2987.9658203125,"y":-84.0999984741211,"width":16.282188415527344,"height":7.220000267028809},"absoluteRenderBounds":{"x":2987.9658203125,"y":-84.0999984741211,"width":16.2822265625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2984,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2984,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6134","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6135","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6136","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3025,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6137","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3027,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3025,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3025,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6138","name":"PNG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3027.9658203125,"y":-84.0999984741211,"width":16.282188415527344,"height":7.220000267028809},"absoluteRenderBounds":{"x":3027.9658203125,"y":-84.0999984741211,"width":16.2822265625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3024,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2960,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2960,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6139","name":"DOC Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6140","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6141","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3304,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6142","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3305,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3305,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6143","name":"DOC","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3307.845947265625,"y":-84.0999984741211,"width":16.58218765258789,"height":7.220000267028809},"absoluteRenderBounds":{"x":3307.845947265625,"y":-84.0999984741211,"width":16.582275390625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3304,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3304,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6144","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6145","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6146","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3345,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6147","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3347,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3345,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3345,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6148","name":"DOC","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3347.845947265625,"y":-84.0999984741211,"width":16.58218765258789,"height":7.220000267028809},"absoluteRenderBounds":{"x":3347.845947265625,"y":-84.0999984741211,"width":16.582275390625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3344,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3280,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":3280,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6149","name":"PPT Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6150","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6151","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3304,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6152","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3305,"y":-214,"width":22,"height":22},"absoluteRenderBounds":{"x":3305,"y":-214,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6153","name":"PPT","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3307.9658203125,"y":-202.97999572753906,"width":16.59218978881836,"height":6.980000019073486},"absoluteRenderBounds":{"x":3307.9658203125,"y":-202.97999572753906,"width":16.59228515625,"height":6.9799957275390625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3304,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":3304,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6154","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6155","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6156","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3345,"y":-214,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6157","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3347,"y":-212,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3345,"y":-214,"width":22,"height":22},"absoluteRenderBounds":{"x":3345,"y":-214,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6158","name":"PPT","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3347.9658203125,"y":-202.97999572753906,"width":16.59218978881836,"height":6.980000019073486},"absoluteRenderBounds":{"x":3347.9658203125,"y":-202.97999572753906,"width":16.59228515625,"height":6.9799957275390625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3344,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":3344,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3280,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":3280,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6159","name":"Open New Off","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6160","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6161","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1861.389892578125,"y":142.81005859375,"width":19.790000915527344,"height":19.80000114440918},"absoluteRenderBounds":{"x":1861.8028564453125,"y":143.00006103515625,"width":19.197021484375,"height":19.192001342773438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1860,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":1860,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6162","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6163","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1905.389892578125,"y":142.81005859375,"width":19.790000915527344,"height":19.80000114440918},"absoluteRenderBounds":{"x":1905.8028564453125,"y":143.00006103515625,"width":19.197021484375,"height":19.192001342773438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1904,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":1904,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1840,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":1840,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6164","name":"Page Height","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6165","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6166","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2024,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2024,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2021,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2021,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6167","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6168","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2068,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2068,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2065,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2065,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2001,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2001,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6169","name":"Page Width","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6170","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6171","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2185,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2185,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2182,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2182,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6172","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6173","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2229,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2229,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2226,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2226,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2162,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2162,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6174","name":"Page Rotate","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6175","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6176","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2344,"y":141,"width":21,"height":21},"absoluteRenderBounds":{"x":2344.414306640625,"y":141.3221893310547,"width":20.585693359375,"height":20.677810668945312},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":0.02500000037252903,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2343,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2343,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6177","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6178","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2388,"y":141,"width":21,"height":21},"absoluteRenderBounds":{"x":2388.414306640625,"y":141.3221893310547,"width":20.585693359375,"height":20.677810668945312},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":0.02500000037252903,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2387,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2387,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2323,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":2323,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6179","name":"Save","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6180","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6181","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2507,"y":143,"width":18,"height":18},"absoluteRenderBounds":{"x":2507,"y":143,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2504,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2504,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6182","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6183","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2551,"y":143,"width":18,"height":18},"absoluteRenderBounds":{"x":2551,"y":143,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2548,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2548,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2484,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":2484,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6184","name":"Publish","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6185","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6186","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2670,"y":147,"width":14,"height":16},"absoluteRenderBounds":{"x":2670,"y":147,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2665,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2665,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6187","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6188","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2714,"y":147,"width":14,"height":16},"absoluteRenderBounds":{"x":2714,"y":147,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2709,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2709,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2645,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":2645,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6189","name":"File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6190","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6191","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2830,"y":143,"width":16,"height":20},"absoluteRenderBounds":{"x":2830,"y":143,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2826,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2826,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6192","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6193","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2874,"y":143,"width":16,"height":20},"absoluteRenderBounds":{"x":2874,"y":143,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2870,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2870,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2806,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2806,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6194","name":"Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6195","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6196","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2989,"y":147,"width":20,"height":15.294116973876953},"absoluteRenderBounds":{"x":2989,"y":147,"width":20,"height":15.294113159179688},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2987,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2987,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6197","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6198","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3033,"y":147,"width":20,"height":15.294116973876953},"absoluteRenderBounds":{"x":3033,"y":147,"width":20,"height":15.294113159179688},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3031,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3031,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2967,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":2967,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6199","name":"Maintenance","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6200","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6201","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3150,"y":146,"width":19.800125122070312,"height":18.555572509765625},"absoluteRenderBounds":{"x":3150.103515625,"y":146,"width":19.0751953125,"height":17.93426513671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null,"4":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":3148,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3148,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6202","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6203","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3194,"y":146,"width":19.800125122070312,"height":18.555572509765625},"absoluteRenderBounds":{"x":3194.103515625,"y":146,"width":19.0751953125,"height":17.93426513671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null,"4":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":3192,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3192,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3128,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":3128,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1744,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":1744,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"exportSettings":[],"effects":[]},{"id":"1327:2","name":"DNA","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:3","name":"DNA","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2105,"y":1076,"width":50,"height":32},"absoluteRenderBounds":{"x":-2102.93603515625,"y":1084.248046875,"width":46.811767578125,"height":16.751953125},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"exportSettings":[],"effects":[],"characters":"DNA","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":400,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"1327:4","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2105,"y":1123,"width":1552,"height":1},"absoluteRenderBounds":{"x":-2105,"y":1123,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"exportSettings":[],"effects":[]},{"id":"1327:5","name":"Life Guard","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:6","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:7","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:8","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:9","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2067.9609375,"y":1219.8277587890625,"width":0.5835938453674316,"height":0.5835935473442078},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:10","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2078,"y":1214,"width":17.5,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:11","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2071.124267578125,"y":1219.8284912109375,"width":0.5835942625999451,"height":0.5835936665534973},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2078,"y":1214,"width":17.5,"height":20},"absoluteRenderBounds":{"x":-2078,"y":1214,"width":17.5,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:12","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:13","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:14","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:15","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2027.9609375,"y":1219.8277587890625,"width":0.5835938453674316,"height":0.5835935473442078},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:16","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2038,"y":1214,"width":17.5,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:17","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2031.124267578125,"y":1219.8284912109375,"width":0.5835942625999451,"height":0.5835936665534973},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2038,"y":1214,"width":17.5,"height":20},"absoluteRenderBounds":{"x":-2038,"y":1214,"width":17.5,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:18","name":"Mobility DNA","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:19","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:20","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:21","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1914,"y":1214,"width":10,"height":20},"absoluteRenderBounds":{"x":-1914,"y":1214,"width":10,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:22","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:23","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:24","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1874,"y":1214,"width":10,"height":20},"absoluteRenderBounds":{"x":-1874,"y":1214,"width":10,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:25","name":"TekSpeech Pro","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:26","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:27","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:28","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1759,"y":1215,"width":20,"height":18},"absoluteRenderBounds":{"x":-1759,"y":1215,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:29","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:30","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:31","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1719,"y":1215,"width":20,"height":18},"absoluteRenderBounds":{"x":-1719,"y":1215,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:32","name":"Enterprise Browser","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:33","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:34","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:35","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-1599,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:36","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:37","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:38","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-1559,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:39","name":"AppGallery","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:40","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:41","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:42","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1216,"width":20,"height":16},"absoluteRenderBounds":{"x":-1439,"y":1216,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:43","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:44","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:45","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1216,"width":20,"height":16},"absoluteRenderBounds":{"x":-1399,"y":1216,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:46","name":"Workforce Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:47","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:48","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:49","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1279,"y":1215,"width":20,"height":18},"absoluteRenderBounds":{"x":-1279,"y":1215,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:50","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:51","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:52","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1239,"y":1215,"width":20,"height":18},"absoluteRenderBounds":{"x":-1239,"y":1215,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:53","name":"SimulScan","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:54","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:55","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:56","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-1119,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:57","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:58","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:59","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-1079,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:60","name":"Power Precision","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:61","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:62","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:63","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:64","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:65","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:66","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:67","name":"Power Precision +","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:68","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:69","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:70","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-799,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:71","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:72","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:73","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-759,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:74","name":"Mobility Security","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:75","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:76","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:77","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-639,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1214,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:78","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:79","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:80","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-599,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1214,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:81","name":"StageNow","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:82","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:83","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:84","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:85","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2074.714111328125,"y":1574,"width":10.623966217041016,"height":4.935070514678955},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:86","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2074.714111328125,"y":1589.0653076171875,"width":10.623966217041016,"height":4.9346699714660645},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:87","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2076,"y":1577.1231689453125,"width":13.195594787597656,"height":13.748662948608398},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2076,"y":1574,"width":13.195594787597656,"height":20},"absoluteRenderBounds":{"x":-2076,"y":1574,"width":13.195556640625,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:88","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:89","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:90","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:91","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2034.7142333984375,"y":1574,"width":10.623966217041016,"height":4.935070514678955},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:92","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2034.7142333984375,"y":1589.0653076171875,"width":10.623966217041016,"height":4.9346699714660645},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:93","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2036,"y":1577.1231689453125,"width":13.195594787597656,"height":13.748662948608398},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2036,"y":1574,"width":13.195594787597656,"height":20},"absoluteRenderBounds":{"x":-2036,"y":1574,"width":13.195556640625,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:94","name":"EMDK","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:95","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:96","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:97","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1919,"y":1574,"width":19.99530601501465,"height":20},"absoluteRenderBounds":{"x":-1919,"y":1574,"width":19.995361328125,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:98","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:99","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:100","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1879,"y":1574,"width":19.99530601501465,"height":20},"absoluteRenderBounds":{"x":-1879,"y":1574,"width":19.995361328125,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:101","name":"Enterprise Keyboard","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:102","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:103","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:104","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1759,"y":1574,"width":20,"height":20.001182556152344},"absoluteRenderBounds":{"x":-1759,"y":1574,"width":20,"height":20.001220703125},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:105","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:106","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:107","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1719,"y":1574,"width":20,"height":20.001182556152344},"absoluteRenderBounds":{"x":-1719,"y":1574,"width":20,"height":20.001220703125},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:108","name":"MDM Toolkit","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:109","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:110","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:111","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1595,"y":1574,"width":11.249994277954102,"height":20},"absoluteRenderBounds":{"x":-1595,"y":1574,"width":11.25,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:112","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:113","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:114","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1555,"y":1574,"width":11.249994277954102,"height":20},"absoluteRenderBounds":{"x":-1555,"y":1574,"width":11.25,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:115","name":"MX","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:116","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:117","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:118","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1574,"width":19.99904441833496,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1574,"width":19.9990234375,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:119","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:120","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:121","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1574,"width":19.99904441833496,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1574,"width":19.9990234375,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:122","name":"RX","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:123","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:124","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:125","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1276,"y":1574,"width":14.58672046661377,"height":20},"absoluteRenderBounds":{"x":-1276,"y":1574,"width":14.586669921875,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:126","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:127","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:128","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1236,"y":1574,"width":14.58672046661377,"height":20},"absoluteRenderBounds":{"x":-1236,"y":1574,"width":14.586669921875,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:129","name":"Setting Tool","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:130","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:131","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:132","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1574,"width":19.19721031188965,"height":20},"absoluteRenderBounds":{"x":-1119,"y":1574,"width":19.197265625,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:133","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:134","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:135","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1574,"width":19.19721031188965,"height":20},"absoluteRenderBounds":{"x":-1079,"y":1574,"width":19.197265625,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:136","name":"Data Wedge","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:137","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:138","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:139","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[{"suffix":"","format":"PNG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"1327:140","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:141","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:142","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:143","name":"Application Analytics","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:144","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:145","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:146","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2079,"y":1815,"width":20,"height":18},"absoluteRenderBounds":{"x":-2079,"y":1815,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:147","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:148","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:149","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2039,"y":1815,"width":20,"height":18},"absoluteRenderBounds":{"x":-2039,"y":1815,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:150","name":"Swipe Assist","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:151","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:152","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:153","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1915,"y":1814,"width":12,"height":20},"absoluteRenderBounds":{"x":-1915,"y":1814,"width":12,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:154","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:155","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:156","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1875,"y":1814,"width":12,"height":20},"absoluteRenderBounds":{"x":-1875,"y":1814,"width":12,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:157","name":"SmartDEX","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:158","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:159","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:160","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1759,"y":1820,"width":20,"height":9},"absoluteRenderBounds":{"x":-1759,"y":1820,"width":20,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:161","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:162","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:163","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1719,"y":1820,"width":20,"height":9},"absoluteRenderBounds":{"x":-1719,"y":1820,"width":20,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:164","name":"Direct Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:165","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:166","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:167","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1599,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:168","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:169","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:170","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1559,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:171","name":"Remote Control","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:172","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:173","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:174","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:175","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:176","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:177","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:178","name":"Asset Tracker Lite","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:179","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:180","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:181","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1279,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1279,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:182","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:183","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:184","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1239,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1239,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:185","name":"Voice Wedge","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:186","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:187","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:188","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:189","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1110.25,"y":1814,"width":7.500085830688477,"height":13.125149726867676},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:190","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1114,"y":1823.375,"width":15.000171661376953,"height":10.625121116638184},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:191","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1814,"width":9.687610626220703,"height":20.000226974487305},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:192","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1103.6875,"y":1831.379150390625,"width":4.687553405761719,"height":2.6203453540802},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1119,"y":1814,"width":20.000171661376953,"height":20.000226974487305},"absoluteRenderBounds":{"x":-1119,"y":1814,"width":20.0001220703125,"height":20.000244140625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:193","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:194","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:195","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:196","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1070.25,"y":1814,"width":7.500085830688477,"height":13.125149726867676},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:197","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1074,"y":1823.375,"width":15.000171661376953,"height":10.625121116638184},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:198","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1814,"width":9.687610626220703,"height":20.000226974487305},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:199","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1063.6875,"y":1831.379150390625,"width":4.687553405761719,"height":2.6203453540802},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1079,"y":1814,"width":20.000171661376953,"height":20.000226974487305},"absoluteRenderBounds":{"x":-1079,"y":1814,"width":20.0001220703125,"height":20.000244140625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:200","name":"Device Tracker","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:201","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:202","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:203","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:204","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-952.75,"y":1819,"width":7.5,"height":10},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:205","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-954,"y":1814,"width":10,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-954,"y":1814,"width":10,"height":20},"absoluteRenderBounds":{"x":-954,"y":1814,"width":10,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:206","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:207","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:208","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:209","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-912.75,"y":1819,"width":7.5,"height":10},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:210","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-914,"y":1814,"width":10,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-914,"y":1814,"width":10,"height":20},"absoluteRenderBounds":{"x":-914,"y":1814,"width":10,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:211","name":"WorryFree Wi-Fi","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:212","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:213","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:214","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-798,"y":1814,"width":18,"height":20},"absoluteRenderBounds":{"x":-798,"y":1814,"width":18,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:215","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:216","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:217","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-758,"y":1814,"width":18,"height":20},"absoluteRenderBounds":{"x":-758,"y":1814,"width":18,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:218","name":"Workstation Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:219","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:220","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:221","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:222","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":1455,"width":20,"height":18.000978469848633},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:223","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-947.5438232421875,"y":1462.13623046875,"width":0.7042980790138245,"height":2.0504252910614014},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:224","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-952.185302734375,"y":1457.57275390625,"width":4.245309352874756,"height":8.236653327941895},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:225","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-948.9564208984375,"y":1460.68212890625,"width":0.7074213624000549,"height":3.499340772628784},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:226","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-948.2491455078125,"y":1461.4111328125,"width":1.7128945589065552,"height":0.7240580320358276},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:227","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-953.480224609375,"y":1458.89794921875,"width":2.414055109024048,"height":4.7811079025268555},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:228","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-953.467041015625,"y":1462.189453125,"width":4.5148420333862305,"height":5.668302059173584},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:229","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-946.83740234375,"y":1463.27099609375,"width":2.3175811767578125,"height":2.109489679336548},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-959,"y":1455,"width":20,"height":18.000978469848633},"absoluteRenderBounds":{"x":-959,"y":1455,"width":20,"height":18.0009765625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:230","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:231","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:232","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":1455,"width":20,"height":18.000978469848633},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:233","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-907.5438232421875,"y":1462.13623046875,"width":0.7042980790138245,"height":2.0504252910614014},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:234","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-912.185302734375,"y":1457.57275390625,"width":4.245309352874756,"height":8.236653327941895},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:235","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-908.9564208984375,"y":1460.68212890625,"width":0.7074213624000549,"height":3.499340772628784},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:236","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-908.2491455078125,"y":1461.4111328125,"width":1.7128945589065552,"height":0.7240580320358276},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:237","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-913.480224609375,"y":1458.89794921875,"width":2.414055109024048,"height":4.7811079025268555},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:238","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-913.467041015625,"y":1462.189453125,"width":4.5148420333862305,"height":5.668302059173584},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:239","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-906.83740234375,"y":1463.27099609375,"width":2.3175811767578125,"height":2.109489679336548},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-919,"y":1455,"width":20,"height":18.000978469848633},"absoluteRenderBounds":{"x":-919,"y":1455,"width":20,"height":18.0009765625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:240","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:241","name":"OEM Config","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:242","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:243","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:244","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:245","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-791.900390625,"y":1463.375,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:246","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-788.150390625,"y":1459.625,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:247","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-790.025390625,"y":1467.125,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:248","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":1454,"width":19.198436737060547,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-799,"y":1454,"width":19.198436737060547,"height":20},"absoluteRenderBounds":{"x":-799,"y":1454,"width":19.19842529296875,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:249","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:250","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:251","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:252","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-751.900390625,"y":1463.375,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:253","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-748.150390625,"y":1459.625,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:254","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-750.025390625,"y":1467.125,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:255","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":1454,"width":19.198436737060547,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-759,"y":1454,"width":19.198436737060547,"height":20},"absoluteRenderBounds":{"x":-759,"y":1454,"width":19.19842529296875,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:256","name":"GMS Restricted Mode","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:257","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:258","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:259","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:260","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-635.250018119812,"y":1454,"width":11.250018119812012,"height":20.000030517578125},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:261","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-630.8754942417145,"y":1459,"width":3.7500059604644775,"height":3.728128671646118},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:262","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-629.7869157791138,"y":1460.875,"width":1.1960954666137695,"height":3.286722183227539},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:263","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-633.3753671646118,"y":1463.74853515625,"width":3.5657968521118164,"height":3.9082300662994385},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-635.25,"y":1454,"width":11.250018119812012,"height":20.000030517578125},"absoluteRenderBounds":{"x":-635.25,"y":1454,"width":11.25,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:264","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:265","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:266","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:267","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-595.250018119812,"y":1454,"width":11.250018119812012,"height":20.000030517578125},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:268","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-590.8754942417145,"y":1459,"width":3.7500059604644775,"height":3.728128671646118},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:269","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-589.7869157791138,"y":1460.875,"width":1.1960954666137695,"height":3.286722183227539},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:270","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-593.3753671646118,"y":1463.74853515625,"width":3.5657968521118164,"height":3.9082300662994385},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-595.25,"y":1454,"width":11.250018119812012,"height":20.000030517578125},"absoluteRenderBounds":{"x":-595.25,"y":1454,"width":11.25,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:271","name":"Zero Touch","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:272","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:273","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:274","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:275","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-795.2500200271606,"y":1574,"width":11.250020027160645,"height":20.000030517578125},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:276","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-793.3750128746033,"y":1580.25,"width":7.5000128746032715,"height":7.500012397766113},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:277","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-791.500006198883,"y":1582.125,"width":3.7500061988830566,"height":3.7500061988830566},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-795.25,"y":1574,"width":11.250020980834961,"height":20.000030517578125},"absoluteRenderBounds":{"x":-795.25,"y":1574,"width":11.25,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:278","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:279","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:280","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:281","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-755.2500200271606,"y":1574,"width":11.250020027160645,"height":20.000030517578125},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:282","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-753.3750128746033,"y":1580.25,"width":7.5000128746032715,"height":7.500012397766113},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:283","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-751.500006198883,"y":1582.125,"width":3.7500061988830566,"height":3.7500061988830566},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-755.25,"y":1574,"width":11.250020980834961,"height":20.000030517578125},"absoluteRenderBounds":{"x":-755.25,"y":1574,"width":11.25,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:284","name":"Smart TEK","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:285","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:286","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:287","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:288","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2072.50048828125,"y":1340.25,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:289","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2071.87548828125,"y":1340.875,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:290","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2071.25048828125,"y":1341.5,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:291","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2070.62548828125,"y":1342.125,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:292","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2070.00048828125,"y":1342.75,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:293","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2068.12548828125,"y":1340.25,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:294","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2067.50048828125,"y":1340.875,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:295","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2066.87548828125,"y":1341.5,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:296","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2067.50048828125,"y":1342.125,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:297","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2068.12548828125,"y":1342.75,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:298","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2073.75,"y":1337.75,"width":8.75001049041748,"height":10.000012397766113},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:299","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2075,"y":1334,"width":11.25001335144043,"height":20.000024795532227},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:300","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2071.251220703125,"y":1345.249755859375,"width":8.751330375671387,"height":8.749228477478027},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2075,"y":1334,"width":12.500110626220703,"height":20.000024795532227},"absoluteRenderBounds":{"x":-2075,"y":1334,"width":12.5,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:301","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:302","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:303","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:304","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2032.50048828125,"y":1340.25,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:305","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2031.87548828125,"y":1340.875,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:306","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2031.25048828125,"y":1341.5,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:307","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2030.62548828125,"y":1342.125,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:308","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2030.00048828125,"y":1342.75,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:309","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2028.12548828125,"y":1340.25,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:310","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2027.50048828125,"y":1340.875,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:311","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2026.87548828125,"y":1341.5,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:312","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2027.50048828125,"y":1342.125,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:313","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2028.12548828125,"y":1342.75,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:314","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2033.75,"y":1337.75,"width":8.75001049041748,"height":10.000012397766113},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:315","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2035,"y":1334,"width":11.25001335144043,"height":20.000024795532227},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:316","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2031.251220703125,"y":1345.249755859375,"width":8.751330375671387,"height":8.749228477478027},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2035,"y":1334,"width":12.500110626220703,"height":20.000024795532227},"absoluteRenderBounds":{"x":-2035,"y":1334,"width":12.5001220703125,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:317","name":"OCR","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:318","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:319","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:320","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:321","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1917.125,"y":1340.874755859375,"width":5,"height":6.25098991394043},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:322","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1919,"y":1334,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:323","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1904,"y":1349,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:324","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1919,"y":1349,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:325","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1904,"y":1334,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:326","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1905.875,"y":1340.875,"width":5,"height":6.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:327","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1911.5,"y":1340.875,"width":5.001170635223389,"height":6.2531232833862305},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1919,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1919,"y":1334,"width":20,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:328","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:329","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:330","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:331","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1877.125,"y":1340.874755859375,"width":5,"height":6.25098991394043},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:332","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1879,"y":1334,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:333","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1864,"y":1349,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:334","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1879,"y":1349,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:335","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1864,"y":1334,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:336","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1865.875,"y":1340.875,"width":5,"height":6.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:337","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1871.5,"y":1340.875,"width":5.001170635223389,"height":6.2531232833862305},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1879,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1879,"y":1334,"width":20,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:338","name":"Smart TE","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:339","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:340","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:341","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1759,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1759,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:342","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:343","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:344","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1719,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1719,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:345","name":"Smart TE Lite","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:346","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:347","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:348","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:349","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1589.625,"y":1337.75,"width":10.624919891357422,"height":13.749894142150879},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:350","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":1334,"width":10.624918937683105,"height":11.874909400939941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:351","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1597.125,"y":1340.25,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:352","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1587.75,"y":1339.625,"width":6.8749470710754395,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:353","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1588.0625,"y":1344.625,"width":7.187746524810791,"height":9.375083923339844},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:354","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1594.625,"y":1335.875,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:355","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1592.75,"y":1340.25,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:356","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1587.75,"y":1343.375,"width":6.874948978424072,"height":3.7499711513519287},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:357","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1598.375,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:358","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1595.875,"y":1348.375,"width":0.624995231628418,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:359","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1594.625,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:360","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1592.125,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1599,"y":1334,"width":19.999919891357422,"height":20.000085830688477},"absoluteRenderBounds":{"x":-1599,"y":1334,"width":19.9998779296875,"height":20.0001220703125},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:361","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:362","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:363","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:364","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1549.625,"y":1337.75,"width":10.624919891357422,"height":13.749894142150879},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:365","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":1334,"width":10.624918937683105,"height":11.874909400939941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:366","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1557.125,"y":1340.25,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:367","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1547.75,"y":1339.625,"width":6.8749470710754395,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:368","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1548.0625,"y":1344.625,"width":7.187746524810791,"height":9.375083923339844},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:369","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1554.625,"y":1335.875,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:370","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1552.75,"y":1340.25,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:371","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1547.75,"y":1343.375,"width":6.874948978424072,"height":3.7499711513519287},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:372","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1558.375,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:373","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1555.875,"y":1348.375,"width":0.624995231628418,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:374","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1554.625,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:375","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1552.125,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1559,"y":1334,"width":19.999919891357422,"height":20.000085830688477},"absoluteRenderBounds":{"x":-1559,"y":1334,"width":19.9998779296875,"height":20.0001220703125},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:376","name":"PRZM","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:377","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:378","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:379","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:380","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1423.009765625,"y":1341.916748046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:381","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1421.177001953125,"y":1338.229248046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:382","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1421.177001953125,"y":1345.604248046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:383","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1423.020751953125,"y":1338.2275390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:384","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1424.864501953125,"y":1338.2275390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:385","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1420.5625,"y":1341.9150390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:386","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1437.770751953125,"y":1337,"width":17.20833396911621,"height":14.75},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:387","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1424.864501953125,"y":1341.9150390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:388","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1338.2275390625,"width":1.84375,"height":10.447916984558105},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:389","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1436.541748046875,"y":1338.2275390625,"width":1.2291666269302368,"height":8.604166984558105},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1439,"y":1337,"width":19.666748046875,"height":14.75},"absoluteRenderBounds":{"x":-1439,"y":1337,"width":19.666748046875,"height":14.75},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:390","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:391","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:392","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:393","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1383.009765625,"y":1341.916748046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:394","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1381.177001953125,"y":1338.229248046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:395","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1381.177001953125,"y":1345.604248046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:396","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1383.020751953125,"y":1338.2275390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:397","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1384.864501953125,"y":1338.2275390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:398","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1380.5625,"y":1341.9150390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:399","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1397.770751953125,"y":1337,"width":17.20833396911621,"height":14.75},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:400","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1384.864501953125,"y":1341.9150390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:401","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1338.2275390625,"width":1.84375,"height":10.447916984558105},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:402","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1396.541748046875,"y":1338.2275390625,"width":1.2291666269302368,"height":8.604166984558105},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1399,"y":1337,"width":19.666748046875,"height":14.75},"absoluteRenderBounds":{"x":-1399,"y":1337,"width":19.666748046875,"height":14.75},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:403","name":"Multi Code Data Formatting","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:404","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:405","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:406","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1279,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1279,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:407","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:408","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:409","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1239,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1239,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:410","name":"Remote Management","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:411","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:412","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:413","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1337,"width":20,"height":15},"absoluteRenderBounds":{"x":-1119,"y":1337,"width":20,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:414","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:415","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:416","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1337,"width":20,"height":15},"absoluteRenderBounds":{"x":-1079,"y":1337,"width":20,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:417","name":"Preferred Symbol","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:418","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:419","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:420","name":"Rectangle 59","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:421","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:422","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:423","name":"Rectangle 59","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:424","name":"Wi-Fi Friendly Mode","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:425","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:426","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:427","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:428","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":1338.062255859375,"width":10.624809265136719,"height":15.937383651733398},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:429","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-789.606689453125,"y":1334,"width":10.606511116027832,"height":2.9037177562713623},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:430","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-788.192626953125,"y":1335.999755859375,"width":7.778423309326172,"height":2.317925453186035},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:431","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-786.7783203125,"y":1338.001220703125,"width":4.949553489685059,"height":1.7324573993682861},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:432","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-785.362548828125,"y":1339.999755859375,"width":2.1214613914489746,"height":1.4999496936798096},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:433","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-787.128662109375,"y":1341.501220703125,"width":6.589376926422119,"height":12.498678207397461},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-799,"y":1334,"width":19.999820709228516,"height":19.99989891052246},"absoluteRenderBounds":{"x":-799,"y":1334,"width":19.99981689453125,"height":19.9998779296875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:434","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:435","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:436","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:437","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":1338.062255859375,"width":10.624809265136719,"height":15.937383651733398},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:438","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-749.606689453125,"y":1334,"width":10.606511116027832,"height":2.9037177562713623},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:439","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-748.192626953125,"y":1335.999755859375,"width":7.778423309326172,"height":2.317925453186035},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:440","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-746.7783203125,"y":1338.001220703125,"width":4.949553489685059,"height":1.7324573993682861},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:441","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-745.362548828125,"y":1339.999755859375,"width":2.1214613914489746,"height":1.4999496936798096},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:442","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-747.128662109375,"y":1341.501220703125,"width":6.589376926422119,"height":12.498678207397461},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-759,"y":1334,"width":19.999820709228516,"height":19.99989891052246},"absoluteRenderBounds":{"x":-759,"y":1334,"width":19.99981689453125,"height":19.9998779296875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:443","name":"Intelligent Document Capture","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:444","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:445","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:446","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:447","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-639,"y":1336,"width":20,"height":17},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:448","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-632.1251220703125,"y":1348.591064453125,"width":4.999998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:449","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-632.1251220703125,"y":1347.331787109375,"width":6.249998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:450","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-632.1251220703125,"y":1346.072509765625,"width":6.249998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:451","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-632.1251220703125,"y":1342.294677734375,"width":0.31249991059303284,"height":2.5185184478759766},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:452","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-628.687744140625,"y":1342.294677734375,"width":0.31249991059303284,"height":2.5185184478759766},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:453","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-630.8751220703125,"y":1342.294677734375,"width":0.6249998211860657,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:454","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-631.4998779296875,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:455","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-629.3125,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:456","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-629.937744140625,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-639,"y":1336,"width":20,"height":17},"absoluteRenderBounds":{"x":-639,"y":1336,"width":20,"height":17},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:457","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:458","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:459","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:460","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-599,"y":1336,"width":20,"height":17},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:461","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-592.1251220703125,"y":1348.591064453125,"width":4.999998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:462","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-592.1251220703125,"y":1347.331787109375,"width":6.249998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:463","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-592.1251220703125,"y":1346.072509765625,"width":6.249998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:464","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-592.1251220703125,"y":1342.294677734375,"width":0.31249991059303284,"height":2.5185184478759766},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:465","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-588.687744140625,"y":1342.294677734375,"width":0.31249991059303284,"height":2.5185184478759766},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:466","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-590.8751220703125,"y":1342.294677734375,"width":0.6249998211860657,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:467","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-591.4998779296875,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:468","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-589.3125,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:469","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-589.937744140625,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-599,"y":1336,"width":20,"height":17},"absoluteRenderBounds":{"x":-599,"y":1336,"width":20,"height":17},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:470","name":"123Scan","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:471","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:472","name":"Group 13","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:473","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2074,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2074,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:474","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2074,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2074,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:475","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2070.874755859375,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2070.874755859375,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:476","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2068.999755859375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2068.999755859375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:477","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2068.999755859375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2068.999755859375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:478","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2063.375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2063.375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:479","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2063.375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2063.375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:480","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2064.625,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2064.625,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:481","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2067.749755859375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2067.749755859375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:482","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2066.5,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2066.5,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:483","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2067.749755859375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2067.749755859375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:484","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2066.5,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2066.5,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:485","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2064.625,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2064.625,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:486","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2072.12451171875,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2072.12451171875,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:487","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2072.12451171875,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2072.12451171875,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:488","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2075.24951171875,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2075.24951171875,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:489","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2062.125244140625,"y":1701.427490234375,"width":1.25,"height":8.99854564666748},"absoluteRenderBounds":{"x":-2062.125244140625,"y":1701.427490234375,"width":1.25,"height":8.99853515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:490","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2062.125244140625,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2062.125244140625,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:491","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2070.874755859375,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2070.874755859375,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:492","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2077.125,"y":1701.427490234375,"width":1.25,"height":8.99854564666748},"absoluteRenderBounds":{"x":-2077.125,"y":1701.427490234375,"width":1.25,"height":8.99853515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:493","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2077.125,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2077.125,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:494","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2075.24951171875,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2075.24951171875,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:495","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2079,"y":1700.1419677734375,"width":20,"height":0.6427532434463501},"absoluteRenderBounds":{"x":-2079,"y":1700.1419677734375,"width":20,"height":0.6427001953125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:496","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2074.624755859375,"y":1707.85498046875,"width":2.1738433837890625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2074.624755859375,"y":1707.85498046875,"width":2.173828125,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:497","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2071.170166015625,"y":1707.8564453125,"width":3.4789557456970215,"height":5.142372131347656},"absoluteRenderBounds":{"x":-2071.170166015625,"y":1707.8564453125,"width":3.47900390625,"height":5.142333984375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:498","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2066.753662109375,"y":1707.855224609375,"width":3.380509614944458,"height":5.144669532775879},"absoluteRenderBounds":{"x":-2066.753662109375,"y":1707.855224609375,"width":3.380615234375,"height":5.1446533203125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2079,"y":1695,"width":20,"height":17.999980926513672},"absoluteRenderBounds":{"x":-2079,"y":1695,"width":20,"height":17.999980926513672},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:499","name":"Rectangle 62","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:500","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:501","name":"Group 13","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:502","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2033.9998779296875,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2033.9998779296875,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:503","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2033.9998779296875,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2033.9998779296875,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:504","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2030.8748779296875,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2030.8748779296875,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:505","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2028.9998779296875,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2028.9998779296875,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:506","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2028.9998779296875,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2028.9998779296875,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:507","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2023.375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2023.375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:508","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2023.375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2023.375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:509","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2024.6251220703125,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2024.6251220703125,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:510","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2027.749755859375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2027.749755859375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:511","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2026.5001220703125,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2026.5001220703125,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:512","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2027.749755859375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2027.749755859375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:513","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2026.5001220703125,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2026.5001220703125,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:514","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2024.6251220703125,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2024.6251220703125,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:515","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2032.12451171875,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2032.12451171875,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:516","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2032.12451171875,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2032.12451171875,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:517","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2035.2496337890625,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2035.2496337890625,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:518","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2022.1253662109375,"y":1701.427490234375,"width":1.25,"height":8.99854564666748},"absoluteRenderBounds":{"x":-2022.1253662109375,"y":1701.427490234375,"width":1.25,"height":8.99853515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:519","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2022.1253662109375,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2022.1253662109375,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:520","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2030.8748779296875,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2030.8748779296875,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:521","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2037.125,"y":1701.427490234375,"width":1.25,"height":8.99854564666748},"absoluteRenderBounds":{"x":-2037.125,"y":1701.427490234375,"width":1.25,"height":8.99853515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:522","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2037.125,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2037.125,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:523","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2035.2496337890625,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2035.2496337890625,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:524","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2039,"y":1700.1419677734375,"width":20,"height":0.6427532434463501},"absoluteRenderBounds":{"x":-2039,"y":1700.1419677734375,"width":20,"height":0.6427001953125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:525","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2034.624755859375,"y":1707.85498046875,"width":2.1738433837890625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2034.624755859375,"y":1707.85498046875,"width":2.173828125,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:526","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2031.170166015625,"y":1707.8564453125,"width":3.4789557456970215,"height":5.142372131347656},"absoluteRenderBounds":{"x":-2031.170166015625,"y":1707.8564453125,"width":3.47900390625,"height":5.142333984375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:527","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2026.753662109375,"y":1707.855224609375,"width":3.380509614944458,"height":5.144669532775879},"absoluteRenderBounds":{"x":-2026.753662109375,"y":1707.855224609375,"width":3.3804931640625,"height":5.1446533203125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2039,"y":1695,"width":20,"height":17.999980926513672},"absoluteRenderBounds":{"x":-2039,"y":1695,"width":20,"height":17.999980926513672},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:528","name":"Rectangle 62","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:529","name":"Scan To Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:530","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:531","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:532","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:533","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1907.437744140625,"y":1702.4375,"width":5.625000953674316,"height":6.5625},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:534","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1907.437744140625,"y":1699,"width":5.625000953674316,"height":6.5625},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:535","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1919,"y":1702.75,"width":8.437766075134277,"height":11.249590873718262},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:536","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1913.84912109375,"y":1703.826904296875,"width":1.5121102333068848,"height":3.492222547531128},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:537","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1917.830078125,"y":1698.999755859375,"width":8.909172058105469,"height":3.515878438949585},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:538","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1910.250244140625,"y":1694,"width":11.250000953674316,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1919,"y":1694,"width":19.999755859375,"height":20},"absoluteRenderBounds":{"x":-1919,"y":1694,"width":19.999755859375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:539","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:540","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:541","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:542","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1867.437744140625,"y":1702.4375,"width":5.625000953674316,"height":6.5625},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:543","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1867.437744140625,"y":1699,"width":5.625000953674316,"height":6.5625},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:544","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1879,"y":1702.75,"width":8.437766075134277,"height":11.249590873718262},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:545","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1873.84912109375,"y":1703.826904296875,"width":1.5121102333068848,"height":3.492222547531128},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:546","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1877.830078125,"y":1698.999755859375,"width":8.909172058105469,"height":3.515878438949585},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:547","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1870.250244140625,"y":1694,"width":11.250000953674316,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1879,"y":1694,"width":19.999755859375,"height":20},"absoluteRenderBounds":{"x":-1879,"y":1694,"width":19.999755859375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:548","name":"Scanner Control Application","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:549","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:550","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:551","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:552","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1709.827880859375,"y":1700.875,"width":6.803053855895996,"height":9.374948501586914},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:553","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1708.396728515625,"y":1701.771484375,"width":1.220703125,"height":2.9097986221313477},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:554","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1711.151123046875,"y":1697.75,"width":7.182915210723877,"height":2.9295897483825684},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:555","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1716,"y":1702.74853515625,"width":7.198437213897705,"height":7.5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:556","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1712.71337890625,"y":1694,"width":11.25,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1716,"y":1694,"width":14.53662109375,"height":20},"absoluteRenderBounds":{"x":-1716,"y":1694,"width":14.53662109375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:557","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:558","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1763,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:559","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:560","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1751.827880859375,"y":1700.875,"width":6.803053855895996,"height":9.374948501586914},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:561","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1750.396728515625,"y":1701.771484375,"width":1.220703125,"height":2.9097986221313477},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:562","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1753.151123046875,"y":1697.75,"width":7.182915210723877,"height":2.9295897483825684},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:563","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1758,"y":1702.74853515625,"width":7.198437213897705,"height":7.5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:564","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1754.71337890625,"y":1694,"width":11.25,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1758,"y":1694,"width":14.53662109375,"height":20},"absoluteRenderBounds":{"x":-1758,"y":1694,"width":14.53662109375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1763,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1763,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:565","name":"Scan Speed Analytics","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:566","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:567","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:568","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-1599,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:569","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:570","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:571","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-1559,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:572","name":"Remote Diagnostics","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:573","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:574","name":"Group 16","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:575","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1435.2491455078125,"y":1701.8111572265625,"width":1.2497920989990234,"height":4.061824321746826},"absoluteRenderBounds":{"x":-1435.2491455078125,"y":1701.8111572265625,"width":1.249755859375,"height":4.061767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:576","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1427.7503662109375,"y":1701.186279296875,"width":1.2497920989990234,"height":4.68671989440918},"absoluteRenderBounds":{"x":-1427.7503662109375,"y":1701.186279296875,"width":1.249755859375,"height":4.686767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:577","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1431.8121337890625,"y":1699.3116455078125,"width":0.6248960494995117,"height":5.936511993408203},"absoluteRenderBounds":{"x":-1431.8121337890625,"y":1699.3116455078125,"width":0.6248779296875,"height":5.9365234375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:578","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1433.3743896484375,"y":1700.5614013671875,"width":0.9373440146446228,"height":4.68671989440918},"absoluteRenderBounds":{"x":-1433.3743896484375,"y":1700.5614013671875,"width":0.9373779296875,"height":4.686767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:579","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1429.3126220703125,"y":1702.4361572265625,"width":0.9373440146446228,"height":2.8120319843292236},"absoluteRenderBounds":{"x":-1429.3126220703125,"y":1702.4361572265625,"width":0.9373779296875,"height":2.81201171875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:580","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1430.5623779296875,"y":1701.186279296875,"width":0.6248960494995117,"height":4.061824321746826},"absoluteRenderBounds":{"x":-1430.5623779296875,"y":1701.186279296875,"width":0.6248779296875,"height":4.061767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:581","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1694,"width":19.99823570251465,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1694,"width":19.998291015625,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:582","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1435.26416015625,"y":1696.4979248046875,"width":8.76409912109375,"height":4.377254009246826},"absoluteRenderBounds":{"x":-1435.26416015625,"y":1696.4979248046875,"width":8.76416015625,"height":4.377197265625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1439,"y":1694,"width":19.99823570251465,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1694,"width":19.998291015625,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:583","name":"Rectangle 66","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:584","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:585","name":"Group 16","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:586","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1395.2491455078125,"y":1701.8111572265625,"width":1.2497920989990234,"height":4.061824321746826},"absoluteRenderBounds":{"x":-1395.2491455078125,"y":1701.8111572265625,"width":1.249755859375,"height":4.061767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:587","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1387.7503662109375,"y":1701.186279296875,"width":1.2497920989990234,"height":4.68671989440918},"absoluteRenderBounds":{"x":-1387.7503662109375,"y":1701.186279296875,"width":1.249755859375,"height":4.686767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:588","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1391.8121337890625,"y":1699.3116455078125,"width":0.6248960494995117,"height":5.936511993408203},"absoluteRenderBounds":{"x":-1391.8121337890625,"y":1699.3116455078125,"width":0.6248779296875,"height":5.9365234375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:589","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1393.3743896484375,"y":1700.5614013671875,"width":0.9373440146446228,"height":4.68671989440918},"absoluteRenderBounds":{"x":-1393.3743896484375,"y":1700.5614013671875,"width":0.9373779296875,"height":4.686767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:590","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1389.3126220703125,"y":1702.4361572265625,"width":0.9373440146446228,"height":2.8120319843292236},"absoluteRenderBounds":{"x":-1389.3126220703125,"y":1702.4361572265625,"width":0.9373779296875,"height":2.81201171875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:591","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1390.5623779296875,"y":1701.186279296875,"width":0.6248960494995117,"height":4.061824321746826},"absoluteRenderBounds":{"x":-1390.5623779296875,"y":1701.186279296875,"width":0.6248779296875,"height":4.061767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:592","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1694,"width":19.99823570251465,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1694,"width":19.998291015625,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:593","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1395.26416015625,"y":1696.4979248046875,"width":8.76409912109375,"height":4.377254009246826},"absoluteRenderBounds":{"x":-1395.26416015625,"y":1696.4979248046875,"width":8.76416015625,"height":4.377197265625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1399,"y":1694,"width":19.99823570251465,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1694,"width":19.998291015625,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:594","name":"Rectangle 66","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:595","name":"123 RFID","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:596","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:597","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:598","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:599","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1274.625244140625,"y":1708.998779296875,"width":2.1736671924591064,"height":4.999594688415527},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:600","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1271.1728515625,"y":1708.99853515625,"width":3.478666305541992,"height":4.998336315155029},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:601","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1266.75927734375,"y":1708.9990234375,"width":3.380260705947876,"height":5.000991344451904},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:602","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1275.250244140625,"y":1697.749755859375,"width":12.498987197875977,"height":9.374239921569824},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:603","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1279,"y":1694,"width":19.99837875366211,"height":19.99837875366211},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1279,"y":1694,"width":19.99837875366211,"height":20.000015258789062},"absoluteRenderBounds":{"x":-1279,"y":1694,"width":19.9984130859375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:604","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:605","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:606","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:607","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1234.625244140625,"y":1708.998779296875,"width":2.1736671924591064,"height":4.999594688415527},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:608","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1231.1728515625,"y":1708.99853515625,"width":3.478666305541992,"height":4.998336315155029},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:609","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1226.75927734375,"y":1708.9990234375,"width":3.380260705947876,"height":5.000991344451904},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:610","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1235.250244140625,"y":1697.749755859375,"width":12.498987197875977,"height":9.374239921569824},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:611","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1239,"y":1694,"width":19.99837875366211,"height":19.99837875366211},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1239,"y":1694,"width":19.99837875366211,"height":20.000015258789062},"absoluteRenderBounds":{"x":-1239,"y":1694,"width":19.9984130859375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:612","name":"Blood Bag Plus","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:613","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:614","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:615","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:616","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:617","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:618","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:619","name":"Label Plus","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:620","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:621","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2079,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-2079,"y":1934,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:622","name":"Rectangle 70","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:623","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:624","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2039,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-2039,"y":1934,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:625","name":"Rectangle 70","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:626","name":"Virtual Tether","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:627","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:628","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1919,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1919,"y":1934,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:629","name":"Rectangle 71","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:630","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:631","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1879,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1879,"y":1934,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:632","name":"Rectangle 71","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:633","name":"Link OS","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:634","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:635","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1759,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1759,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:636","name":"Rectangle 72","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:637","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:638","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1719,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1719,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:639","name":"Rectangle 72","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:640","name":"MDM Connectors","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:641","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:642","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":1934,"width":20,"height":19.998435974121094},"absoluteRenderBounds":{"x":-1599,"y":1934,"width":20,"height":19.9984130859375},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:643","name":"Rectangle 73","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:644","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:645","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":1934,"width":20,"height":19.998435974121094},"absoluteRenderBounds":{"x":-1559,"y":1934,"width":20,"height":19.9984130859375},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:646","name":"Rectangle 73","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:647","name":"Browser Print","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:648","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:649","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:650","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1934,"width":19.999998092651367,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:651","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1435.25,"y":1939,"width":12.49999713897705,"height":12.5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:652","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1430.875,"y":1943.375,"width":3.75,"height":3.75},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1439,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:653","name":"Rectangle 74","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:654","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:655","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:656","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1934,"width":19.999998092651367,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:657","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1395.25,"y":1939,"width":12.49999713897705,"height":12.5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:658","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1390.875,"y":1943.375,"width":3.75,"height":3.75},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1399,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:659","name":"Rectangle 74","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:660","name":"Cloud Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:661","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:662","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1279,"y":1938,"width":20,"height":13},"absoluteRenderBounds":{"x":-1279,"y":1938,"width":20,"height":13},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:663","name":"Rectangle 75","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:664","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:665","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1239,"y":1938,"width":20,"height":13},"absoluteRenderBounds":{"x":-1239,"y":1938,"width":20,"height":13},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:666","name":"Rectangle 75","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:667","name":"Virtual Devices","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:668","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:669","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:670","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1936,"width":20,"height":16.228904724121094},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:671","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1112.125,"y":1940.989501953125,"width":6.249995231628418,"height":6.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1119,"y":1936,"width":20,"height":16.228904724121094},"absoluteRenderBounds":{"x":-1119,"y":1936,"width":20,"height":16.2288818359375},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:672","name":"Rectangle 76","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:673","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:674","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:675","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1936,"width":20,"height":16.228904724121094},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:676","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1072.125,"y":1940.989501953125,"width":6.249995231628418,"height":6.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1079,"y":1936,"width":20,"height":16.228904724121094},"absoluteRenderBounds":{"x":-1079,"y":1936,"width":20,"height":16.2288818359375},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:677","name":"Rectangle 76","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:678","name":"Enterprise Connectors","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:679","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:680","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:681","name":"Rectangle 77","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:682","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:683","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:684","name":"Rectangle 77","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:685","name":"Pairing Solutions","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:686","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:687","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:688","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1113.7701416015625,"y":1702.862060546875,"width":1.8179469108581543,"height":1.8179564476013184},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:689","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1115.803955078125,"y":1694,"width":13.608590126037598,"height":13.609663963317871},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:690","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1108.541015625,"y":1702.8616943359375,"width":9.5413818359375,"height":11.138278007507324},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:691","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1700.3909912109375,"width":13.60860538482666,"height":13.608866691589355},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:692","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":-0.7853981633974483,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1109,"y":1703.5634010602753,"width":1.5746751856618175,"height":1.5746751856618175},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:693","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1113.069580078125,"y":1699.93115234375,"width":8.838375091552734,"height":10.206579208374023},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1119,"y":1694,"width":20.000316619873047,"height":19.999929428100586},"absoluteRenderBounds":{"x":-1119,"y":1694,"width":20.0003662109375,"height":19.9998779296875},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:694","name":"Rectangle 78","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:695","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:696","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:697","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1073.7701416015625,"y":1702.862060546875,"width":1.8179469108581543,"height":1.8179564476013184},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:698","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1075.803955078125,"y":1694,"width":13.608590126037598,"height":13.609663963317871},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:699","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1068.541015625,"y":1702.8616943359375,"width":9.5413818359375,"height":11.138278007507324},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:700","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1700.3909912109375,"width":13.60860538482666,"height":13.608866691589355},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:701","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":-0.7853981633974483,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1069,"y":1703.5634010602753,"width":1.5746751856618175,"height":1.5746751856618175},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:702","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1073.069580078125,"y":1699.93115234375,"width":8.838375091552734,"height":10.206579208374023},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1079,"y":1694,"width":20.000316619873047,"height":19.999929428100586},"absoluteRenderBounds":{"x":-1079,"y":1694,"width":20.0003662109375,"height":19.9998779296875},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:703","name":"Rectangle 78","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:704","name":"Scan And Pair","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:705","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:706","name":"Group 19","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:707","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":1694,"width":2.499999761581421,"height":15},"absoluteRenderBounds":{"x":-799,"y":1694,"width":2.5,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:708","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-781.5,"y":1694,"width":2.5000009536743164,"height":15},"absoluteRenderBounds":{"x":-781.5,"y":1694,"width":2.5,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:709","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-792.125,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-792.125,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:710","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-795.25,"y":1694,"width":1.875,"height":10.625},"absoluteRenderBounds":{"x":-795.25,"y":1694,"width":1.875,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:711","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-787.125,"y":1694,"width":1.875,"height":10.625},"absoluteRenderBounds":{"x":-787.125,"y":1694,"width":1.875,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:712","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-789.625,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-789.625,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:713","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-784,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-784,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:714","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-795.25,"y":1707.125,"width":8.203125,"height":6.875},"absoluteRenderBounds":{"x":-795.25,"y":1707.125,"width":8.203125,"height":6.875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:715","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-790.953125,"y":1707.1234130859375,"width":8.203125,"height":6.875},"absoluteRenderBounds":{"x":-790.953125,"y":1707.1234130859375,"width":8.203125,"height":6.875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-799,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-799,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:716","name":"Rectangle 79","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:717","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:718","name":"Group 19","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:719","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":1694,"width":2.499999761581421,"height":15},"absoluteRenderBounds":{"x":-759,"y":1694,"width":2.5,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:720","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-741.5,"y":1694,"width":2.5000009536743164,"height":15},"absoluteRenderBounds":{"x":-741.5,"y":1694,"width":2.5,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:721","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-752.125,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-752.125,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:722","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-755.25,"y":1694,"width":1.875,"height":10.625},"absoluteRenderBounds":{"x":-755.25,"y":1694,"width":1.875,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:723","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-747.125,"y":1694,"width":1.875,"height":10.625},"absoluteRenderBounds":{"x":-747.125,"y":1694,"width":1.875,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:724","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-749.625,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-749.625,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:725","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-744,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-744,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:726","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-755.25,"y":1707.125,"width":8.203125,"height":6.875},"absoluteRenderBounds":{"x":-755.25,"y":1707.125,"width":8.203125,"height":6.875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:727","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-750.953125,"y":1707.1234130859375,"width":8.203125,"height":6.875},"absoluteRenderBounds":{"x":-750.953125,"y":1707.1234130859375,"width":8.203125,"height":6.875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-759,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-759,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:728","name":"Rectangle 79","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:729","name":"Zebra Designer","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:730","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:731","name":"Group 20","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:732","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-632.125,"y":1819.0001220703125,"width":1.2499899864196777,"height":3.8570001125335693},"absoluteRenderBounds":{"x":-632.125,"y":1819.0001220703125,"width":1.25,"height":3.8570556640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:733","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-639,"y":1819.0001220703125,"width":2.4999799728393555,"height":14.999881744384766},"absoluteRenderBounds":{"x":-639,"y":1819.0001220703125,"width":2.5,"height":14.9998779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:734","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-629.6251831054688,"y":1819.0001220703125,"width":1.2499899864196777,"height":1.3570201396942139},"absoluteRenderBounds":{"x":-629.6251831054688,"y":1819.0001220703125,"width":1.25,"height":1.3570556640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:735","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-622.4376831054688,"y":1814,"width":3.4376325607299805,"height":3.436061382293701},"absoluteRenderBounds":{"x":-622.4376831054688,"y":1814,"width":3.4376220703125,"height":3.43603515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:736","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-635.25,"y":1819.0001220703125,"width":1.8749852180480957,"height":6.981975078582764},"absoluteRenderBounds":{"x":-635.25,"y":1819.0001220703125,"width":1.875,"height":6.98193359375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:737","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-624.0001831054688,"y":1822.0125732421875,"width":1.2499899864196777,"height":8.237434387207031},"absoluteRenderBounds":{"x":-624.0001831054688,"y":1822.0125732421875,"width":1.25,"height":8.2374267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:738","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-627.125,"y":1824.5145263671875,"width":1.8749852180480957,"height":5.735499382019043},"absoluteRenderBounds":{"x":-627.125,"y":1824.5145263671875,"width":1.875,"height":5.7354736328125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:739","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-621.5001831054688,"y":1819.0001220703125,"width":2.4999799728393555,"height":14.999881744384766},"absoluteRenderBounds":{"x":-621.5001831054688,"y":1819.0001220703125,"width":2.5,"height":14.9998779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:740","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-634,"y":1815.5626220703125,"width":13.437392234802246,"height":13.437392234802246},"absoluteRenderBounds":{"x":-634,"y":1815.5626220703125,"width":13.4373779296875,"height":13.4373779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:741","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-629.6251831054688,"y":1827.641845703125,"width":1.2499899864196777,"height":2.6081831455230713},"absoluteRenderBounds":{"x":-629.6251831054688,"y":1827.641845703125,"width":1.25,"height":2.608154296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:742","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-635.25,"y":1827.125,"width":3.1249752044677734,"height":3.1249752044677734},"absoluteRenderBounds":{"x":-635.25,"y":1827.125,"width":3.125,"height":3.125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-639,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:743","name":"Rectangle 80","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:744","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:745","name":"Group 20","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:746","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-592.125,"y":1819.0001220703125,"width":1.2499899864196777,"height":3.8570001125335693},"absoluteRenderBounds":{"x":-592.125,"y":1819.0001220703125,"width":1.25,"height":3.8570556640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:747","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-599,"y":1819.0001220703125,"width":2.4999799728393555,"height":14.999881744384766},"absoluteRenderBounds":{"x":-599,"y":1819.0001220703125,"width":2.5,"height":14.9998779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:748","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-589.6251831054688,"y":1819.0001220703125,"width":1.2499899864196777,"height":1.3570201396942139},"absoluteRenderBounds":{"x":-589.6251831054688,"y":1819.0001220703125,"width":1.25,"height":1.3570556640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:749","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-582.4376831054688,"y":1814,"width":3.4376325607299805,"height":3.436061382293701},"absoluteRenderBounds":{"x":-582.4376831054688,"y":1814,"width":3.4376220703125,"height":3.43603515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:750","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-595.25,"y":1819.0001220703125,"width":1.8749852180480957,"height":6.981975078582764},"absoluteRenderBounds":{"x":-595.25,"y":1819.0001220703125,"width":1.875,"height":6.98193359375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:751","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-584.0001831054688,"y":1822.0125732421875,"width":1.2499899864196777,"height":8.237434387207031},"absoluteRenderBounds":{"x":-584.0001831054688,"y":1822.0125732421875,"width":1.25,"height":8.2374267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:752","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-587.125,"y":1824.5145263671875,"width":1.8749852180480957,"height":5.735499382019043},"absoluteRenderBounds":{"x":-587.125,"y":1824.5145263671875,"width":1.875,"height":5.7354736328125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:753","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-581.5001831054688,"y":1819.0001220703125,"width":2.4999799728393555,"height":14.999881744384766},"absoluteRenderBounds":{"x":-581.5001831054688,"y":1819.0001220703125,"width":2.5,"height":14.9998779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:754","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-594,"y":1815.5626220703125,"width":13.437392234802246,"height":13.437392234802246},"absoluteRenderBounds":{"x":-594,"y":1815.5626220703125,"width":13.4373779296875,"height":13.4373779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:755","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-589.6251831054688,"y":1827.641845703125,"width":1.2499899864196777,"height":2.6081831455230713},"absoluteRenderBounds":{"x":-589.6251831054688,"y":1827.641845703125,"width":1.25,"height":2.608154296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:756","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-595.25,"y":1827.125,"width":3.1249752044677734,"height":3.1249752044677734},"absoluteRenderBounds":{"x":-595.25,"y":1827.125,"width":3.125,"height":3.125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-599,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:757","name":"Rectangle 80","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:758","name":"PDF Direct","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:759","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:760","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-639,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:761","name":"Rectangle 81","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:762","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:763","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-599,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:764","name":"Rectangle 81","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:765","name":"Print Station","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:766","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:767","name":"Group 21","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:768","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-633.0625,"y":1579.6265869140625,"width":6.875,"height":1.25},"absoluteRenderBounds":{"x":-633.0625,"y":1579.6265869140625,"width":6.875,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:769","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-633.0625,"y":1577.7515869140625,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-633.0625,"y":1577.7515869140625,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:770","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-633.0625,"y":1575.8765869140625,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-633.0625,"y":1575.8765869140625,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:771","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-639,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-639,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:772","name":"Rectangle 82","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:773","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:774","name":"Group 21","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:775","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-593.0625,"y":1579.6265869140625,"width":6.875,"height":1.25},"absoluteRenderBounds":{"x":-593.0625,"y":1579.6265869140625,"width":6.875,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:776","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-593.0625,"y":1577.7515869140625,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-593.0625,"y":1577.7515869140625,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:777","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-593.0625,"y":1575.8765869140625,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-593.0625,"y":1575.8765869140625,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:778","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-599,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-599,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:779","name":"Rectangle 82","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:780","name":"Printer Profile Manager","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:781","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:782","name":"Group 22","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:783","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2069,"y":1462.75,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-2069,"y":1462.75,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:784","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2079,"y":1454,"width":7.500000476837158,"height":19.999980926513672},"absoluteRenderBounds":{"x":-2079,"y":1454,"width":7.5,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:785","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2070.875,"y":1454,"width":11.875,"height":19.999980926513672},"absoluteRenderBounds":{"x":-2070.875,"y":1454,"width":11.875,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:786","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2066.34375,"y":1467.59375,"width":2.8125,"height":2.8125},"absoluteRenderBounds":{"x":-2066.34375,"y":1467.59375,"width":2.8125,"height":2.8125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2079,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-2079,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:787","name":"Rectangle 83","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:788","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:789","name":"Group 22","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:790","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2029,"y":1462.75,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-2029,"y":1462.75,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:791","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2039,"y":1454,"width":7.500000476837158,"height":19.999980926513672},"absoluteRenderBounds":{"x":-2039,"y":1454,"width":7.5,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:792","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2030.875,"y":1454,"width":11.875,"height":19.999980926513672},"absoluteRenderBounds":{"x":-2030.875,"y":1454,"width":11.875,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:793","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2026.34375,"y":1467.59375,"width":2.8125,"height":2.8125},"absoluteRenderBounds":{"x":-2026.34375,"y":1467.59375,"width":2.8125,"height":2.8125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2039,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-2039,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:794","name":"Rectangle 83","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:795","name":"Zebra Setup Utility","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:796","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:797","name":"Group 23","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:798","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1912.2763671875,"y":1466.3695068359375,"width":7.218367099761963,"height":2.9128870964050293},"absoluteRenderBounds":{"x":-1912.2763671875,"y":1466.3695068359375,"width":7.2183837890625,"height":2.912841796875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:799","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1912.4505615234375,"y":1469.3909912109375,"width":7.826626777648926,"height":4.608960151672363},"absoluteRenderBounds":{"x":-1912.4505615234375,"y":1469.3909912109375,"width":7.82666015625,"height":4.6090087890625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:800","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1914.636962890625,"y":1462.326171875,"width":1.2363303899765015,"height":1.0824307203292847},"absoluteRenderBounds":{"x":-1914.636962890625,"y":1462.326171875,"width":1.236328125,"height":1.0823974609375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:801","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1916.28759765625,"y":1462.3250732421875,"width":1.1867201328277588,"height":1.0835849046707153},"absoluteRenderBounds":{"x":-1916.28759765625,"y":1462.3250732421875,"width":1.186767578125,"height":1.0836181640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:802","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1912.857177734375,"y":1462.326171875,"width":1.2019550800323486,"height":1.0824215412139893},"absoluteRenderBounds":{"x":-1912.857177734375,"y":1462.326171875,"width":1.201904296875,"height":1.0823974609375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:803","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1918,"y":1460.6304931640625,"width":9.494367599487305,"height":11.586734771728516},"absoluteRenderBounds":{"x":-1918,"y":1460.6304931640625,"width":9.494384765625,"height":11.5867919921875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:804","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1905.2904052734375,"y":1463.3980712890625,"width":2.476001501083374,"height":8.8191499710083},"absoluteRenderBounds":{"x":-1905.2904052734375,"y":1463.3980712890625,"width":2.4759521484375,"height":8.819091796875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:805","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1909.145751953125,"y":1454,"width":9.2175874710083,"height":9.217195510864258},"absoluteRenderBounds":{"x":-1909.145751953125,"y":1454,"width":9.217529296875,"height":9.2171630859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1918,"y":1454,"width":18.071775436401367,"height":20.000001907348633},"absoluteRenderBounds":{"x":-1918,"y":1454,"width":18.07177734375,"height":20.000001907348633},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:806","name":"Rectangle 84","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:807","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:808","name":"Group 23","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:809","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1872.2763671875,"y":1466.3695068359375,"width":7.218367099761963,"height":2.9128870964050293},"absoluteRenderBounds":{"x":-1872.2763671875,"y":1466.3695068359375,"width":7.2183837890625,"height":2.912841796875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:810","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1872.4505615234375,"y":1469.3909912109375,"width":7.826626777648926,"height":4.608960151672363},"absoluteRenderBounds":{"x":-1872.4505615234375,"y":1469.3909912109375,"width":7.82666015625,"height":4.6090087890625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:811","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1874.636962890625,"y":1462.326171875,"width":1.2363303899765015,"height":1.0824307203292847},"absoluteRenderBounds":{"x":-1874.636962890625,"y":1462.326171875,"width":1.236328125,"height":1.0823974609375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:812","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1876.28759765625,"y":1462.3250732421875,"width":1.1867201328277588,"height":1.0835849046707153},"absoluteRenderBounds":{"x":-1876.28759765625,"y":1462.3250732421875,"width":1.186767578125,"height":1.0836181640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:813","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1872.857177734375,"y":1462.326171875,"width":1.2019550800323486,"height":1.0824215412139893},"absoluteRenderBounds":{"x":-1872.857177734375,"y":1462.326171875,"width":1.201904296875,"height":1.0823974609375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:814","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1878,"y":1460.6304931640625,"width":9.494367599487305,"height":11.586734771728516},"absoluteRenderBounds":{"x":-1878,"y":1460.6304931640625,"width":9.494384765625,"height":11.5867919921875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:815","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1865.2904052734375,"y":1463.3980712890625,"width":2.476001501083374,"height":8.8191499710083},"absoluteRenderBounds":{"x":-1865.2904052734375,"y":1463.3980712890625,"width":2.4759521484375,"height":8.819091796875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:816","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1869.145751953125,"y":1454,"width":9.2175874710083,"height":9.217195510864258},"absoluteRenderBounds":{"x":-1869.145751953125,"y":1454,"width":9.217529296875,"height":9.2171630859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1878,"y":1454,"width":18.071775436401367,"height":20.000001907348633},"absoluteRenderBounds":{"x":-1878,"y":1454,"width":18.07177734375,"height":20.000001907348633},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:817","name":"Rectangle 84","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:818","name":"Bluetooth Management","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:819","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:820","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1759,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-1759,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:821","name":"Rectangle 85","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:822","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:823","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1719,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-1719,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:824","name":"Rectangle 85","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:825","name":"Zebra OneCare","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:826","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:827","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:828","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":1458,"width":20,"height":13},"absoluteRenderBounds":{"x":-1599,"y":1458,"width":20,"height":13},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:829","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:830","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:831","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":1458,"width":20,"height":13},"absoluteRenderBounds":{"x":-1559,"y":1458,"width":20,"height":13},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:832","name":"Visibility Services","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:833","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:834","name":"Group 24","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:835","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1458.2183837890625,"width":20,"height":15.78166389465332},"absoluteRenderBounds":{"x":-1439,"y":1458.2183837890625,"width":20,"height":15.7816162109375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:836","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1437.7501220703125,"y":1454,"width":17.502717971801758,"height":11.508249282836914},"absoluteRenderBounds":{"x":-1437.7501220703125,"y":1454,"width":17.502685546875,"height":11.50830078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1439,"y":1454,"width":20,"height":19.99999237060547},"absoluteRenderBounds":{"x":-1439,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:837","name":"Rectangle 87","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:838","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:839","name":"Group 24","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:840","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1458.2183837890625,"width":20,"height":15.78166389465332},"absoluteRenderBounds":{"x":-1399,"y":1458.2183837890625,"width":20,"height":15.7816162109375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:841","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1397.7501220703125,"y":1454,"width":17.502717971801758,"height":11.508249282836914},"absoluteRenderBounds":{"x":-1397.7501220703125,"y":1454,"width":17.502685546875,"height":11.50830078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1399,"y":1454,"width":20,"height":19.99999237060547},"absoluteRenderBounds":{"x":-1399,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:842","name":"Rectangle 87","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:843","name":"Print Secure","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:844","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:845","name":"Group 25","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:846","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1270.2498779296875,"y":1457,"width":11.250019073486328,"height":15},"absoluteRenderBounds":{"x":-1270.2498779296875,"y":1457,"width":11.25,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:847","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1279,"y":1457,"width":5.625007152557373,"height":15},"absoluteRenderBounds":{"x":-1279,"y":1457,"width":5.625,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:848","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1266.8125,"y":1459.500244140625,"width":2.8125035762786865,"height":3.7497923374176025},"absoluteRenderBounds":{"x":-1266.8125,"y":1459.500244140625,"width":2.8125,"height":3.749755859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:849","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1272.90625,"y":1457,"width":5.783603191375732,"height":15},"absoluteRenderBounds":{"x":-1272.90625,"y":1457,"width":5.7835693359375,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1279,"y":1457,"width":20.00012969970703,"height":15},"absoluteRenderBounds":{"x":-1279,"y":1457,"width":20.00012969970703,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:850","name":"Rectangle 88","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:851","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:852","name":"Group 25","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:853","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1230.2498779296875,"y":1457,"width":11.250019073486328,"height":15},"absoluteRenderBounds":{"x":-1230.2498779296875,"y":1457,"width":11.25,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:854","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1239,"y":1457,"width":5.625007152557373,"height":15},"absoluteRenderBounds":{"x":-1239,"y":1457,"width":5.625,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:855","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1226.8125,"y":1459.500244140625,"width":2.8125035762786865,"height":3.7497923374176025},"absoluteRenderBounds":{"x":-1226.8125,"y":1459.500244140625,"width":2.8125,"height":3.749755859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:856","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1232.90625,"y":1457,"width":5.783603191375732,"height":15},"absoluteRenderBounds":{"x":-1232.90625,"y":1457,"width":5.7835693359375,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1239,"y":1457,"width":20.00012969970703,"height":15},"absoluteRenderBounds":{"x":-1239,"y":1457,"width":20.00012969970703,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:857","name":"Rectangle 88","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:858","name":"Design Tools","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:859","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:860","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-1119,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:861","name":"Rectangle 89","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:862","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:863","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-1079,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:864","name":"Rectangle 89","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2201,"y":996,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-2201,"y":996,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"exportSettings":[],"effects":[]},{"id":"1335:8","name":"DO NOT EDIT","type":"TEXT","scrollBehavior":"SCROLLS","rotation":2.9301064068370644,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-3359.0000102636695,"y":-52,"width":6950.692182948143,"height":1952.0269136510833},"absoluteRenderBounds":{"x":-1296.314453125,"y":-104.04297637939453,"width":4824.23779296875,"height":1574.447998046875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","exportSettings":[],"effects":[],"characters":"DO NOT EDIT","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"paragraphSpacing":400,"fontSize":800,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":400,"lineHeightPercent":38.46154022216797,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"layoutVersion":4,"characterStyleOverrides":[201,200,199,198,197,196,199,195,194,193,192],"styleOverrideTable":{"192":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10392309725284576,"g":0.5164550542831421,"b":0.0007901493809185922,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"193":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.01982421800494194,"b":0.9019825458526611,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"194":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0,"b":0,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"195":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.8528879284858704,"b":0.08055012673139572,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"196":{"paragraphSpacing":400,"fontSize":800,"letterSpacing":10,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.7913957834243774,"g":0.45104166865348816,"b":1,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"197":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.2540266215801239,"g":0.8491048216819763,"b":0.3135344982147217,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"198":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5354252457618713,"g":0.24530257284641266,"b":0.763378918170929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"199":{"fontSize":800},"200":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.9333333373069763,"g":0.04601345583796501,"b":0.04601345583796501,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"201":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.6368045806884766,"g":0.40883100032806396,"b":0.926953136920929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"}},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"1335:9","name":"DO NOT EDIT","type":"TEXT","scrollBehavior":"SCROLLS","rotation":0.04331811397151529,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2200.9999592026666,"y":1364,"width":5053.334883023732,"height":725.9568458990998},"absoluteRenderBounds":{"x":-2132.318603515625,"y":1299.0430908203125,"width":4830.6630859375,"height":785.3602294921875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","exportSettings":[],"effects":[],"characters":"DO NOT EDIT","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"paragraphSpacing":400,"fontSize":800,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":400,"lineHeightPercent":38.46154022216797,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"layoutVersion":4,"characterStyleOverrides":[201,200,199,198,197,196,199,195,194,193,192],"styleOverrideTable":{"192":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10392309725284576,"g":0.5164550542831421,"b":0.0007901493809185922,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"193":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.01982421800494194,"b":0.9019825458526611,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"194":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0,"b":0,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"195":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.8528879284858704,"b":0.08055012673139572,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"196":{"paragraphSpacing":400,"fontSize":800,"letterSpacing":10,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.7913957834243774,"g":0.45104166865348816,"b":1,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"197":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.2540266215801239,"g":0.8491048216819763,"b":0.3135344982147217,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"198":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5354252457618713,"g":0.24530257284641266,"b":0.763378918170929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"199":{"fontSize":800},"200":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.9333333373069763,"g":0.04601345583796501,"b":0.04601345583796501,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"201":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.6368045806884766,"g":0.40883100032806396,"b":0.926953136920929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"}},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"1335:11","name":"DO NOT EDIT","type":"TEXT","scrollBehavior":"SCROLLS","rotation":-0.047863896407128396,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2153,"y":-605.9999900593266,"width":5054.599931079487,"height":748.7204790378983},"absoluteRenderBounds":{"x":-2087.5322265625,"y":-666.4064331054688,"width":4832.2890625,"height":807.083740234375},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","exportSettings":[],"effects":[],"characters":"DO NOT EDIT","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"paragraphSpacing":400,"fontSize":800,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":400,"lineHeightPercent":38.46154022216797,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"layoutVersion":4,"characterStyleOverrides":[201,200,199,198,197,196,199,195,194,193,192],"styleOverrideTable":{"192":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10392309725284576,"g":0.5164550542831421,"b":0.0007901493809185922,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"193":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.01982421800494194,"b":0.9019825458526611,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"194":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0,"b":0,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"195":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.8528879284858704,"b":0.08055012673139572,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"196":{"paragraphSpacing":400,"fontSize":800,"letterSpacing":10,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.7913957834243774,"g":0.45104166865348816,"b":1,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"197":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.2540266215801239,"g":0.8491048216819763,"b":0.3135344982147217,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"198":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5354252457618713,"g":0.24530257284641266,"b":0.763378918170929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"199":{"fontSize":800},"200":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.9333333373069763,"g":0.04601345583796501,"b":0.04601345583796501,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"201":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.6368045806884766,"g":0.40883100032806396,"b":0.926953136920929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"}},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"1335:10","name":"DO NOT EDIT","type":"TEXT","scrollBehavior":"SCROLLS","rotation":0.02344490640741333,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-4305.0001333951595,"y":25,"width":5046.578444040607,"height":626.2690572675228},"absoluteRenderBounds":{"x":-4236.24853515625,"y":-41.36850357055664,"width":4822.38134765625,"height":690.2047729492188},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","exportSettings":[],"effects":[],"characters":"DO NOT EDIT","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"paragraphSpacing":400,"fontSize":800,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":400,"lineHeightPercent":38.46154022216797,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"layoutVersion":4,"characterStyleOverrides":[201,200,199,198,197,196,199,195,194,193,192],"styleOverrideTable":{"192":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10392309725284576,"g":0.5164550542831421,"b":0.0007901493809185922,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"193":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.01982421800494194,"b":0.9019825458526611,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"194":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0,"b":0,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"195":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.8528879284858704,"b":0.08055012673139572,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"196":{"paragraphSpacing":400,"fontSize":800,"letterSpacing":10,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.7913957834243774,"g":0.45104166865348816,"b":1,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"197":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.2540266215801239,"g":0.8491048216819763,"b":0.3135344982147217,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"198":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5354252457618713,"g":0.24530257284641266,"b":0.763378918170929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"199":{"fontSize":800},"200":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.9333333373069763,"g":0.04601345583796501,"b":0.04601345583796501,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"201":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.6368045806884766,"g":0.40883100032806396,"b":0.926953136920929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"}},"lineTypes":["NONE"],"lineIndentations":[0]}],"backgroundColor":{"r":0.9607843160629272,"g":0.9607843160629272,"b":0.9607843160629272,"a":1},"prototypeStartNodeID":null,"flowStartingPoints":[],"prototypeDevice":{"type":"NONE","rotation":"NONE"},"exportSettings":[]}]},"components":{"176:5663":{"key":"bf07221265357cac7113413da91bbd25e4d95bc2","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5662","documentationLinks":[]},"176:5666":{"key":"37e5859e9888b39c556dbbc7f534cd22d33fccf1","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5662","documentationLinks":[]},"176:5670":{"key":"4a646b8f23f9fa19ce5776d8b844eff4e3998a92","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5669","documentationLinks":[]},"176:5673":{"key":"f3e38a1df3d2a0dd143c59369802031b01f5eba4","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5669","documentationLinks":[]},"176:5677":{"key":"be0cce59ad61d9da24dd68feeccb95b91d2b8e6f","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5676","documentationLinks":[]},"176:5680":{"key":"69b6781d64a23e01377d64661a213d688088fb77","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5676","documentationLinks":[]},"176:5684":{"key":"3952dee885bfac2fd916497e3499f36ee497930a","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5683","documentationLinks":[]},"176:5687":{"key":"0bf1042906eff5c0a8e372f3498aec15dc62e2f2","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5683","documentationLinks":[]},"176:5691":{"key":"f0c83ab82052eae1c32899d1969cf1340c2171cb","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5690","documentationLinks":[]},"176:5694":{"key":"02883f3e322c0f34d266bbcf40717628783471ae","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5690","documentationLinks":[]},"176:5698":{"key":"77c8ba1775d2e118e15850b9714609583a961f50","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5697","documentationLinks":[]},"176:5701":{"key":"54b26c0d79e51f0042d9655d6674a3680da76a24","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5697","documentationLinks":[]},"176:5705":{"key":"60997624acf02a8ca29b468419571610900bb7a4","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5704","documentationLinks":[]},"176:5708":{"key":"595c3dc44f8f763f0220a727a0d00ad52994366e","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5704","documentationLinks":[]},"176:5712":{"key":"996c8bc6987d808784ffa85766c9043862c36ac0","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5711","documentationLinks":[]},"176:5715":{"key":"a24c37ae2b697cd2564920f6f3bd9ef0bfe9b942","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5711","documentationLinks":[]},"176:5719":{"key":"6884aa47b070b5c5b107e85663b09832ca47105b","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5718","documentationLinks":[]},"176:5722":{"key":"f7634a6fee0c33d8cdcf9184b8350ff10bf5670a","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5718","documentationLinks":[]},"176:5726":{"key":"0ddf6d8c4dcf36fe6d3908fc129aede965b9a182","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5725","documentationLinks":[]},"176:5729":{"key":"b70fd7183395df9e3c690821b319a97a5d54c72f","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5725","documentationLinks":[]},"176:5733":{"key":"659dfb67d970c19aca03864f26fb56d8c3614c50","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5732","documentationLinks":[]},"176:5736":{"key":"8927c066336eb7d109bc4a355491e3909be59538","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5732","documentationLinks":[]},"176:5740":{"key":"f8ad66e31add1e1fd3b51a00eb8df963e8f64cca","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5739","documentationLinks":[]},"176:5743":{"key":"f2f07d0efd39e8626b83b50f05eb220945110245","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5739","documentationLinks":[]},"176:5747":{"key":"3cbec281a7ea74297c79a1e5654c39f60249c515","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5746","documentationLinks":[]},"176:5750":{"key":"e9c063d498b06612d16f8e6200baa5153d1fd2ce","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5746","documentationLinks":[]},"176:5754":{"key":"08ef5c3b37b0b9867e5221cb3bb74ea24f68fd14","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5753","documentationLinks":[]},"176:5757":{"key":"f4b93f51e74eb1bf89b6aaccda161e643d162191","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5753","documentationLinks":[]},"176:5761":{"key":"57076834105d23117f790bb0559015ea5e4dbad4","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5760","documentationLinks":[]},"176:5764":{"key":"eb41de7d6bdfe8c176af1869b44bf336ec439585","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5760","documentationLinks":[]},"176:5768":{"key":"348a9cfc5fcb788c0256a61b0413bfaf8a715977","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5767","documentationLinks":[]},"176:5771":{"key":"849b66c2bac8b3a6feb7aff32efca3711e692859","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5767","documentationLinks":[]},"176:5775":{"key":"e27dbf6aa03bfa1ce82645524479d87c547b5a05","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5774","documentationLinks":[]},"176:5778":{"key":"cc2168eee3309e11de97d001f05e8db6ccddfb27","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5774","documentationLinks":[]},"176:5782":{"key":"ac0ac344b675c0f1c6803cd2379463b94f652ccb","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5781","documentationLinks":[]},"176:5785":{"key":"b9b43465c2c93e41cffbe2e928ae22f6b5e378e3","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5781","documentationLinks":[]},"176:5789":{"key":"c900d0bebfe7d7c1bf5933c3d75089755d5cb859","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5788","documentationLinks":[]},"176:5792":{"key":"01a0dda94fbb581616e60c6cd1ccbd5a331ded4d","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5788","documentationLinks":[]},"176:5796":{"key":"cdbf5d03b1101c8c26c6e49c3c2370c20d71802e","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5795","documentationLinks":[]},"176:5799":{"key":"f56a9820bac433ed44240d76877698953d9f3eb1","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5795","documentationLinks":[]},"176:5803":{"key":"adc4222edf1df2950da08914b0ea636b9b0b1d66","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5802","documentationLinks":[]},"176:5806":{"key":"48d290d322a29078e3cb7313e244314ed32fafaf","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5802","documentationLinks":[]},"176:5810":{"key":"e3a5efe9cf12b2a379b2886d9ffff25cbe243b33","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5809","documentationLinks":[]},"176:5813":{"key":"386d2acab0cb44238277235f5f1bd5c3093426b2","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5809","documentationLinks":[]},"176:5817":{"key":"847a511f71f74f216e7910ec1a63ac78f569ba96","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5816","documentationLinks":[]},"176:5820":{"key":"f4eb7d7393f7af13ba16d3c2d3c5a629441cdd8c","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5816","documentationLinks":[]},"176:5823":{"key":"2fc2428ecea6351cd8e9269bbb43b9762daa66f3","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5822","documentationLinks":[]},"176:5826":{"key":"d3d8ecdc0def6e4ca5dc701e1788d01b2f0a5c91","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5822","documentationLinks":[]},"176:5830":{"key":"18f43d394e408f315a1d502ebb65e2dea27dffd3","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5829","documentationLinks":[]},"176:5833":{"key":"4efe6ddc1b783f4ca6161469240a210c05c7e10f","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5829","documentationLinks":[]},"176:5840":{"key":"e9d7c323d2d837d94910f68aec2e56c066fc47fd","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5839","documentationLinks":[]},"176:5843":{"key":"54711c8e12c32737a18b548b80f20b94ba708607","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5839","documentationLinks":[]},"176:5847":{"key":"d8dd1f3930bfaf9425be0e501d038ae66046dfb8","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5846","documentationLinks":[]},"176:5850":{"key":"42aa642f7c2f3a7903ff076d36240bca5db9de98","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5846","documentationLinks":[]},"176:5854":{"key":"0cc7f775e92adde871437f4b81d8c68688b53702","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5853","documentationLinks":[]},"176:5857":{"key":"07989df1f92af1e0e147066fd7ddac6d582d0bb3","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5853","documentationLinks":[]},"176:5861":{"key":"916206df87e6f70b973fea7a3f9fcb2c5491dad9","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5860","documentationLinks":[]},"176:5864":{"key":"a105571c260477118a0f0c9f727288841fbb32bb","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5860","documentationLinks":[]},"176:5868":{"key":"6cccfb368983c72ede6785ec138071acfb6c97eb","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5867","documentationLinks":[]},"176:5871":{"key":"63c72fd84c779b8d29d8475e94e47276278cb523","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5867","documentationLinks":[]},"176:5875":{"key":"eaba07600e4beef86751e88e0a3c4b53ee50cc7c","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5874","documentationLinks":[]},"176:5878":{"key":"dbd1057145fb2a59b90b81cd86ba9b9a891529ce","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5874","documentationLinks":[]},"176:5882":{"key":"aaa0087de590789b9f486a5117bf368f820e4291","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5881","documentationLinks":[]},"176:5885":{"key":"fa47d408c041af780e4ee7a52747ab1c41057ec4","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5881","documentationLinks":[]},"176:5889":{"key":"0babdeb7b21008b3b5227ffbc416147f6411100d","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5888","documentationLinks":[]},"176:5892":{"key":"a12895b5a67a78094488bc90cbc9ff73935bd077","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5888","documentationLinks":[]},"176:5896":{"key":"0802346a0e1fa83d92b29e4202640bae1a61aefe","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5895","documentationLinks":[]},"176:5899":{"key":"7eb2f613c6d7389578e744a096f2b70f5940e0ba","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5895","documentationLinks":[]},"176:5903":{"key":"411be0eecc5edb1ca96ded0749fb8092d7b39c1b","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5902","documentationLinks":[]},"176:5906":{"key":"d7e2f78efc1264b8e9603b25fcfd127fbdf52a37","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5902","documentationLinks":[]},"176:5910":{"key":"bc46dfdc0798b03910006f2732a10bc7a7e1f846","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5909","documentationLinks":[]},"176:5913":{"key":"e83518f4a565b0c91141584e9f48aeef1f8d1405","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5909","documentationLinks":[]},"176:5917":{"key":"65565a6977788de124cb3dde5a5ab0f305f829cd","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5916","documentationLinks":[]},"176:5920":{"key":"ae9515ebabbd4ed30a791f835f983cdfce944103","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5916","documentationLinks":[]},"176:5924":{"key":"8a29e18a2820c1b4052f4e7c62a45b141f052a17","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5923","documentationLinks":[]},"176:5927":{"key":"9beafe1cb5e2ad6b7bb87a2dcf116ddc8d945d9d","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5923","documentationLinks":[]},"176:5931":{"key":"1e2ee945d34bd0035d8f41e77dd9d11d7f665218","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5930","documentationLinks":[]},"176:5934":{"key":"160d4d8a22a21e8a133d3dbe149763a1710771d0","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5930","documentationLinks":[]},"176:5938":{"key":"3ddeaad64e4b9c5063530fa888c527173f264d64","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5937","documentationLinks":[]},"176:5941":{"key":"25d125abc83ec4f3a687dd4e13288bbc42930eac","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5937","documentationLinks":[]},"176:5945":{"key":"5cebfaba3ff2ad32fe256c013ffba76dbc16b644","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5944","documentationLinks":[]},"176:5948":{"key":"4f87d9d0942a1aee0e0946f0a599cb5a6ede7ebd","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5944","documentationLinks":[]},"176:5952":{"key":"78f772de4a49a7b8baee7621da07e585f9161d84","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5951","documentationLinks":[]},"176:5955":{"key":"05bc86a7f0707e01d51355b8e9bb7efddd827b38","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5951","documentationLinks":[]},"176:5959":{"key":"e4e7fce8f9c1f1aa97dc4ee54a6b790e8d336168","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5958","documentationLinks":[]},"176:5962":{"key":"b773978e5bce9706e860e3fb6e7f89d8e27c9b27","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5958","documentationLinks":[]},"176:5966":{"key":"76db925902b809aec5dad526484395a18fb99056","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5965","documentationLinks":[]},"176:5969":{"key":"89374a5f040547803c6748fd6e7b8f9f1f675740","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5965","documentationLinks":[]},"176:5973":{"key":"8d68b45d8f65454e84d6e0f3b2e5ab22118d592a","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5972","documentationLinks":[]},"176:5976":{"key":"5c1d60744d9ef2e82735d994a965400985d25878","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5972","documentationLinks":[]},"176:5980":{"key":"92eedb872b641f501efc3b6572643d8ca6d4a11e","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5979","documentationLinks":[]},"176:5983":{"key":"5a9950a29738b452f77fbcfd83afe702dfe8699d","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5979","documentationLinks":[]},"176:5987":{"key":"cf0575e016968fe4915434161a4dbc8c7cf2bd98","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5986","documentationLinks":[]},"176:5990":{"key":"1147fa004ecf89d13aab043b8490ac348ecac70e","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5986","documentationLinks":[]},"176:5994":{"key":"b483ac6adc7f9971674150edae5b4071dda9ae3f","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5993","documentationLinks":[]},"176:5997":{"key":"4cac12143ac9e59da5b1033310ac76bc1230db41","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5993","documentationLinks":[]},"176:6004":{"key":"9f0378cb51ad545073c9b88eae292171c561d57e","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6003","documentationLinks":[]},"176:6007":{"key":"ae5a0876455e8ec8c2a41b192bcad7da2d14104d","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6003","documentationLinks":[]},"176:6011":{"key":"b4565597e50d6e64e14e55004b593aa0901544d3","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6010","documentationLinks":[]},"176:6014":{"key":"4a15edc63cb18824feee420a3c6cab6a9acb963c","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6010","documentationLinks":[]},"176:6018":{"key":"f6b3a4b3bd316bc6111dff8096367f49baf0d1d9","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6017","documentationLinks":[]},"176:6021":{"key":"6d2c421dc391ae8b9eab5085be4c5f30cce8812e","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6017","documentationLinks":[]},"176:6025":{"key":"8c08fdb2256ff992d2776111401a1a88b2314109","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6024","documentationLinks":[]},"176:6028":{"key":"3bb4e381e85c91fdfbcbc1da071a6040d841e848","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6024","documentationLinks":[]},"176:6032":{"key":"910d4f7eb94b5534c606d021a51bafe1f3308792","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6031","documentationLinks":[]},"176:6035":{"key":"945311097cb31ef8ca275786d86db279f5944a6b","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6031","documentationLinks":[]},"176:6039":{"key":"7db1385a963851e89701212a782dcca6cd8b1885","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6038","documentationLinks":[]},"176:6042":{"key":"4710c41f9083affda7b87f988fd0f84887c9ede1","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6038","documentationLinks":[]},"176:6046":{"key":"083d91dc6de5a63039bae193486b0404f24cb57e","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6045","documentationLinks":[]},"176:6049":{"key":"45b80e55b38dc4364cf36f7194453a967665a56e","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6045","documentationLinks":[]},"176:6053":{"key":"4d299add71dae9e9964f73ad7753b9eac785d290","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6052","documentationLinks":[]},"176:6056":{"key":"093b243bccfa75c83cef6d0b67e6e7e8d63af1e6","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6052","documentationLinks":[]},"176:6060":{"key":"d03aae79496f1fa76e74ea63369c8649a6416868","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6059","documentationLinks":[]},"176:6063":{"key":"7774acd9e42ac8751c010bf8db27d9551d5c2167","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6059","documentationLinks":[]},"176:6067":{"key":"82e2fd349789dd04b199b1e03343c4a4bc617b3f","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6066","documentationLinks":[]},"176:6070":{"key":"101f0f03631afe594c32a5d99a4626e3775260c5","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6066","documentationLinks":[]},"176:6074":{"key":"cfc0c72e92f7b1c49917b14592adbdbe10b6f47b","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6073","documentationLinks":[]},"176:6077":{"key":"aabf57a51ca1a3675944a9f3678c5ca80e9121cf","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6073","documentationLinks":[]},"176:6081":{"key":"c1e6250fef0fc4366c92baffe53d5e1e22301816","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6080","documentationLinks":[]},"176:6084":{"key":"9100589d92788174c7737011f68db98fd8fad5db","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6080","documentationLinks":[]},"176:6088":{"key":"4a02ec293d168f56be27ae43e34a708bbbffe769","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6087","documentationLinks":[]},"176:6095":{"key":"ef1ee26872759d9734f712c94c45085b802a1dd1","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6087","documentationLinks":[]},"176:6103":{"key":"2d9445fab18e9efcea509fb71db1f6d15ed595ab","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6102","documentationLinks":[]},"176:6106":{"key":"96776c72c81485b996c7b9addba71d26ac912d8c","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6102","documentationLinks":[]},"176:6110":{"key":"1dc1b84980e4acefcd1d60a0a4012355986dab93","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6109","documentationLinks":[]},"176:6114":{"key":"a1fa2e4ba7538c432fd9110019803407db451b6b","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6109","documentationLinks":[]},"176:6120":{"key":"5a3b9dfac04ca91a56591ddfc445605e16a61c9c","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6119","documentationLinks":[]},"176:6124":{"key":"f0b0830c70cebf931e355c722ddd436e52bf91f4","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6119","documentationLinks":[]},"176:6130":{"key":"e9b1afa3fc3eb4e62d5a6aec9530d08773c0a6f3","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6129","documentationLinks":[]},"176:6134":{"key":"caa3cd2221cb277641b6695388881d8aa43825eb","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6129","documentationLinks":[]},"176:6140":{"key":"8ded007d83f9ce8b2c5da16c18c3cec9e850393c","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6139","documentationLinks":[]},"176:6144":{"key":"4640195eec9d9958a9ce05789ec6e4550810777c","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6139","documentationLinks":[]},"176:6150":{"key":"e52f48c262b2a63e4342dde9f4b8f22e434a2961","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6149","documentationLinks":[]},"176:6154":{"key":"298dd3cc85c38552508e17e38db024dfbb7d5255","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6149","documentationLinks":[]},"176:6160":{"key":"08556e3364df303b72cd184805fd18fee8529a84","name":"Style=Round","description":"Workcloud, WC, file, do not export, export, open in new, open, launch","remote":false,"componentSetId":"176:6159","documentationLinks":[]},"176:6162":{"key":"79cbe7f411986ea5aa29a3f6702bfeeac5c1557b","name":"Style=Sharp","description":"Workcloud, WC, file, do not export, export, open in new, open, launch","remote":false,"componentSetId":"176:6159","documentationLinks":[]},"176:6165":{"key":"8ff0104852702e93f2dd81eac341090f5441339d","name":"Style=Round","description":"Workcloud, WC, page height","remote":false,"componentSetId":"176:6164","documentationLinks":[]},"176:6167":{"key":"979c099dc3b86b97cd01f1f2d7a977d710eb1875","name":"Style=Sharp","description":"Workcloud, WC, page height","remote":false,"componentSetId":"176:6164","documentationLinks":[]},"176:6170":{"key":"957f3a92e6dece4be2bf64fc4eeb88a0bd0e5e00","name":"Style=Round","description":"Workcloud, WC, page width","remote":false,"componentSetId":"176:6169","documentationLinks":[]},"176:6172":{"key":"170440769bd800e4894d46430123af76e0594dfc","name":"Style=Sharp","description":"Workcloud, WC, page width","remote":false,"componentSetId":"176:6169","documentationLinks":[]},"176:6175":{"key":"5c928372ac6d9808e32379f209b6d6690915bbb4","name":"Style=Round","description":"Workcloud, WC, page rotate","remote":false,"componentSetId":"176:6174","documentationLinks":[]},"176:6177":{"key":"612520a67e7b6c160f4a2f64a438da3a35a8a273","name":"Style=Sharp","description":"Workcloud, WC, page rotate","remote":false,"componentSetId":"176:6174","documentationLinks":[]},"176:6180":{"key":"5774908f6384cb73f21f03cbfe59cd3a7874a0f7","name":"Style=Round","description":"Workcloud, WC, file, save","remote":false,"componentSetId":"176:6179","documentationLinks":[]},"176:6182":{"key":"beeb9f6220f972371c3a7ad41b2661c20b67145c","name":"Style=Sharp","description":"Workcloud, WC, file, save","remote":false,"componentSetId":"176:6179","documentationLinks":[]},"176:6185":{"key":"f0bf7fc4025470f7d91d1a82ac92d0d744945572","name":"Style=Round","description":"Workcloud, WC, file, publish","remote":false,"componentSetId":"176:6184","documentationLinks":[]},"176:6187":{"key":"a3ce6cba7445feefe7defcf5451d33b7b7ebaf09","name":"Style=Sharp","description":"Workcloud, WC, file, publish","remote":false,"componentSetId":"176:6184","documentationLinks":[]},"176:6190":{"key":"6f0216ab57cf60aee480b3a211f723528d79ae88","name":"Style=Round","description":"Workcloud, WC, file, note, paper","remote":false,"componentSetId":"176:6189","documentationLinks":[]},"176:6192":{"key":"86dc3b01570c47e7af83aebe6be24c9a397f96b1","name":"Style=Sharp","description":"Workcloud, WC, file, note, paper","remote":false,"componentSetId":"176:6189","documentationLinks":[]},"176:6195":{"key":"f4d21d3873d47df9108574b0764323abaa6fe83c","name":"Style=Round","description":"Workcloud, WC, project, folder, file","remote":false,"componentSetId":"176:6194","documentationLinks":[]},"176:6197":{"key":"fe466a7fbf425d74b4abdcc5606200dc4cdbf9dd","name":"Style=Sharp","description":"Workcloud, WC, project, folder, file","remote":false,"componentSetId":"176:6194","documentationLinks":[]},"176:6200":{"key":"c8f2dbbd221276ab3bdb7e51ba2743ef4bfd7a5b","name":"Style=Round","description":"Workcloud, WC, maintenance, repair, hammer, wrench, tools","remote":false,"componentSetId":"176:6199","documentationLinks":[]},"176:6202":{"key":"61d9fd60b692ce3aad31f5f1083c3e605f4139b0","name":"Style=Sharp","description":"Workcloud, WC, maintenance, repair, hammer, wrench, tools","remote":false,"componentSetId":"176:6199","documentationLinks":[]},"1327:6":{"key":"0f0e7dc02e7268c77ccc5e9718f021f06713c52e","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:5","documentationLinks":[]},"1327:12":{"key":"2b0cea65a8d0e28751a2f962d66224163a5ed9a1","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:5","documentationLinks":[]},"1327:19":{"key":"0061e3fa9a3f5470e4628dbfd0b4460c59587851","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:18","documentationLinks":[]},"1327:22":{"key":"7ea8575c5784de9be05ef21c614f8e6c0030626b","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:18","documentationLinks":[]},"1327:26":{"key":"c7704502b362bf0152726d4832b102871d63ef9e","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:25","documentationLinks":[]},"1327:29":{"key":"ed88a121b8ede3e4804fc340094d4d57cdd359bd","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:25","documentationLinks":[]},"1327:33":{"key":"9ce64b4ccef24fc875d74ecb7eecfbae337490f9","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:32","documentationLinks":[]},"1327:36":{"key":"dc99700f1f79ed83ff9e6a70203ffd1c638131c0","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:32","documentationLinks":[]},"1327:40":{"key":"77237359bf3a8da2ec2ef764437e47ecb4815468","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:39","documentationLinks":[]},"1327:43":{"key":"f6a051bb8553c047bd3a2cda914ee49d4326ecd0","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:39","documentationLinks":[]},"1327:47":{"key":"d9d2c37877ae21a84125c9e3a178cb5b145d949a","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:46","documentationLinks":[]},"1327:50":{"key":"429f6bd5c921801c0a6ecb0315d7953e398aaf5a","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:46","documentationLinks":[]},"1327:54":{"key":"b324ec390eb5a41787bf67d830cfd2831a4cefbd","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:53","documentationLinks":[]},"1327:57":{"key":"597f959f6bd5d19982b4344b5573495c35045bac","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:53","documentationLinks":[]},"1327:61":{"key":"85740b02daecd9b1a08ea1e8f29152b7d3e63392","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:60","documentationLinks":[]},"1327:64":{"key":"34f34c46f15262f75910c29c0b1c0be2cb4c6aa0","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:60","documentationLinks":[]},"1327:68":{"key":"6b1ef4c9faba2bcab03c9e1114eecaae4b9c1957","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:67","documentationLinks":[]},"1327:71":{"key":"95077b93c3c92a1702630acd2ca295a1655e4029","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:67","documentationLinks":[]},"1327:75":{"key":"b26cd9084dff17220ccc5a09cb13ea6cc96597d0","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:74","documentationLinks":[]},"1327:78":{"key":"24b8023761de933d69f10d10e81d60e644471b1e","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:74","documentationLinks":[]},"1327:82":{"key":"ce304891d61579eb5615999ce44e8df956efee13","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:81","documentationLinks":[]},"1327:88":{"key":"8e8896d3f398a7b4be53049d71092fc8f6f38727","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:81","documentationLinks":[]},"1327:95":{"key":"9f84fcfc754fa576875a98ba1ae4f53fa4e31ad2","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:94","documentationLinks":[]},"1327:98":{"key":"61dc45faff7128b9ce6f0091f153df193da924bd","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:94","documentationLinks":[]},"1327:102":{"key":"51a0272d21f1d5a11a001658b55526883f885c28","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:101","documentationLinks":[]},"1327:105":{"key":"95aed67eb01054ab6c2cd96f6438d6557dc8a97a","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:101","documentationLinks":[]},"1327:109":{"key":"86c3a42cb68d1acec80953fbdcf93394609f87ca","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:108","documentationLinks":[]},"1327:112":{"key":"f3b25f5363184a9a300ca1a8f78868cf0c0e5302","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:108","documentationLinks":[]},"1327:116":{"key":"bac0585c4fb927a8334611a1e3b7bcdfa5a3afd5","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:115","documentationLinks":[]},"1327:119":{"key":"fb403a287320d5d712d36b0ea35a0095cb949373","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:115","documentationLinks":[]},"1327:123":{"key":"a158bbd2fd6cd028dc97280cdbf5dd6f7387a0de","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:122","documentationLinks":[]},"1327:126":{"key":"79bf1b5ce655aca85d5027a1e96d51311f7f9803","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:122","documentationLinks":[]},"1327:130":{"key":"051ea9c166f0f6a3bf03dc8bed44c1fe9a2803a3","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:129","documentationLinks":[]},"1327:133":{"key":"af558341da5f6db9bf914e362f162e48bf8ce4f8","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:129","documentationLinks":[]},"1327:137":{"key":"908342d12521432e9ff9eafb9629de793386e21e","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:136","documentationLinks":[]},"1327:140":{"key":"13b8d755660739006e0e507511527439735020d3","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:136","documentationLinks":[]},"1327:144":{"key":"95113bcd9bb8261bd80155de5cc6c36010ba4a3f","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:143","documentationLinks":[]},"1327:147":{"key":"319500cb124b69190bdb6f6da20dec34ec832d93","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:143","documentationLinks":[]},"1327:151":{"key":"c85ab7eaa1b723f5b42bd22b7995bd958a1f5184","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:150","documentationLinks":[]},"1327:154":{"key":"e89d6d01dc32a1b7d491c7df42f1654bdd4b6a2e","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:150","documentationLinks":[]},"1327:158":{"key":"58b73e5e5ff28850cb7cecd2a1336cc9047a9091","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:157","documentationLinks":[]},"1327:161":{"key":"c74d04f500a613a946628aead05605bda7ef2fd2","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:157","documentationLinks":[]},"1327:165":{"key":"9b44d9837a707ee972cddb5b8123125bdf4260d9","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:164","documentationLinks":[]},"1327:168":{"key":"1e62df1969e15c20266858e7cfe5f8383f2b1524","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:164","documentationLinks":[]},"1327:172":{"key":"ceedd9ac6b7d82003c3c8b77a6d99da2d126f417","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:171","documentationLinks":[]},"1327:175":{"key":"176395e7dd95e4d0316d1f6a834b391abc878a35","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:171","documentationLinks":[]},"1327:179":{"key":"4a43e9086c59fe320d3dc843ef23eac002bc2c7e","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:178","documentationLinks":[]},"1327:182":{"key":"43d490ef297c95d9c80ea2122fe53b5fd5a1b8d7","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:178","documentationLinks":[]},"1327:186":{"key":"4438aaf75d7ce81218e4af464876f6b52a165296","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:185","documentationLinks":[]},"1327:193":{"key":"6fc95bba49619c0c695caba464da5434f8ed2042","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:185","documentationLinks":[]},"1327:201":{"key":"5341e67ebb5cdafe1211ae8dedee6582d5856c8b","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:200","documentationLinks":[]},"1327:206":{"key":"607977c8616bbb363c213789032f5e178ce1091c","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:200","documentationLinks":[]},"1327:212":{"key":"0375fd3d38521df3a707ebf2fa8fa4a4c589a94a","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:211","documentationLinks":[]},"1327:215":{"key":"9474ddcd6e0a3fdac32d2d9614a41542c9dfbcaa","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:211","documentationLinks":[]},"1327:219":{"key":"13ad547a82dfc6b30b711d53bad280e2acf10073","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:218","documentationLinks":[]},"1327:230":{"key":"76cbd876b0f7315e9b4e64138f7b6aaae0b3fa86","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:218","documentationLinks":[]},"1327:242":{"key":"6ce9834a0b7d15acd7ae232c08090b993dde930a","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:241","documentationLinks":[]},"1327:249":{"key":"27eb321f43f070c282179391dcb6d4324c50a8ce","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:241","documentationLinks":[]},"1327:257":{"key":"e0fc49a9ffff46e84725e33ef829ad079ddf85a5","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:256","documentationLinks":[]},"1327:264":{"key":"2abf5520087ac30cd5fd5f42ffacb4267c124e9b","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:256","documentationLinks":[]},"1327:272":{"key":"bee8122c135b13e4c87ca0470341052fce6275b8","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:271","documentationLinks":[]},"1327:278":{"key":"12526b4f2a41955955b803b1e2f65ec3cfc5de25","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:271","documentationLinks":[]},"1327:285":{"key":"e187a8e4a690d1606bdbb43844a6528a5425d652","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:284","documentationLinks":[]},"1327:301":{"key":"d759c6e885a9046d47bfc0dc722e2b083e2c078e","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:284","documentationLinks":[]},"1327:318":{"key":"ef8d87cb5759a7c895582a1e3338b31176a71efd","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:317","documentationLinks":[]},"1327:328":{"key":"e4a8b33467f3dd732e099d0e695b5db0c3d61e39","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:317","documentationLinks":[]},"1327:339":{"key":"14fed9e74b66575a85010d233a674a12f929a20c","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:338","documentationLinks":[]},"1327:342":{"key":"81089400a10437497ab0c87c6ac138b2147b8eaa","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:338","documentationLinks":[]},"1327:346":{"key":"2bb0a8a7fc17390c2d1e5fb43fcf1259e2ecc1e1","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:345","documentationLinks":[]},"1327:361":{"key":"e0872ab1a7e0d22daddc6e8b3532d5a3de142cb4","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:345","documentationLinks":[]},"1327:377":{"key":"76fc99c6cdce20a7b0a910f311705f18dabd15e3","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:376","documentationLinks":[]},"1327:390":{"key":"e5408357086aee5017d45d55c7587aa988f99363","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:376","documentationLinks":[]},"1327:404":{"key":"aa77153bf5e5346416994786a162c059532d7770","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:403","documentationLinks":[]},"1327:407":{"key":"32e2e28bf56a1187a0c439a1b96697032feec0c4","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:403","documentationLinks":[]},"1327:411":{"key":"67fce6862c43b46fc855f3a896bbc74790180d80","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:410","documentationLinks":[]},"1327:414":{"key":"b9f05b8c79b6febf4ff96e70682f0df5264e5ca9","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:410","documentationLinks":[]},"1327:418":{"key":"c7519c8b87ccbf74174842944f33577e9bac0223","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:417","documentationLinks":[]},"1327:421":{"key":"1356de1874a8c44d2815270b7fc63ae1b98208d4","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:417","documentationLinks":[]},"1327:425":{"key":"9c491b069d1ce2b594eeefc128dbb1541382f494","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:424","documentationLinks":[]},"1327:434":{"key":"4b08b06c74fe62ffa5dd7327ecd25e91e3a961bf","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:424","documentationLinks":[]},"1327:444":{"key":"b9930d31d6cee2b6df8e8b039b66fbf2335f6199","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:443","documentationLinks":[]},"1327:457":{"key":"deea26c7fb94e2d2d25f3b627e183406820db063","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:443","documentationLinks":[]},"1327:471":{"key":"0f192071dd451bc40f1092453f8141903bb65d12","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:470","documentationLinks":[]},"1327:500":{"key":"219976a48d34d3955c6928d9c77350013d79cfdc","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:470","documentationLinks":[]},"1327:530":{"key":"20f8ee11203013ba077be20a2d63cc10e7891b20","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:529","documentationLinks":[]},"1327:539":{"key":"5abda6a3b25a7c902d5a1f3eaeb72c18166398d3","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:529","documentationLinks":[]},"1327:549":{"key":"791de3476f9b4d682311c49562bf747d8c189ffd","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:548","documentationLinks":[]},"1327:557":{"key":"f0f60491a63a8a8a618e4bd84ff62f23a5724df1","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:548","documentationLinks":[]},"1327:566":{"key":"d2b85de4c4c4dc5465b4a3b31ccea305cd029646","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:565","documentationLinks":[]},"1327:569":{"key":"d6f01f781b9a922017bc8c11e8aaae2f5b2358fc","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:565","documentationLinks":[]},"1327:573":{"key":"72d6c3444a753c3846b5ce34533c3f5a27503d3a","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:572","documentationLinks":[]},"1327:584":{"key":"d41b28e8bffda9228157b7d7c4d39ac11d29d308","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:572","documentationLinks":[]},"1327:596":{"key":"da5b3296e266afea93cbaadc145cd8947b9d66a2","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:595","documentationLinks":[]},"1327:604":{"key":"840482b48045eaa15fbfd8feb5060be27b1bbde3","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:595","documentationLinks":[]},"1327:613":{"key":"9922d90ed14e6462db60597c720b1f3babe68e7c","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:612","documentationLinks":[]},"1327:616":{"key":"c6f6213a6802979c664aa9bd723b761ae9dcba92","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:612","documentationLinks":[]},"1327:620":{"key":"357c3df4a79e217f70a68e22ae560f352105abb2","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:619","documentationLinks":[]},"1327:623":{"key":"3f71dbf6ea4a6c1bc2d2914c75b1a75c6d9c140b","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:619","documentationLinks":[]},"1327:627":{"key":"19819c98b80625f0ba4e237976a874c9dae06a63","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:626","documentationLinks":[]},"1327:630":{"key":"4810f6dd3200718aeccaa68b8d0acfbec1ca2781","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:626","documentationLinks":[]},"1327:634":{"key":"1cf3035ebb3ee275e6975474a013330555797150","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:633","documentationLinks":[]},"1327:637":{"key":"ab59dd5ee33f275664f935ff7ea7dbd0be60d7a3","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:633","documentationLinks":[]},"1327:641":{"key":"ab9143fe7333951348f162b9c35c144a1daa25da","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:640","documentationLinks":[]},"1327:644":{"key":"cae04d1faaa7705b77929c584c0485811760665e","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:640","documentationLinks":[]},"1327:648":{"key":"02ba884bef3d7986ca807855863880766a7dd2d2","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:647","documentationLinks":[]},"1327:654":{"key":"8a678ddf87fab5b2bfd8ed36c731f646e68ba8c7","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:647","documentationLinks":[]},"1327:661":{"key":"a207aaae5c7d75f67ad36294f65376ecfb738a01","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:660","documentationLinks":[]},"1327:664":{"key":"d2a1f8b4329dc9b22a890f22e237f9c8ee4e0adc","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:660","documentationLinks":[]},"1327:668":{"key":"7b5931ed96438edf78642ebe2be7219408bbd839","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:667","documentationLinks":[]},"1327:673":{"key":"0b70cc1666a85e76e06619c66dcce28f81e5c8fa","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:667","documentationLinks":[]},"1327:679":{"key":"2cdc6858dea4722c518638eab675bff0e6c15955","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:678","documentationLinks":[]},"1327:682":{"key":"1554ca67b95538b38d3feea9ec9e8b76bc97b4ef","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:678","documentationLinks":[]},"1327:686":{"key":"2e2280f5853fc7ae9764504cec346ffce8842f5d","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:685","documentationLinks":[]},"1327:695":{"key":"e16cd6648b938b9d1d5fb8d9ae8314182c112b77","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:685","documentationLinks":[]},"1327:705":{"key":"7c6142516f91d9bad2d851a5839cf19fed57fbdd","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:704","documentationLinks":[]},"1327:717":{"key":"3501a7a21024d1238447efe55712bacdf84ceafe","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:704","documentationLinks":[]},"1327:730":{"key":"188139807ff9cefe5ff90fcfe5fb5a0e27d2af64","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:729","documentationLinks":[]},"1327:744":{"key":"177984534909a700d16230bb0626228705d834f7","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:729","documentationLinks":[]},"1327:759":{"key":"97c55557aec8dbece6e0c19fe237df45bab9b95b","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:758","documentationLinks":[]},"1327:762":{"key":"44d8975ea1a103a8a51be0886d1b4427052ce5e6","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:758","documentationLinks":[]},"1327:766":{"key":"dd6513386abe56e74a3030022be436788570fee7","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:765","documentationLinks":[]},"1327:773":{"key":"3acda269c230760cedc723358e4cec2c36610a07","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:765","documentationLinks":[]},"1327:781":{"key":"8921a2f4b86b832bd127befa6b5001a0c44dd9ca","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:780","documentationLinks":[]},"1327:788":{"key":"d58e7adbe0f1cf377bac28f2aa895015f0219d25","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:780","documentationLinks":[]},"1327:796":{"key":"388a1e670a4ac9a4807f68050ae2d76d57b60ab6","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:795","documentationLinks":[]},"1327:807":{"key":"2598cccc6735f59231d029ab25a4e548ae8028c7","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:795","documentationLinks":[]},"1327:819":{"key":"a3f0199e32b5a2ce7a030d2088e581b9ec60b17a","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:818","documentationLinks":[]},"1327:822":{"key":"a151d2e87cc30912423dfa4d3aac7a85a84b0a86","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:818","documentationLinks":[]},"1327:826":{"key":"c336aae64f5f5a8c97bd6cedbc74c72ff959a3af","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:825","documentationLinks":[]},"1327:829":{"key":"ec05f92261d42ff982f4926dfc394b85a7b5a852","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:825","documentationLinks":[]},"1327:833":{"key":"fcac28d46cd047b248f8c0074439eecc73525a71","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:832","documentationLinks":[]},"1327:838":{"key":"437ba6dd5f3dca301624eb0c11563a6d999d2699","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:832","documentationLinks":[]},"1327:844":{"key":"f38a3df728914b54139e28eefe13f82853ead490","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:843","documentationLinks":[]},"1327:851":{"key":"ff82ad09567b524edad555cb9b1d2f22029f5008","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:843","documentationLinks":[]},"1327:859":{"key":"e66b5ea5931cca13e5caf3f2ed433303d8c6df20","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:858","documentationLinks":[]},"1327:862":{"key":"c509479ff10b320f3137abc7853f2e020bd35d66","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:858","documentationLinks":[]}},"componentSets":{"176:5662":{"key":"cbf0fe6f1493d9acb5f9da092c1e092661ffd5f7","name":"Add","description":"Plus, add, create, request","documentationLinks":[]},"176:5669":{"key":"eb347d64ad1a0ffea96e92bdd1fedaf91f894ebd","name":"Sort","description":"sort, reorder","documentationLinks":[]},"176:5676":{"key":"476c816bb2731239ef0d55b8874ff6852fe61fe4","name":"Content","description":"duplicate, copy, clipboard, Workcloud, WC","documentationLinks":[]},"176:5683":{"key":"a95e9a1b11930e82830dad91c4dd8f8c68b5369f","name":"Copy File","description":"","documentationLinks":[]},"176:5690":{"key":"3f9d8dfa8742bc26fccc9c0f6e1e90276411c4ba","name":"Remove Circle Outline","description":"Minus","documentationLinks":[]},"176:5697":{"key":"867aaef00117348017898031f8567926c802182a","name":"Add Circle Outline","description":"Plus","documentationLinks":[]},"176:5704":{"key":"1e516e7cbd288bc2f95f595ba2b4c25c089ec41c","name":"Remove Circle","description":"Minus, Workcloud, WC","documentationLinks":[]},"176:5711":{"key":"c2702ac3e63ecb4a29e3ac97764d2fbc64c5b922","name":"Block","description":"unclaim, cancel, do not, DNE, Workcloud, WC","documentationLinks":[]},"176:5718":{"key":"9076c146080074c5e99fd1f74bacfd5c54d36ee4","name":"Add Circle","description":"Plus","documentationLinks":[]},"176:5725":{"key":"983869598a5a08e238eb714b7375b4fbfdfbf148","name":"Remove","description":"Minus, remove, delete, Workcloud, WC","documentationLinks":[]},"176:5732":{"key":"b1f3ec1029872f0654476023993c070271e4434b","name":"Android","description":"OS","documentationLinks":[]},"176:5739":{"key":"02da4b5d3d168fc03bf72db45388cfff88cf6d4e","name":"Add Box","description":"Plus","documentationLinks":[]},"176:5746":{"key":"690bf611d9ba8d6a78c3c28fbe395ac44cc57675","name":"Remove Box","description":"Minus","documentationLinks":[]},"176:5753":{"key":"51059388245bb98ddb4f1cd0f2fd6ccf3fa6d2d7","name":"Push Pin","description":"pin, save, pushpin, mark, Workcloud, WC","documentationLinks":[]},"176:5760":{"key":"9d7edf3a6280c9fcbf34dbe9f552cdd3927c0412","name":"Send","description":"chat, message, communication, send, Workcloud, WC","documentationLinks":[]},"176:5767":{"key":"d0ba0d4e165c398d30f062dd1301e2c74c91adb0","name":"Backspace","description":"Delete, clear, remove, backspace, Workcloud, WC","documentationLinks":[]},"176:5774":{"key":"60d55f7bcc8939fba1646e93729c59f0e3417de6","name":"Flag","description":"flag, mark, Workcloud, WC","documentationLinks":[]},"176:5781":{"key":"edb8e60d1699e7d0d2e585ba93ed6989b652c835","name":"Save","description":"file, save","documentationLinks":[]},"176:5788":{"key":"855361f282b8997f75f6f26328f83c3eeef01e19","name":"Reply","description":"email, e-mail, envelope, message, reply, Workcloud, WC","documentationLinks":[]},"176:5795":{"key":"180f33ff8f0dcb0869f75101dd7e80cb36fb5739","name":"Redo","description":"redo, edit, Workcloud, WC","documentationLinks":[]},"176:5802":{"key":"55662773af7f6b841859247ab6599299fae78711","name":"Save Alt","description":"save, file, import, download, Workcloud, WC","documentationLinks":[]},"176:5809":{"key":"fcd14ef19ee15d947517edb0a13103ec0e575473","name":"Undo","description":"undo, edit, Workcloud, WC","documentationLinks":[]},"176:5816":{"key":"5c50319a70cef03422ea05db2574746f63de85a7","name":"Chart Pie","description":"report, analytics, chart, pie chart, pie-chart, piechart","documentationLinks":[]},"176:5822":{"key":"ff7d1cffd91c319c4a4cac169c4f4e291eb66314","name":"Email","description":"Mail, @, email, e-mail, envelope, message, Workcloud, WC","documentationLinks":[]},"176:5829":{"key":"2e842858b83493b6bff43874f51a467ccd2ae494","name":"Email Outline","description":"Mail, @, email, e-mail, envelope, message, Workcloud, WC, outline","documentationLinks":[]},"176:5839":{"key":"f78e6558254b20c3a7d50c0a97e0e8b592358d55","name":"Scanner","description":"mobile","documentationLinks":[]},"176:5846":{"key":"5a9c331842ee93f6db77cf3730faf89f08ffa38a","name":"Printer","description":"print, printer, Workcloud, WC","documentationLinks":[]},"176:5853":{"key":"45364c041b3552011021e4aa4f94d4187382517d","name":"Cast","description":"Chrome","documentationLinks":[]},"176:5860":{"key":"c8d5aaa229a78646e816b04773c35117548d5a7e","name":"Cast Connected","description":"Chrome","documentationLinks":[]},"176:5867":{"key":"f364c6a6f68b48d6d03751bd316c8d62416273e5","name":"Desktop","description":"","documentationLinks":[]},"176:5874":{"key":"e1ae05ebc3b0eac945d2c64120de2dcdfb9c6185","name":"Devices Ecosystem","description":"","documentationLinks":[]},"176:5881":{"key":"7c7cfed104befae2ebdd932e4363cffe3733fdb9","name":"Device Settings","description":"","documentationLinks":[]},"176:5888":{"key":"1332d478aa097d9cb591848a1d2843ef2aed7421","name":"Headphones","description":"","documentationLinks":[]},"176:5895":{"key":"a7fd94e6b6f733e7eba00867ede1eadc8033acb9","name":"Keyboard","description":"keyboard, keypad, type, Workcloud, WC","documentationLinks":[]},"176:5902":{"key":"a7f3246b66215ea043b14e9530156c584cd65769","name":"Laptop","description":"Computer","documentationLinks":[]},"176:5909":{"key":"43688d3cefa72f2bc3237769d805bb1796044d93","name":"Memory","description":"Processor, Microprocessor","documentationLinks":[]},"176:5916":{"key":"a4c37dcc364c03c81b32b25191e6672ab1e2e6aa","name":"Monitor","description":"","documentationLinks":[]},"176:5923":{"key":"adc6052bc2b202f0437bcebd72a04926c80a8998","name":"Phone Android","description":"Mobile","documentationLinks":[]},"176:5930":{"key":"d33d761829524c20a1f6a6cc4e88a432dfe1f8cd","name":"Phone iPhone","description":"Mobile","documentationLinks":[]},"176:5937":{"key":"3266c82724c4f5cd69e1a861a6fa35e4b98841da","name":"Phonelink","description":"Connected","documentationLinks":[]},"176:5944":{"key":"03ba6ba94a31a4760796d8a35b229657969ed49d","name":"Security","description":"Protect, Protection, Shield","documentationLinks":[]},"176:5951":{"key":"4ffc9025404ffc8a3ef4c8e733f4d0fdbe3e4993","name":"Video Play","description":"","documentationLinks":[]},"176:5958":{"key":"8fee21bd48fef3f5536867ca0b483c5a52b445c3","name":"Smart Phone","description":"Mobile, phone, device, Workcloud, WC","documentationLinks":[]},"176:5965":{"key":"c3f5d07881ea9a4374491a1f1ec67cb7b104e558","name":"Speaker","description":"","documentationLinks":[]},"176:5972":{"key":"5b459d11e075ecf4bc663615c10f4a09e9cbaac0","name":"Tablet","description":"","documentationLinks":[]},"176:5979":{"key":"8dbef44fe722c85f87ed4aa2438446721a456065","name":"Tablet Mac","description":"iPad","documentationLinks":[]},"176:5986":{"key":"0c3278693479899a7c014cdff625a66b878bb920","name":"TV","description":"Television","documentationLinks":[]},"176:5993":{"key":"dd2fcb897604a454798081a77cb1a6693c6e5e60","name":"Watch","description":"Smartwatch","documentationLinks":[]},"176:6003":{"key":"026e47ecab4b5822d7a006cc0c34e2253425906f","name":"Finished Download","description":"Complete, Success, Done","documentationLinks":[]},"176:6010":{"key":"0975725ec5b32c1783247274f5197886d54fe2ab","name":"Downloading","description":"","documentationLinks":[]},"176:6017":{"key":"0c3d47e0b99b8a2d6a721011e5de86c98a3b3f13","name":"Cloud","description":"","documentationLinks":[]},"176:6024":{"key":"fa65f0dd571b1981d1ef36b1a0d92669928e856e","name":"Cloud Done","description":"Check, Check Mark, Mark","documentationLinks":[]},"176:6031":{"key":"bce46f0cde2d3029a213b4a083fe9424e3d5d652","name":"Cloud Download","description":"file, download, cloud, Workcloud, WC","documentationLinks":[]},"176:6038":{"key":"8cde2e1a8cdc8505bf98f68886e009b77d70dcab","name":"Cloud Outline","description":"","documentationLinks":[]},"176:6045":{"key":"1f9b23077a5cca2527be6b0e877b42b536318cef","name":"Cloud Upload","description":"file, upload, cloud, Workcloud, WC","documentationLinks":[]},"176:6052":{"key":"06e4af58fefc9796299155aa1d75bd36d75d72d0","name":"Cloud Off","description":"Offline","documentationLinks":[]},"176:6059":{"key":"41426d9912a342b838f7f3133c2e3a2eb49907a1","name":"Folder","description":"folder, Workcloud, WC","documentationLinks":[]},"176:6066":{"key":"0e855bdc2b0f8b1b76fd4f71195fa890b4f0abf8","name":"Create New Folder","description":"Add","documentationLinks":[]},"176:6073":{"key":"64511c4804a8a1ce6c515e2536961ce82ffdf562","name":"Folder Outline","description":"","documentationLinks":[]},"176:6080":{"key":"373f5fbab000865af43afc1eb53126927b9159ac","name":"Shared Folder","description":"Network, Access","documentationLinks":[]},"176:6087":{"key":"34353c2325dbbbc0d04e0776d55c57b96ba4f95e","name":"Grid View","description":"2x2","documentationLinks":[]},"176:6102":{"key":"898dce0f408dc79374d2796db8a66612408dfa2a","name":"Upload File","description":"","documentationLinks":[]},"176:6109":{"key":"b418ad93c74479f4abc83564943b693bfc108ade","name":"JPG Attach","description":"Type, File","documentationLinks":[]},"176:6119":{"key":"c1a90a0fc4209dd1ab8061fd92fef86a92f5be60","name":"PDF Attach","description":"Type, File","documentationLinks":[]},"176:6129":{"key":"c2cbc52a8984b918c5a105fc448f6cb8720653c3","name":"PNG Attach","description":"Type, File","documentationLinks":[]},"176:6139":{"key":"57338bc2a0b2839d80bc7c208a8e26055e98e479","name":"DOC Attach","description":"Type, File","documentationLinks":[]},"176:6149":{"key":"5ff5900c067b902dca74d5512cf2ec864ac16ca0","name":"PPT Attach","description":"Type, File","documentationLinks":[]},"176:6159":{"key":"d72a937dd7196d0162f7076aefced9f1536156e1","name":"Open New Off","description":"Workcloud, WC, file, do not export, export, open in new, open, launch","documentationLinks":[]},"176:6164":{"key":"041a9e7f1ef241f385fff07aebfceaa97af1e93c","name":"Page Height","description":"Workcloud, WC, page height","documentationLinks":[]},"176:6169":{"key":"ce53fdaf4694e4166c3a590e3144f5653d856624","name":"Page Width","description":"Workcloud, WC, page height","documentationLinks":[]},"176:6174":{"key":"cf3a6a774cb9923b9976a4fea13f9fca8207652c","name":"Page Rotate","description":"Workcloud, WC, page rotate","documentationLinks":[]},"176:6179":{"key":"83ec664a107d1ac5360053807b6fc096ce84bff9","name":"Save","description":"Workcloud, WC, file, save","documentationLinks":[]},"176:6184":{"key":"51a6d9b8dcab30b3c3b1eb6e7605cda1dbc5205f","name":"Publish","description":"Workcloud, WC, file, publish","documentationLinks":[]},"176:6189":{"key":"e1e8cb0dd03cb7e59c4612d300e6dfdb4027f336","name":"File","description":"Workcloud, WC, file, note, paper","documentationLinks":[]},"176:6194":{"key":"9fc690ca5dc618d555d5ddda770e80ff005413dd","name":"Folder","description":"Workcloud, WC, project, folder, file","documentationLinks":[]},"176:6199":{"key":"fc7c807aecaf8e4ac414bda29cfec7a075ff6b33","name":"Maintenance","description":"Workcloud, WC, maintenance, repair, hammer, wrench, tools","documentationLinks":[]},"1327:5":{"key":"fa74d772647bf4646618db5f5c3a1625d8070e14","name":"Life Guard","description":"Android","documentationLinks":[]},"1327:18":{"key":"7a9402271b9decfd5801a2639e9aca2cbfa252a1","name":"Mobility DNA","description":"","documentationLinks":[]},"1327:25":{"key":"cf1ae2a65281a6c0bccde0f117e0ad0839c86b2a","name":"TekSpeech Pro","description":"","documentationLinks":[]},"1327:32":{"key":"3459fffb48a486ea6a8c88acb530e9664538492a","name":"Enterprise Browser","description":"","documentationLinks":[]},"1327:39":{"key":"59fe9624af4661995fd21e528f5b4648b01146dc","name":"AppGallery","description":"Store","documentationLinks":[]},"1327:46":{"key":"27db2f0b9d39f7a51228101aa39556e8ba1ca7a7","name":"Workforce Connect","description":"WFC","documentationLinks":[]},"1327:53":{"key":"1171a60346cc1cc50a0e0bbd77e5fb1efbf66480","name":"SimulScan","description":"Signature","documentationLinks":[]},"1327:60":{"key":"81a24a04fa4a7f8c3ce4fb3f468e538a2a8c5af7","name":"Power Precision","description":"","documentationLinks":[]},"1327:67":{"key":"74d69f9036a58a631e3bf51ac020a1659331cdfe","name":"Power Precision +","description":"","documentationLinks":[]},"1327:74":{"key":"3fe69a0892bb641d3bb1c569b9c56f49f956c9ce","name":"Mobility Security","description":"","documentationLinks":[]},"1327:81":{"key":"24c0c7e84c3e5e0a9436b11f83869e8fb70bde2e","name":"StageNow","description":"","documentationLinks":[]},"1327:94":{"key":"ad3d6d802a7bc376fe7e4d2532750ce9fad2a888","name":"EMDK","description":"Toolbox","documentationLinks":[]},"1327:101":{"key":"fb744205c2bdf134b11377fac9e5fd0a0b07e543","name":"Enterprise Keyboard","description":"Setting","documentationLinks":[]},"1327:108":{"key":"90343edb43abc6c5142f6aee76bab35fd481d9a2","name":"MDM Toolkit","description":"","documentationLinks":[]},"1327:115":{"key":"02fa7e2ad504a72e11acec2aa2ad6341ab6c6330","name":"MX","description":"Mobility, Extensions","documentationLinks":[]},"1327:122":{"key":"a1ddca9e8af3f07d0af31d1b00b3ac4f021634ad","name":"RX","description":"Prescription","documentationLinks":[]},"1327:129":{"key":"a76a36e5bd7ba2d4a1668f08f35aab7d4436e160","name":"Setting Tool","description":"","documentationLinks":[]},"1327:136":{"key":"28d3f3d08802d32fb731e8034a5709857c1ba2c8","name":"Data Wedge","description":"","documentationLinks":[]},"1327:143":{"key":"dc8b8caef21c37879e6306a5458e3ca2963551c3","name":"Application Analytics","description":"","documentationLinks":[]},"1327:150":{"key":"1caf5d165efc3f7fb2ad7fa474ca4f24005e8a4c","name":"Swipe Assist","description":"","documentationLinks":[]},"1327:157":{"key":"064bd32633184eff705cd71f6edcc44f749fd972","name":"SmartDEX","description":"","documentationLinks":[]},"1327:164":{"key":"610e7daa0dbaa6eaa48f9dff0a89e0ae68567951","name":"Direct Connect","description":"","documentationLinks":[]},"1327:171":{"key":"6bd0ca2156087395a163934f50d09d50572bc25d","name":"Remote Control","description":"","documentationLinks":[]},"1327:178":{"key":"a8d43f8e262ada8ca60de953048f3bb08d6b7141","name":"Asset Tracker Lite","description":"","documentationLinks":[]},"1327:185":{"key":"c17737032ddbd06cec19ff34ada2f0a9ed63cf4d","name":"Voice Wedge","description":"","documentationLinks":[]},"1327:200":{"key":"11148f7c3482c0b2aa5d643389c04dfb337ae8ff","name":"Device Tracker","description":"","documentationLinks":[]},"1327:211":{"key":"fe317fda46a45fd752f3b525dcab6e80b47d9548","name":"WorryFree Wi-Fi","description":"","documentationLinks":[]},"1327:218":{"key":"737e6fa2fdfea23be063a19dcd0079cea879adbd","name":"Workstation Connect","description":"","documentationLinks":[]},"1327:241":{"key":"d6824832dd615e9a10cddcaf28b6a4c0dc6cbd60","name":"OEM Config","description":"","documentationLinks":[]},"1327:256":{"key":"1ac009970d754b3c737a53b6996879b083571ca2","name":"GMS Restricted Mode","description":"","documentationLinks":[]},"1327:271":{"key":"85842a1d05987316ec2a91199ab4ecd8c6746836","name":"Zero Touch","description":"","documentationLinks":[]},"1327:284":{"key":"d567c8b1b0cd0183c57e8afcf4b86158c5978005","name":"Smart TEK","description":"","documentationLinks":[]},"1327:317":{"key":"5b0018b335d85a73c564e03c3631c725d66d7f72","name":"OCR","description":"","documentationLinks":[]},"1327:338":{"key":"0939ae271428c3c19ecce31d8b158dda18d4e51b","name":"Smart TE","description":"","documentationLinks":[]},"1327:345":{"key":"73280896599d0125f3df190f7966d2561a0d0937","name":"Smart TE Lite","description":"","documentationLinks":[]},"1327:376":{"key":"c5dcb75e6cc0ccc1d2c5b3aca2ee81e532b4b970","name":"PRZM","description":"","documentationLinks":[]},"1327:403":{"key":"fdfc455f2955e2f4381ac792c59137289556cac2","name":"Multi Code Data Formatting","description":"","documentationLinks":[]},"1327:410":{"key":"9e09e39195a0b64458e2e91e61b15bd4c5a26278","name":"Remote Management","description":"","documentationLinks":[]},"1327:417":{"key":"3c7d3578a5900a50d9429a7c77a400c2d77a5d6f","name":"Preferred Symbol","description":"","documentationLinks":[]},"1327:424":{"key":"eb6f998106dc88eb8337031c815ab49f87db8f9e","name":"Wi-Fi Friendly Mode","description":"Bluetooth","documentationLinks":[]},"1327:443":{"key":"99f6e0c14701a750e74740a2827e03145d4ffce8","name":"Intelligent Document Capture","description":"","documentationLinks":[]},"1327:470":{"key":"b8f863f07cd1ba6ae16e0610022f3399f36daa52","name":"123Scan","description":"","documentationLinks":[]},"1327:529":{"key":"e8af8d378864c0da3586e579c4c7f3d5c0b6dcd6","name":"Scan To Connect","description":"","documentationLinks":[]},"1327:548":{"key":"b0e47b062dc3af80596f33682be6c7751e4c86aa","name":"Scanner Control Application","description":"","documentationLinks":[]},"1327:565":{"key":"d1f3555489cce24b0ebed9e7201eea601959e7fd","name":"Scan Speed Analytics","description":"","documentationLinks":[]},"1327:572":{"key":"ec8650e006f7dc37ff1e993ce27e93d7ad0023f4","name":"Remote Diagnostics","description":"","documentationLinks":[]},"1327:595":{"key":"7bcea349614d95637e66fddbcaf06b4e28d82a6c","name":"123 RFID","description":"","documentationLinks":[]},"1327:612":{"key":"fc84bd6800a2ce27e57a1c543db823a2373f7b2c","name":"Blood Bag Plus","description":"","documentationLinks":[]},"1327:619":{"key":"d361b920472b59a6c5aaccc635355bef6590fa59","name":"Label Plus","description":"","documentationLinks":[]},"1327:626":{"key":"9cc37a9080b52964bb289b494bf5aac21acc0263","name":"Virtual Tether","description":"","documentationLinks":[]},"1327:633":{"key":"57ec1170fb3193fc25828ea6c7e47277435eb973","name":"Link OS","description":"","documentationLinks":[]},"1327:640":{"key":"4223ad6dd6923de5e67b24653752704ce193fc67","name":"MDM Connectors","description":"","documentationLinks":[]},"1327:647":{"key":"898f55a1df23b3fcc4c14ddd528f330187f8e4d8","name":"Browser Print","description":"","documentationLinks":[]},"1327:660":{"key":"d1abf0f98ee9e45be644b4c06b4e136510835fd9","name":"Cloud Connect","description":"","documentationLinks":[]},"1327:667":{"key":"c060801462bcd862d679571dd5f92e2522f92b6e","name":"Virtual Devices","description":"","documentationLinks":[]},"1327:678":{"key":"9861ffb6d1475b8ff328535ef5a0930073101c66","name":"Enterprise Connectors","description":"","documentationLinks":[]},"1327:685":{"key":"ede69463bd0f227ce2017e9ce7b9437f239b09af","name":"Pairing Solutions","description":"","documentationLinks":[]},"1327:704":{"key":"7a8278746ace27d38a01520a4c99b85dc3f3f1a3","name":"Scan And Pair","description":"","documentationLinks":[]},"1327:729":{"key":"cb269e1ea9c076ae3250e6f73d0853a623046e0b","name":"Zebra Designer","description":"","documentationLinks":[]},"1327:758":{"key":"4eab2fd93528b3de22f4df8b0138a3cfb9a1febe","name":"PDF Direct","description":"Print","documentationLinks":[]},"1327:765":{"key":"a211c9d29afa6fa7a7e5cf0fa31b6efd81009513","name":"Print Station","description":"","documentationLinks":[]},"1327:780":{"key":"f45c8eba47d910cd95254fedda7736162f62ac56","name":"Printer Profile Manager","description":"","documentationLinks":[]},"1327:795":{"key":"6753cb421dd07c37c426c963ac7871720e3b59d5","name":"Zebra Setup Utility","description":"","documentationLinks":[]},"1327:818":{"key":"a137efbd957879ecc966c1dc0a8697dd0a4e6f33","name":"Bluetooth Management","description":"","documentationLinks":[]},"1327:825":{"key":"a555f9fb40298e035c402ccae06df3aa14c57433","name":"Zebra OneCare","description":"","documentationLinks":[]},"1327:832":{"key":"9d26c7dbda99cae2466479d2d917dc2f6db1f338","name":"Visibility Services","description":"","documentationLinks":[]},"1327:843":{"key":"992562e87360944835a797ca34c253cc7a203c59","name":"Print Secure","description":"","documentationLinks":[]},"1327:858":{"key":"bce454710c9baf25cac336be25a63caed030a5cf","name":"Design Tools","description":"","documentationLinks":[]}},"schemaVersion":0,"styles":{"1:2":{"key":"e4fa20f35d2c34a96a908621be4749c83c9aafcb","name":"Light Mode/Text/Default","styleType":"FILL","remote":true,"description":"Use:\nPrimary text for content, Enabled text"},"1:3":{"key":"8d192dd816c3d2df612048194a289aef1b69fa8d","name":"Standard/Large Display/Heading 5","styleType":"TEXT","remote":true,"description":""},"1:4":{"key":"bbb824378ad20239be10695b3664fabc0c149627","name":"Light Mode/Border/Default","styleType":"FILL","remote":true,"description":""},"1:5":{"key":"b20b7f46602870c59b0864930b8fe432a0508343","name":"Light Mode/Icon/Default","styleType":"FILL","remote":true,"description":""},"176:625":{"key":"b20b7f46602870c59b0864930b8fe432a0508343","name":"Light Mode/Icon/Default","styleType":"FILL","remote":true,"description":""}},"name":"IconsTestPage","lastModified":"2024-05-08T12:25:21Z","thumbnailUrl":"https://s3-alpha.figma.com/thumbnails/637b2816-d1f8-4faa-ac21-e03ffef0ef67?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAQ4GOSFWC5YUK2IUR%2F20240616%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240616T120000Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=6f6557db7c429abfeb0494183ec699f76e75629e611cb1dd917deec507933093","version":"5718042825","role":"viewer","editorType":"figma","linkAccess":"inherit"} \ No newline at end of file diff --git a/test/data/figmaDoc.json b/test/data/figmaDoc.json deleted file mode 100644 index 96897759..00000000 --- a/test/data/figmaDoc.json +++ /dev/null @@ -1,16275 +0,0 @@ -{ - "document": { - "id": "0:0", - "name": "Document", - "type": "DOCUMENT", - "scrollBehavior": "SCROLLS", - "children": [ - { - "id": "156:1674", - "name": "Icons", - "type": "CANVAS", - "children": [ - { - "id": "176:5659", - "name": "Content", - "type": "FRAME", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5662", - "name": "Add", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5663", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5664", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -137, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5665", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -132, "y": -210, "width": 14, "height": 14 }, - "absoluteRenderBounds": { "x": -132, "y": -210, "width": 14, "height": 14 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -137, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -137, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5666", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5667", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -97, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5668", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -92, "y": -210, "width": 14, "height": 14 }, - "absoluteRenderBounds": { "x": -92, "y": -210, "width": 14, "height": 14 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -97, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -97, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -161, "y": -239, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -161, "y": -239, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5669", - "name": "Sort", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5670", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5671", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1143, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5672", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1144.5, "y": -212, "width": 20.68938636779785, "height": 18 }, - "absoluteRenderBounds": { "x": 1144.5, "y": -212, "width": 20.6893310546875, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null, "2": null, "3": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 1143, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1143, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5673", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5674", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1183, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5675", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1184.5, "y": -212, "width": 20.68938636779785, "height": 18 }, - "absoluteRenderBounds": { "x": 1184.5, "y": -212, "width": 20.6893310546875, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null, "2": null, "3": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 1183, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1183, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1119, "y": -239, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 1119, "y": -239, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5676", - "name": "Content", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5677", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "rotation": -1.224648970167536e-16, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5678", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 663, - "y": 24.999999999999996, - "width": 24, - "height": 24.000000000000004 - }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5679", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "rotation": 1.224648970167536e-16, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 665, "y": 26, "width": 19, "height": 22 }, - "absoluteRenderBounds": { "x": 665, "y": 26, "width": 19, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { - "x": 663, - "y": 24.999999999999996, - "width": 24, - "height": 24.000000000000004 - }, - "absoluteRenderBounds": { - "x": 663, - "y": 24.999999999999996, - "width": 24, - "height": 24.000000000000004 - }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5680", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5681", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 703, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5682", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 705, "y": 26, "width": 19, "height": 22 }, - "absoluteRenderBounds": { "x": 705, "y": 26, "width": 19, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 703, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 703, "y": 25, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 639, "y": 1, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 639, "y": 1, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5683", - "name": "Copy File", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5684", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5685", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 343, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5686", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 345, "y": 26, "width": 19, "height": 22 }, - "absoluteRenderBounds": { "x": 345, "y": 26, "width": 19, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 343, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 343, "y": 25, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5687", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5688", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 383, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5689", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 385, "y": 26, "width": 19, "height": 22 }, - "absoluteRenderBounds": { "x": 385, "y": 26, "width": 19, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 383, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 383, "y": 25, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 319, "y": 1, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 319, "y": 1, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5690", - "name": "Remove Circle Outline", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5691", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5692", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 343, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5693", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 345, "y": -213, "width": 20, "height": 20 }, - "absoluteRenderBounds": { "x": 345, "y": -213, "width": 20, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 343, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 343, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5694", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5695", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 383, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5696", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 385, "y": -213, "width": 20, "height": 20 }, - "absoluteRenderBounds": { "x": 385, "y": -213, "width": 20, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 383, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 383, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 319, "y": -239, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 319, "y": -239, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5697", - "name": "Add Circle Outline", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5698", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5699", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 183, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5700", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 185, "y": -213, "width": 20, "height": 20 }, - "absoluteRenderBounds": { "x": 185, "y": -213, "width": 20, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 183, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 183, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5701", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5702", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 223, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5703", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 225, "y": -213, "width": 20, "height": 20 }, - "absoluteRenderBounds": { "x": 225, "y": -213, "width": 20, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 223, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 223, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 159, "y": -239, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 159, "y": -239, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5704", - "name": "Remove Circle", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5705", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5706", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 663, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5707", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 665, "y": -213, "width": 20, "height": 20 }, - "absoluteRenderBounds": { "x": 665, "y": -213, "width": 20, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 663, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 663, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5708", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5709", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 703, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5710", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 705, "y": -213, "width": 20, "height": 20 }, - "absoluteRenderBounds": { "x": 705, "y": -213, "width": 20, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 703, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 703, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 639, "y": -239, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 639, "y": -239, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5711", - "name": "Block", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5712", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5713", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 183, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5714", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 185, "y": 27, "width": 20, "height": 20 }, - "absoluteRenderBounds": { "x": 185, "y": 27, "width": 20, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 183, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 183, "y": 25, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5715", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5716", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 223, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5717", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 225, "y": 27, "width": 20, "height": 20 }, - "absoluteRenderBounds": { "x": 225, "y": 27, "width": 20, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 223, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 223, "y": 25, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 159, "y": 1, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 159, "y": 1, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5718", - "name": "Add Circle", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5719", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5720", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 503, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5721", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 505, "y": -213, "width": 20, "height": 20 }, - "absoluteRenderBounds": { "x": 505, "y": -213, "width": 20, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 503, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 503, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5722", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5723", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 543, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5724", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 545, "y": -213, "width": 20, "height": 20 }, - "absoluteRenderBounds": { "x": 545, "y": -213, "width": 20, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 543, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 543, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 479, "y": -239, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 479, "y": -239, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5725", - "name": "Remove", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5726", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5727", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 23, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5728", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 28, "y": -204, "width": 14, "height": 2 }, - "absoluteRenderBounds": { "x": 28, "y": -204, "width": 14, "height": 2 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 23, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 23, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5729", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5730", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 63, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5731", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 68, "y": -204, "width": 14, "height": 2 }, - "absoluteRenderBounds": { "x": 68, "y": -204, "width": 14, "height": 2 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 63, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 63, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1, "y": -239, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1, "y": -239, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5732", - "name": "Android", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5733", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5734", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 503, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5735", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 506, "y": 26, "width": 18.603267669677734, "height": 22 }, - "absoluteRenderBounds": { "x": 506, "y": 26, "width": 18.603271484375, "height": 22 }, - "preserveRatio": true, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 503, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 503, "y": 25, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5736", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5737", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 543, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5738", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 546, "y": 26, "width": 18.603267669677734, "height": 22 }, - "absoluteRenderBounds": { "x": 546, "y": 26, "width": 18.603271484375, "height": 22 }, - "preserveRatio": true, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 543, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 543, "y": 25, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 479, "y": 1, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 479, "y": 1, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5739", - "name": "Add Box", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5740", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5741", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 823, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5742", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 826, "y": -212, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 826, "y": -212, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 823, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 823, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5743", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5744", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 863, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5745", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 866, "y": -212, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 866, "y": -212, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 863, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 863, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 799, "y": -239, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 799, "y": -239, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5746", - "name": "Remove Box", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5747", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5748", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 983, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5749", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 986, "y": -212, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 986, "y": -212, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 983, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 983, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5750", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5751", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1023, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5752", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1026, "y": -212, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 1026, "y": -212, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1023, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1023, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 959, "y": -239, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 959, "y": -239, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5753", - "name": "Push Pin", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5754", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5755", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 23, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5756", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 28, "y": -93, "width": 14, "height": 20 }, - "absoluteRenderBounds": { "x": 28, "y": -93, "width": 14, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 23, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 23, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5757", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5758", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 63, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5759", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 68, "y": -93, "width": 14, "height": 20 }, - "absoluteRenderBounds": { "x": 68, "y": -93, "width": 14, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 63, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 63, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1, "y": -119, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1, "y": -119, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5760", - "name": "Send", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5761", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5762", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 183, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5763", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 185, - "y": -91.48487854003906, - "width": 19.457500457763672, - "height": 16.96976089477539 - }, - "absoluteRenderBounds": { - "x": 185, - "y": -91.48487854003906, - "width": 19.457504272460938, - "height": 16.969757080078125 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 183, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 183, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5764", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5765", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 223, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5766", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 225, "y": -92, "width": 21, "height": 18 }, - "absoluteRenderBounds": { "x": 225, "y": -92, "width": 21, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 223, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 223, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 159, "y": -119, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 159, "y": -119, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5767", - "name": "Backspace", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5768", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5769", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 343, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5770", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 343.2049865722656, - "y": -92, - "width": 23.795000076293945, - "height": 18 - }, - "absoluteRenderBounds": { - "x": 343.2049865722656, - "y": -92, - "width": 23.795013427734375, - "height": 18 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 343, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 343, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5771", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5772", - "name": "Backspace", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 383, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5773", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 383, "y": -92, "width": 24, "height": 18 }, - "absoluteRenderBounds": { "x": 383, "y": -92, "width": 24, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 383, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 383, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 319, "y": -119, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 319, "y": -119, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5774", - "name": "Flag", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5775", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5776", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 503, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5777", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 508, "y": -91, "width": 15, "height": 17 }, - "absoluteRenderBounds": { "x": 508, "y": -91, "width": 15, "height": 17 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 503, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 503, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5778", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5779", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 543, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5780", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 548, "y": -91, "width": 15, "height": 17 }, - "absoluteRenderBounds": { "x": 548, "y": -91, "width": 15, "height": 17 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 543, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 543, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 479, "y": -119, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 479, "y": -119, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5781", - "name": "Save", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5782", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5783", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 663, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5784", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 666, "y": -92, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 666, "y": -92, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 663, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 663, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5785", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5786", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 703, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5787", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 706, "y": -92, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 706, "y": -92, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 703, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 703, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 639, "y": -119, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 639, "y": -119, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5788", - "name": "Reply", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5789", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5790", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 983, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5791", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 986.407470703125, - "y": -88.59400939941406, - "width": 17.592500686645508, - "height": 13.594012260437012 - }, - "absoluteRenderBounds": { - "x": 986.407470703125, - "y": -88.59400939941406, - "width": 17.592529296875, - "height": 13.594009399414062 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 983, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 983, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5792", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5793", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1023, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5794", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1026, "y": -90, "width": 18, "height": 15 }, - "absoluteRenderBounds": { "x": 1026, "y": -90, "width": 18, "height": 15 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1023, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1023, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 959, "y": -119, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 959, "y": -119, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5795", - "name": "Redo", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5796", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5797", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1143, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5798", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 1144.9423828125, - "y": -87, - "width": 20.05765724182129, - "height": 8 - }, - "absoluteRenderBounds": { "x": 1144.9423828125, "y": -87, "width": 20.0576171875, "height": 8 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1143, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1143, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5799", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5800", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1183, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5801", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 1184.5400390625, - "y": -88, - "width": 20.459999084472656, - "height": 9 - }, - "absoluteRenderBounds": { "x": 1184.5400390625, "y": -88, "width": 20.4599609375, "height": 9 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1183, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1183, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1119, "y": -119, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 1119, "y": -119, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5802", - "name": "Save Alt", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5803", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5804", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 823, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5805", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 826, "y": -92, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 826, "y": -92, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 823, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 823, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5806", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5807", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 863, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5808", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 866, "y": -92, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 866, "y": -92, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 863, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 863, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 799, "y": -119, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 799, "y": -119, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5809", - "name": "Undo", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5810", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5811", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1303, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5812", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1305, "y": -87, "width": 20.067657470703125, "height": 8 }, - "absoluteRenderBounds": { "x": 1305, "y": -87, "width": 20.067626953125, "height": 8 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1303, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1303, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5813", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5814", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1343, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5815", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1345, "y": -88, "width": 20.469999313354492, "height": 9 }, - "absoluteRenderBounds": { "x": 1345, "y": -88, "width": 20.469970703125, "height": 9 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1343, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1343, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1279, "y": -119, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 1279, "y": -119, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5816", - "name": "Chart Pie", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5817", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5818", - "name": "Rectangle 1756", - "type": "RECTANGLE", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 860, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5819", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 862, "y": 27, "width": 20, "height": 20 }, - "absoluteRenderBounds": { - "x": 862, - "y": 27.028961181640625, - "width": 19.970947265625, - "height": 19.94207763671875 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 860, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 860, "y": 25, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5820", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5821", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 826, "y": 27, "width": 20, "height": 20 }, - "absoluteRenderBounds": { - "x": 826, - "y": 27.028961181640625, - "width": 19.970947265625, - "height": 19.94207763671875 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 824, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 824, "y": 25, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 799, "y": 1, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 799, "y": 1, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.5921568870544434, "g": 0.27843138575553894, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "strokeDashes": [10, 5], - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5822", - "name": "Email", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5823", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5824", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -137, "y": 137, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5825", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -135, "y": 141, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": -135, "y": 141, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -137, "y": 137, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -137, "y": 137, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5826", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5827", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -97, "y": 137, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5828", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -95, "y": 141, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": -95, "y": 141, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -97, "y": 137, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -97, "y": 137, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -161, "y": 113, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -161, "y": 113, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5829", - "name": "Email Outline", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5830", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5831", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 23, "y": 137, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5832", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 25, "y": 141, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": 25, "y": 141, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 23, "y": 137, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 23, "y": 137, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5833", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5834", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 63, "y": 137, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5835", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 65, "y": 141, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": 65, "y": 141, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 63, "y": 137, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 63, "y": 137, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1, "y": 113, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1, "y": 113, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -257, "y": -432, "width": 1744, "height": 1280 }, - "absoluteRenderBounds": { "x": -257, "y": -432, "width": 1744, "height": 1280 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "clipsContent": true, - "background": [{ "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 1, "g": 1, "b": 1, "a": 1 } }], - "fills": [{ "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 1, "g": 1, "b": 1, "a": 1 } }], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 1, "g": 1, "b": 1, "a": 1 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5836", - "name": "Hardware", - "type": "FRAME", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5837", - "name": "Hardware", - "type": "TEXT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2105, "y": -352, "width": 109, "height": 32 }, - "absoluteRenderBounds": { - "x": -2102.93603515625, - "y": -344.760009765625, - "width": 104.982421875, - "height": 18.048004150390625 - }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.11372549086809158, "g": 0.11764705926179886, "b": 0.13725490868091583, "a": 1 } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "OUTSIDE", - "styles": { "fill": "1:2", "text": "1:3" }, - "exportSettings": [], - "effects": [], - "characters": "Hardware", - "style": { - "fontFamily": "IBM Plex Sans", - "fontPostScriptName": "IBMPlexSans-Medium", - "fontWeight": 500, - "textAutoResize": "WIDTH_AND_HEIGHT", - "fontSize": 24, - "textAlignHorizontal": "LEFT", - "textAlignVertical": "TOP", - "letterSpacing": 0, - "lineHeightPx": 32, - "lineHeightPercent": 102.5641098022461, - "lineHeightPercentFontSize": 133.3333282470703, - "lineHeightUnit": "PIXELS" - }, - "layoutVersion": 3, - "characterStyleOverrides": [], - "styleOverrideTable": {}, - "lineTypes": ["NONE"], - "lineIndentations": [0] - }, - { - "id": "176:5838", - "name": "Line", - "type": "RECTANGLE", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2105, "y": -304, "width": 1552, "height": 1 }, - "absoluteRenderBounds": { "x": -2105, "y": -304, "width": 1552, "height": 1 }, - "constraints": { "vertical": "TOP", "horizontal": "CENTER" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.8784313797950745, "g": 0.8901960849761963, "b": 0.9137254953384399, "a": 1 } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:4" }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5839", - "name": "Scanner", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5840", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5841", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1121, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5842", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1119, "y": -92, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": -1119, "y": -92, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1121, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1121, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5843", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5844", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1081, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5845", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1079, "y": -92, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": -1079, "y": -92, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1081, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1081, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1145, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1145, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5846", - "name": "Printer", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5847", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5848", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -961, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5849", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -959, "y": -93, "width": 20, "height": 18 }, - "absoluteRenderBounds": { "x": -959, "y": -93, "width": 20, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -961, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -961, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5850", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5851", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -921, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5852", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -919, "y": -93, "width": 20, "height": 18 }, - "absoluteRenderBounds": { "x": -919, "y": -93, "width": 20, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -921, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -921, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -985, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -985, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5853", - "name": "Cast", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5854", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5855", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2081, "y": 24, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5856", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2080, "y": 27, "width": 22, "height": 18 }, - "absoluteRenderBounds": { "x": -2080, "y": 27, "width": 22, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -2081, "y": 24, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -2081, "y": 24, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5857", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5858", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2041, "y": 24, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5859", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2040, "y": 27, "width": 22, "height": 18 }, - "absoluteRenderBounds": { "x": -2040, "y": 27, "width": 22, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -2041, "y": 24, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -2041, "y": 24, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -2105, "y": 0, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -2105, "y": 0, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5860", - "name": "Cast Connected", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5861", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5862", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1921, "y": 24, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5863", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1920, "y": 27, "width": 22, "height": 18 }, - "absoluteRenderBounds": { "x": -1920, "y": 27, "width": 22, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1921, "y": 24, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1921, "y": 24, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5864", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5865", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1881, "y": 24, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5866", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1880, "y": 27, "width": 22, "height": 18 }, - "absoluteRenderBounds": { "x": -1880, "y": 27, "width": 22, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1881, "y": 24, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1881, "y": 24, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [ - { - "blendMode": "NORMAL", - "visible": false, - "type": "SOLID", - "color": { "r": 1, "g": 1, "b": 1, "a": 1 } - } - ], - "fills": [ - { - "blendMode": "NORMAL", - "visible": false, - "type": "SOLID", - "color": { "r": 1, "g": 1, "b": 1, "a": 1 } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1945, "y": 0, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1945, "y": 0, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5867", - "name": "Desktop", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5868", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5869", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -638, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5870", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -637, "y": -214, "width": 22, "height": 20 }, - "absoluteRenderBounds": { "x": -637, "y": -214, "width": 22, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -638, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -638, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5871", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5872", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -598, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5873", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -597, "y": -214, "width": 22, "height": 20 }, - "absoluteRenderBounds": { "x": -597, "y": -214, "width": 22, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -598, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -598, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -662, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -662, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5874", - "name": "Devices Ecosystem", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5875", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5876", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2081, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5877", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2080, "y": -92, "width": 22, "height": 16 }, - "absoluteRenderBounds": { "x": -2080, "y": -92, "width": 22, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -2081, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -2081, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5878", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5879", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2041, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5880", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2040, "y": -92, "width": 22, "height": 16 }, - "absoluteRenderBounds": { "x": -2040, "y": -92, "width": 22, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -2041, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -2041, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -2105, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -2105, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5881", - "name": "Device Settings", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5882", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5883", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1921, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5884", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": -1917.81494140625, - "y": -95, - "width": 17.81491470336914, - "height": 22 - }, - "absoluteRenderBounds": { - "x": -1917.81494140625, - "y": -95, - "width": 17.81494140625, - "height": 22 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1921, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1921, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5885", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5886", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1881, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5887", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": -1877.97021484375, - "y": -95, - "width": 17.969999313354492, - "height": 22 - }, - "absoluteRenderBounds": { - "x": -1877.97021484375, - "y": -95, - "width": 17.969970703125, - "height": 22 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1881, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1881, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1945, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1945, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5888", - "name": "Headphones", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5889", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5890", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1761, "y": 24, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5891", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1758, "y": 27, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": -1758, "y": 27, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1761, "y": 24, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1761, "y": 24, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5892", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5893", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1721, "y": 24, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5894", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1718, "y": 27, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": -1718, "y": 27, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1721, "y": 24, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1721, "y": 24, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1785, "y": 0, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1785, "y": 0, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5895", - "name": "Keyboard", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5896", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5897", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1601, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5898", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1599, "y": -91, "width": 20, "height": 14 }, - "absoluteRenderBounds": { "x": -1599, "y": -91, "width": 20, "height": 14 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1601, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1601, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5899", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5900", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1561, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5901", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1559, "y": -91, "width": 20, "height": 14 }, - "absoluteRenderBounds": { "x": -1559, "y": -91, "width": 20, "height": 14 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1561, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1561, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1625, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1625, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5902", - "name": "Laptop", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5903", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5904", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1601, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5905", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1601, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": -1601, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1601, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1601, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5906", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5907", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1561, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5908", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1561, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": -1561, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1561, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1561, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1625, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1625, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5909", - "name": "Memory", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5910", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5911", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1761, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5912", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1758, "y": -93, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": -1758, "y": -93, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1761, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1761, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5913", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5914", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1721, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5915", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1718, "y": -93, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": -1718, "y": -93, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1721, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1721, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1785, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1785, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5916", - "name": "Monitor", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5917", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5918", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -801, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5919", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -799, "y": -213, "width": 19.990081787109375, "height": 18 }, - "absoluteRenderBounds": { "x": -799, "y": -213, "width": 19.9901123046875, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -801, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -801, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5920", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5921", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -761, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5922", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -759, "y": -213, "width": 20, "height": 18 }, - "absoluteRenderBounds": { "x": -759, "y": -213, "width": 20, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -761, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -761, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -825, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -825, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5923", - "name": "Phone Android", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5924", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5925", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2081, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5926", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2076, "y": -215, "width": 14, "height": 22 }, - "absoluteRenderBounds": { "x": -2076, "y": -215, "width": 14, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -2081, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -2081, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5927", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5928", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2041, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5929", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2036, "y": -215, "width": 14, "height": 22 }, - "absoluteRenderBounds": { "x": -2036, "y": -215, "width": 14, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -2041, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -2041, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -2105, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -2105, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5930", - "name": "Phone iPhone", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5931", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5932", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1921, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5933", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1916, "y": -215, "width": 13, "height": 22 }, - "absoluteRenderBounds": { "x": -1916, "y": -215, "width": 13, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1921, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1921, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5934", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5935", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1881, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5936", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1876, "y": -215, "width": 13, "height": 22 }, - "absoluteRenderBounds": { "x": -1876, "y": -215, "width": 13, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1881, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1881, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1945, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1945, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5937", - "name": "Phonelink", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5938", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5939", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1441, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5940", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1441, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": -1441, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1441, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1441, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5941", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5942", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1401, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5943", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1401, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": -1401, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1401, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1401, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1465, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1465, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5944", - "name": "Security", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5945", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5946", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -641, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5947", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -638, "y": -94.8125, "width": 18, "height": 21.8125 }, - "absoluteRenderBounds": { "x": -638, "y": -94.8125, "width": 18, "height": 21.8125 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -641, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -641, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5948", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5949", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -601, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5950", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -598, "y": -95, "width": 18, "height": 22 }, - "absoluteRenderBounds": { "x": -598, "y": -95, "width": 18, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -601, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -601, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -665, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -665, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5951", - "name": "Video Play", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5952", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5953", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -801, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5954", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -799, "y": -92, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": -799, "y": -92, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -801, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -801, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5955", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5956", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -761, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5957", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -759, "y": -92, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": -759, "y": -92, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -761, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -761, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -825, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -825, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5958", - "name": "Smart Phone", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5959", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5960", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1761, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5961", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1756, "y": -215, "width": 14, "height": 22 }, - "absoluteRenderBounds": { "x": -1756, "y": -215, "width": 14, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1761, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1761, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5962", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5963", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1721, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5964", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1716, "y": -215, "width": 14, "height": 22 }, - "absoluteRenderBounds": { "x": -1716, "y": -215, "width": 14, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1721, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1721, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1785, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1785, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5965", - "name": "Speaker", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5966", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5967", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1281, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5968", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1276, "y": -94, "width": 14, "height": 20 }, - "absoluteRenderBounds": { "x": -1276, "y": -94, "width": 14, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1281, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1281, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5969", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5970", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1241, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5971", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1236, "y": -94, "width": 14, "height": 19.989999771118164 }, - "absoluteRenderBounds": { "x": -1236, "y": -94, "width": 14, "height": 19.98999786376953 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1241, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1241, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1305, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1305, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5972", - "name": "Tablet", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5973", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5974", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1281, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5975", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1280, "y": -212, "width": 22, "height": 16 }, - "absoluteRenderBounds": { "x": -1280, "y": -212, "width": 22, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1281, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1281, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5976", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5977", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1241, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5978", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1240, "y": -212, "width": 22, "height": 16 }, - "absoluteRenderBounds": { "x": -1240, "y": -212, "width": 22, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1241, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1241, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1305, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1305, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5979", - "name": "Tablet Mac", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5980", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5981", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1121, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5982", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1119, "y": -216, "width": 19, "height": 24 }, - "absoluteRenderBounds": { "x": -1119, "y": -216, "width": 19, "height": 24 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1121, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1121, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5983", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5984", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1081, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5985", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1079, "y": -216, "width": 19, "height": 24 }, - "absoluteRenderBounds": { "x": -1079, "y": -216, "width": 19, "height": 24 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1081, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1081, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1145, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1145, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5986", - "name": "TV", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5987", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5988", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -961, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5989", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -960, "y": -213, "width": 22, "height": 18 }, - "absoluteRenderBounds": { "x": -960, "y": -213, "width": 22, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -961, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -961, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5990", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5991", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -921, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5992", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -920, "y": -213, "width": 22, "height": 18 }, - "absoluteRenderBounds": { "x": -920, "y": -213, "width": 22, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -921, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -921, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -985, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -985, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5993", - "name": "Watch", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5994", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5995", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1441, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5996", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1437, "y": -96, "width": 16, "height": 24 }, - "absoluteRenderBounds": { "x": -1437, "y": -96, "width": 16, "height": 24 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1441, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1441, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5997", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5998", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1401, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5999", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1397, "y": -96, "width": 16, "height": 24 }, - "absoluteRenderBounds": { "x": -1397, "y": -96, "width": 16, "height": 24 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1401, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1401, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1465, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1465, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -2201, "y": -432, "width": 1744, "height": 1280 }, - "absoluteRenderBounds": { "x": -2201, "y": -432, "width": 1744, "height": 1280 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "clipsContent": true, - "background": [{ "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 1, "g": 1, "b": 1, "a": 1 } }], - "fills": [{ "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 1, "g": 1, "b": 1, "a": 1 } }], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 1, "g": 1, "b": 1, "a": 1 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6000", - "name": "File", - "type": "FRAME", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6001", - "name": "File", - "type": "TEXT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1840, "y": -352, "width": 41, "height": 32 }, - "absoluteRenderBounds": { - "x": 1842.06396484375, - "y": -344.8559875488281, - "width": 37.130859375, - "height": 18.14398193359375 - }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.11372549086809158, "g": 0.11764705926179886, "b": 0.13725490868091583, "a": 1 } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "OUTSIDE", - "styles": { "fill": "1:2", "text": "1:3" }, - "exportSettings": [], - "effects": [], - "characters": "File", - "style": { - "fontFamily": "IBM Plex Sans", - "fontPostScriptName": "IBMPlexSans-Medium", - "fontWeight": 500, - "textAutoResize": "WIDTH_AND_HEIGHT", - "fontSize": 24, - "textAlignHorizontal": "LEFT", - "textAlignVertical": "TOP", - "letterSpacing": 0, - "lineHeightPx": 32, - "lineHeightPercent": 102.5641098022461, - "lineHeightPercentFontSize": 133.3333282470703, - "lineHeightUnit": "PIXELS" - }, - "layoutVersion": 3, - "characterStyleOverrides": [], - "styleOverrideTable": {}, - "lineTypes": ["NONE"], - "lineIndentations": [0] - }, - { - "id": "176:6002", - "name": "Line", - "type": "RECTANGLE", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1840, "y": -304, "width": 1552, "height": 1 }, - "absoluteRenderBounds": { "x": 1840, "y": -304, "width": 1552, "height": 1 }, - "constraints": { "vertical": "TOP", "horizontal": "CENTER" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.8784313797950745, "g": 0.8901960849761963, "b": 0.9137254953384399, "a": 1 } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:4" }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6003", - "name": "Finished Download", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6004", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6005", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1859, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6006", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 1864, - "y": -211.43499755859375, - "width": 14, - "height": 15.4350004196167 - }, - "absoluteRenderBounds": { - "x": 1864, - "y": -211.43499755859375, - "width": 14, - "height": 15.43499755859375 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1859, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1859, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6007", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6008", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1899, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6009", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1904, "y": -212, "width": 14, "height": 16 }, - "absoluteRenderBounds": { "x": 1904, "y": -212, "width": 14, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1899, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1899, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1835, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 1835, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6010", - "name": "Downloading", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6011", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6012", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2019, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6013", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 2021, - "y": -213.7744140625, - "width": 19.77721405029297, - "height": 19.558454513549805 - }, - "absoluteRenderBounds": { - "x": 2021, - "y": -213.7744140625, - "width": 19.7772216796875, - "height": 19.558456420898438 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2019, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2019, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6014", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6015", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2059, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6016", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 2061, - "y": -213.9499969482422, - "width": 19.950000762939453, - "height": 19.900001525878906 - }, - "absoluteRenderBounds": { - "x": 2061, - "y": -213.9499969482422, - "width": 19.949951171875, - "height": 19.900009155273438 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2059, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2059, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1995, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 1995, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6017", - "name": "Cloud", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6018", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6019", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2179, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6020", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2179, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": 2179, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2179, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2179, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6021", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6022", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2219, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6023", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2219, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": 2219, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2219, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2219, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2155, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 2155, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6024", - "name": "Cloud Done", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6025", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6026", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2499, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6027", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2499, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": 2499, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2499, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2499, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6028", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6029", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2539, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6030", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2539, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": 2539, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2539, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2539, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2475, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 2475, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6031", - "name": "Cloud Download", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6032", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6033", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2659, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6034", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2659, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": 2659, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2659, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2659, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6035", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6036", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2699, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6037", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2699, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": 2699, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2699, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2699, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2635, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 2635, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6038", - "name": "Cloud Outline", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6039", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6040", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2339, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6041", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2339, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": 2339, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2339, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2339, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6042", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6043", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2379, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6044", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2379, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": 2379, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2379, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2379, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2315, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 2315, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6045", - "name": "Cloud Upload", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6046", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6047", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2819, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6048", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2819, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": 2819, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2819, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2819, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6049", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6050", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2859, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6051", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2859, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": 2859, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2859, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2859, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2795, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 2795, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6052", - "name": "Cloud Off", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6053", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6054", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2979, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6055", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 2979.002685546875, - "y": -212, - "width": 23.997297286987305, - "height": 17.582500457763672 - }, - "absoluteRenderBounds": { - "x": 2979.002685546875, - "y": -212, - "width": 23.997314453125, - "height": 17.582504272460938 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2979, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2979, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6056", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6057", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3019, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6058", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 3019, - "y": -212.13999938964844, - "width": 24, - "height": 18.139999389648438 - }, - "absoluteRenderBounds": { - "x": 3019, - "y": -212.13999938964844, - "width": 24, - "height": 18.139999389648438 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3019, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 3019, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2955, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 2955, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6059", - "name": "Folder", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6060", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6061", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1864, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6062", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1866, "y": -92, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": 1866, "y": -92, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1864, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1864, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6063", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6064", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1904, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6065", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1906, "y": -92, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": 1906, "y": -92, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1904, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1904, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1840, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 1840, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6066", - "name": "Create New Folder", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6067", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6068", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2184, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6069", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2186, "y": -92, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": 2186, "y": -92, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2184, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2184, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6070", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6071", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2224, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6072", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2226, "y": -92, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": 2226, "y": -92, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2224, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2224, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2160, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 2160, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6073", - "name": "Folder Outline", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6074", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6075", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2024, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6076", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2026, "y": -92, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": 2026, "y": -92, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2024, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2024, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6077", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6078", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2064, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6079", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2066, "y": -92, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": 2066, "y": -92, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2064, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2064, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2000, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 2000, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6080", - "name": "Shared Folder", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6081", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6082", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2344, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6083", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2346, "y": -92, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": 2346, "y": -92, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2344, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2344, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6084", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6085", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2384, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6086", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2386, "y": -92, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": 2386, "y": -92, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2384, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2384, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2320, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 2320, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6087", - "name": "Grid View", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6088", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6089", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2504, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6090", - "name": "Vector", - "type": "BOOLEAN_OPERATION", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "booleanOperation": "UNION", - "children": [ - { - "id": "176:6091", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2507, "y": -93, "width": 8, "height": 8 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 0, "g": 0, "b": 0, "a": 1 } } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6092", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2507, "y": -83, "width": 8, "height": 8 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 0, "g": 0, "b": 0, "a": 1 } } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6093", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2517, "y": -93, "width": 8, "height": 8 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 0, "g": 0, "b": 0, "a": 1 } } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6094", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2517, "y": -83, "width": 8, "height": 8 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 0, "g": 0, "b": 0, "a": 1 } } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2507, "y": -93, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 2507, "y": -93, "width": 18, "height": 18 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2504, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2504, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6095", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6096", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2544, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6097", - "name": "Vector", - "type": "BOOLEAN_OPERATION", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "booleanOperation": "UNION", - "children": [ - { - "id": "176:6098", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2547, "y": -93, "width": 8, "height": 8 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 0, "g": 0, "b": 0, "a": 1 } } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6099", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2547, "y": -83, "width": 8, "height": 8 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 0, "g": 0, "b": 0, "a": 1 } } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6100", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2557, "y": -93, "width": 8, "height": 8 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 0, "g": 0, "b": 0, "a": 1 } } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6101", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2557, "y": -83, "width": 8, "height": 8 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 0, "g": 0, "b": 0, "a": 1 } } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2547, "y": -93, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 2547, "y": -93, "width": 18, "height": 18 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2544, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2544, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2480, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 2480, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6102", - "name": "Upload File", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6103", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6104", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2664, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6105", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2668, "y": -94, "width": 16, "height": 20 }, - "absoluteRenderBounds": { "x": 2668, "y": -94, "width": 16, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2664, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2664, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6106", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6107", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2704, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6108", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2708, "y": -94, "width": 16, "height": 20 }, - "absoluteRenderBounds": { "x": 2708, "y": -94, "width": 16, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2704, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2704, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2640, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 2640, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6109", - "name": "JPG Attach", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6110", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6111", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2824, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6112", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2825, "y": -95, "width": 22, "height": 22 }, - "absoluteRenderBounds": { "x": 2825, "y": -95, "width": 22, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6113", - "name": "JPG", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 2827.5859375, - "y": -84.0999984741211, - "width": 16.662187576293945, - "height": 7.220000267028809 - }, - "absoluteRenderBounds": { - "x": 2827.5859375, - "y": -84.0999984741211, - "width": 16.662109375, - "height": 7.220001220703125 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "OUTSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2824, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2824, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6114", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6115", - "name": "Subtract", - "type": "BOOLEAN_OPERATION", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "booleanOperation": "SUBTRACT", - "children": [ - { - "id": "176:6116", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2865, "y": -95, "width": 22, "height": 22 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 0, "g": 0, "b": 0, "a": 1 } } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6117", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2867, "y": -93, "width": 18, "height": 18 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2865, "y": -95, "width": 22, "height": 22 }, - "absoluteRenderBounds": { "x": 2865, "y": -95, "width": 22, "height": 22 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6118", - "name": "JPG", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 2867.5859375, - "y": -84.0999984741211, - "width": 16.662187576293945, - "height": 7.220000267028809 - }, - "absoluteRenderBounds": { - "x": 2867.5859375, - "y": -84.0999984741211, - "width": 16.662109375, - "height": 7.220001220703125 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "OUTSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2864, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2864, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2800, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 2800, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6119", - "name": "PDF Attach", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6120", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6121", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3144, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6122", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3145, "y": -95, "width": 22, "height": 22 }, - "absoluteRenderBounds": { "x": 3145, "y": -95, "width": 22, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6123", - "name": "PDF", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 3147.9658203125, - "y": -83.9800033569336, - "width": 16.262189865112305, - "height": 6.980000019073486 - }, - "absoluteRenderBounds": { - "x": 3147.9658203125, - "y": -83.9800033569336, - "width": 16.26220703125, - "height": 6.980003356933594 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "OUTSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3144, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 3144, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6124", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6125", - "name": "Subtract", - "type": "BOOLEAN_OPERATION", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "booleanOperation": "SUBTRACT", - "children": [ - { - "id": "176:6126", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3185, "y": -95, "width": 22, "height": 22 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 0, "g": 0, "b": 0, "a": 1 } } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6127", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3187, "y": -93, "width": 18, "height": 18 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3185, "y": -95, "width": 22, "height": 22 }, - "absoluteRenderBounds": { "x": 3185, "y": -95, "width": 22, "height": 22 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6128", - "name": "PDF", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 3187.9658203125, - "y": -83.9800033569336, - "width": 16.262189865112305, - "height": 6.980000019073486 - }, - "absoluteRenderBounds": { - "x": 3187.9658203125, - "y": -83.9800033569336, - "width": 16.26220703125, - "height": 6.980003356933594 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "OUTSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3184, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 3184, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3120, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 3120, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6129", - "name": "PNG Attach", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6130", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6131", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2984, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6132", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2985, "y": -95, "width": 22, "height": 22 }, - "absoluteRenderBounds": { "x": 2985, "y": -95, "width": 22, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6133", - "name": "PNG", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 2987.9658203125, - "y": -84.0999984741211, - "width": 16.282188415527344, - "height": 7.220000267028809 - }, - "absoluteRenderBounds": { - "x": 2987.9658203125, - "y": -84.0999984741211, - "width": 16.2822265625, - "height": 7.220001220703125 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "OUTSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2984, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2984, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6134", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6135", - "name": "Subtract", - "type": "BOOLEAN_OPERATION", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "booleanOperation": "SUBTRACT", - "children": [ - { - "id": "176:6136", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3025, "y": -95, "width": 22, "height": 22 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 0, "g": 0, "b": 0, "a": 1 } } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6137", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3027, "y": -93, "width": 18, "height": 18 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3025, "y": -95, "width": 22, "height": 22 }, - "absoluteRenderBounds": { "x": 3025, "y": -95, "width": 22, "height": 22 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6138", - "name": "PNG", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 3027.9658203125, - "y": -84.0999984741211, - "width": 16.282188415527344, - "height": 7.220000267028809 - }, - "absoluteRenderBounds": { - "x": 3027.9658203125, - "y": -84.0999984741211, - "width": 16.2822265625, - "height": 7.220001220703125 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "OUTSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3024, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 3024, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2960, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 2960, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6139", - "name": "DOC Attach", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6140", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6141", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3304, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6142", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3305, "y": -95, "width": 22, "height": 22 }, - "absoluteRenderBounds": { "x": 3305, "y": -95, "width": 22, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6143", - "name": "DOC", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 3307.845947265625, - "y": -84.0999984741211, - "width": 16.58218765258789, - "height": 7.220000267028809 - }, - "absoluteRenderBounds": { - "x": 3307.845947265625, - "y": -84.0999984741211, - "width": 16.582275390625, - "height": 7.220001220703125 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "OUTSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3304, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 3304, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6144", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6145", - "name": "Subtract", - "type": "BOOLEAN_OPERATION", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "booleanOperation": "SUBTRACT", - "children": [ - { - "id": "176:6146", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3345, "y": -95, "width": 22, "height": 22 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 0, "g": 0, "b": 0, "a": 1 } } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6147", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3347, "y": -93, "width": 18, "height": 18 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3345, "y": -95, "width": 22, "height": 22 }, - "absoluteRenderBounds": { "x": 3345, "y": -95, "width": 22, "height": 22 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6148", - "name": "DOC", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 3347.845947265625, - "y": -84.0999984741211, - "width": 16.58218765258789, - "height": 7.220000267028809 - }, - "absoluteRenderBounds": { - "x": 3347.845947265625, - "y": -84.0999984741211, - "width": 16.582275390625, - "height": 7.220001220703125 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "OUTSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3344, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 3344, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3280, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 3280, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6149", - "name": "PPT Attach", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6150", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6151", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3304, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6152", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3305, "y": -214, "width": 22, "height": 22 }, - "absoluteRenderBounds": { "x": 3305, "y": -214, "width": 22, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6153", - "name": "PPT", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 3307.9658203125, - "y": -202.97999572753906, - "width": 16.59218978881836, - "height": 6.980000019073486 - }, - "absoluteRenderBounds": { - "x": 3307.9658203125, - "y": -202.97999572753906, - "width": 16.59228515625, - "height": 6.9799957275390625 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "OUTSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3304, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 3304, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6154", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6155", - "name": "Subtract", - "type": "BOOLEAN_OPERATION", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "booleanOperation": "SUBTRACT", - "children": [ - { - "id": "176:6156", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3345, "y": -214, "width": 22, "height": 22 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 0, "g": 0, "b": 0, "a": 1 } } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6157", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3347, "y": -212, "width": 18, "height": 18 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3345, "y": -214, "width": 22, "height": 22 }, - "absoluteRenderBounds": { "x": 3345, "y": -214, "width": 22, "height": 22 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6158", - "name": "PPT", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 3347.9658203125, - "y": -202.97999572753906, - "width": 16.59218978881836, - "height": 6.980000019073486 - }, - "absoluteRenderBounds": { - "x": 3347.9658203125, - "y": -202.97999572753906, - "width": 16.59228515625, - "height": 6.9799957275390625 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "OUTSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3344, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 3344, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3280, "y": -239, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 3280, "y": -239, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6159", - "name": "Open New Off", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6160", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6161", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 1861.389892578125, - "y": 142.81005859375, - "width": 19.790000915527344, - "height": 19.80000114440918 - }, - "absoluteRenderBounds": { - "x": 1861.8028564453125, - "y": 143.00006103515625, - "width": 19.197021484375, - "height": 19.192001342773438 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null, "2": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 1860, "y": 140, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1860, "y": 140, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6162", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6163", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 1905.389892578125, - "y": 142.81005859375, - "width": 19.790000915527344, - "height": 19.80000114440918 - }, - "absoluteRenderBounds": { - "x": 1905.8028564453125, - "y": 143.00006103515625, - "width": 19.197021484375, - "height": 19.192001342773438 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null, "2": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 1904, "y": 140, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1904, "y": 140, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1840, "y": 120, "width": 108, "height": 64 }, - "absoluteRenderBounds": { "x": 1840, "y": 120, "width": 108, "height": 64 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.5921568870544434, "g": 0.27843138575553894, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 20, - "counterAxisAlignItems": "CENTER", - "primaryAxisAlignItems": "CENTER", - "paddingLeft": 20, - "paddingRight": 20, - "paddingTop": 20, - "paddingBottom": 20, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6164", - "name": "Page Height", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6165", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6166", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2024, "y": 144, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 2024, "y": 144, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "2": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2021, "y": 141, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2021, "y": 141, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6167", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6168", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2068, "y": 144, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 2068, "y": 144, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "2": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2065, "y": 141, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2065, "y": 141, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2001, "y": 121, "width": 108, "height": 64 }, - "absoluteRenderBounds": { "x": 2001, "y": 121, "width": 108, "height": 64 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.5921568870544434, "g": 0.27843138575553894, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 20, - "counterAxisAlignItems": "CENTER", - "primaryAxisAlignItems": "CENTER", - "paddingLeft": 20, - "paddingRight": 20, - "paddingTop": 20, - "paddingBottom": 20, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6169", - "name": "Page Width", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6170", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6171", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2185, "y": 144, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 2185, "y": 144, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "2": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2182, "y": 141, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2182, "y": 141, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6172", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6173", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2229, "y": 144, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 2229, "y": 144, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "2": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2226, "y": 141, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2226, "y": 141, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2162, "y": 121, "width": 108, "height": 64 }, - "absoluteRenderBounds": { "x": 2162, "y": 121, "width": 108, "height": 64 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.5921568870544434, "g": 0.27843138575553894, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 20, - "counterAxisAlignItems": "CENTER", - "primaryAxisAlignItems": "CENTER", - "paddingLeft": 20, - "paddingRight": 20, - "paddingTop": 20, - "paddingBottom": 20, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6174", - "name": "Page Rotate", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6175", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6176", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2344, "y": 141, "width": 21, "height": 21 }, - "absoluteRenderBounds": { - "x": 2344.414306640625, - "y": 141.3221893310547, - "width": 20.585693359375, - "height": 20.677810668945312 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null, "2": null, "3": null }, - "strokes": [], - "strokeWeight": 0.02500000037252903, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 2343, "y": 140, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2343, "y": 140, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6177", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6178", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2388, "y": 141, "width": 21, "height": 21 }, - "absoluteRenderBounds": { - "x": 2388.414306640625, - "y": 141.3221893310547, - "width": 20.585693359375, - "height": 20.677810668945312 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null, "2": null, "3": null }, - "strokes": [], - "strokeWeight": 0.02500000037252903, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 2387, "y": 140, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2387, "y": 140, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2323, "y": 120, "width": 108, "height": 64 }, - "absoluteRenderBounds": { "x": 2323, "y": 120, "width": 108, "height": 64 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.5921568870544434, "g": 0.27843138575553894, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 20, - "counterAxisAlignItems": "CENTER", - "primaryAxisAlignItems": "CENTER", - "paddingLeft": 20, - "paddingRight": 20, - "paddingTop": 20, - "paddingBottom": 20, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6179", - "name": "Save", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6180", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6181", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2507, "y": 143, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 2507, "y": 143, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2504, "y": 140, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2504, "y": 140, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6182", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6183", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2551, "y": 143, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 2551, "y": 143, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2548, "y": 140, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2548, "y": 140, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2484, "y": 120, "width": 108, "height": 64 }, - "absoluteRenderBounds": { "x": 2484, "y": 120, "width": 108, "height": 64 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.5921568870544434, "g": 0.27843138575553894, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 20, - "counterAxisAlignItems": "CENTER", - "primaryAxisAlignItems": "CENTER", - "paddingLeft": 20, - "paddingRight": 20, - "paddingTop": 20, - "paddingBottom": 20, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6184", - "name": "Publish", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6185", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6186", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2670, "y": 147, "width": 14, "height": 16 }, - "absoluteRenderBounds": { "x": 2670, "y": 147, "width": 14, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null, "2": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 2665, "y": 143, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2665, "y": 143, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6187", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6188", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2714, "y": 147, "width": 14, "height": 16 }, - "absoluteRenderBounds": { "x": 2714, "y": 147, "width": 14, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null, "2": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 2709, "y": 143, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2709, "y": 143, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2645, "y": 123, "width": 108, "height": 64 }, - "absoluteRenderBounds": { "x": 2645, "y": 123, "width": 108, "height": 64 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.5921568870544434, "g": 0.27843138575553894, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 20, - "counterAxisAlignItems": "CENTER", - "primaryAxisAlignItems": "CENTER", - "paddingLeft": 20, - "paddingRight": 20, - "paddingTop": 20, - "paddingBottom": 20, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6189", - "name": "File", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6190", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6191", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2830, "y": 143, "width": 16, "height": 20 }, - "absoluteRenderBounds": { "x": 2830, "y": 143, "width": 16, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 2826, "y": 141, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2826, "y": 141, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6192", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6193", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2874, "y": 143, "width": 16, "height": 20 }, - "absoluteRenderBounds": { "x": 2874, "y": 143, "width": 16, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 2870, "y": 141, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2870, "y": 141, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2806, "y": 121, "width": 108, "height": 64 }, - "absoluteRenderBounds": { "x": 2806, "y": 121, "width": 108, "height": 64 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.5921568870544434, "g": 0.27843138575553894, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 20, - "counterAxisAlignItems": "CENTER", - "primaryAxisAlignItems": "CENTER", - "paddingLeft": 20, - "paddingRight": 20, - "paddingTop": 20, - "paddingBottom": 20, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6194", - "name": "Folder", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6195", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6196", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2989, "y": 147, "width": 20, "height": 15.294116973876953 }, - "absoluteRenderBounds": { "x": 2989, "y": 147, "width": 20, "height": 15.294113159179688 }, - "preserveRatio": true, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2987, "y": 143, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2987, "y": 143, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6197", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6198", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3033, "y": 147, "width": 20, "height": 15.294116973876953 }, - "absoluteRenderBounds": { "x": 3033, "y": 147, "width": 20, "height": 15.294113159179688 }, - "preserveRatio": true, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3031, "y": 143, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 3031, "y": 143, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2967, "y": 123, "width": 108, "height": 64 }, - "absoluteRenderBounds": { "x": 2967, "y": 123, "width": 108, "height": 64 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.5921568870544434, "g": 0.27843138575553894, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 20, - "counterAxisAlignItems": "CENTER", - "primaryAxisAlignItems": "CENTER", - "paddingLeft": 20, - "paddingRight": 20, - "paddingTop": 20, - "paddingBottom": 20, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6199", - "name": "Maintenance", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6200", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6201", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 3150, - "y": 146, - "width": 19.800125122070312, - "height": 18.555572509765625 - }, - "absoluteRenderBounds": { - "x": 3150.103515625, - "y": 146, - "width": 19.0751953125, - "height": 17.93426513671875 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null, "2": null, "3": null, "4": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 3148, "y": 143, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 3148, "y": 143, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6202", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6203", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 3194, - "y": 146, - "width": 19.800125122070312, - "height": 18.555572509765625 - }, - "absoluteRenderBounds": { - "x": 3194.103515625, - "y": 146, - "width": 19.0751953125, - "height": 17.93426513671875 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null, "2": null, "3": null, "4": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 3192, "y": 143, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 3192, "y": 143, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3128, "y": 123, "width": 108, "height": 64 }, - "absoluteRenderBounds": { "x": 3128, "y": 123, "width": 108, "height": 64 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.5921568870544434, "g": 0.27843138575553894, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 20, - "counterAxisAlignItems": "CENTER", - "primaryAxisAlignItems": "CENTER", - "paddingLeft": 20, - "paddingRight": 20, - "paddingTop": 20, - "paddingBottom": 20, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1744, "y": -432, "width": 1744, "height": 1280 }, - "absoluteRenderBounds": { "x": 1744, "y": -432, "width": 1744, "height": 1280 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "clipsContent": true, - "background": [{ "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 1, "g": 1, "b": 1, "a": 1 } }], - "fills": [{ "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 1, "g": 1, "b": 1, "a": 1 } }], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 1, "g": 1, "b": 1, "a": 1 }, - "exportSettings": [], - "effects": [] - } - ] - } - ] - }, - "components": { - "176:5663": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5662", - "documentationLinks": [] - }, - "176:5666": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5662", - "documentationLinks": [] - }, - "176:5670": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5669", - "documentationLinks": [] - }, - "176:5673": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5669", - "documentationLinks": [] - }, - "176:5677": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5676", - "documentationLinks": [] - }, - "176:5680": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5676", - "documentationLinks": [] - }, - "176:5684": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5683", - "documentationLinks": [] - }, - "176:5687": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5683", - "documentationLinks": [] - }, - "176:5691": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5690", - "documentationLinks": [] - }, - "176:5694": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5690", - "documentationLinks": [] - }, - "176:5698": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5697", - "documentationLinks": [] - }, - "176:5701": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5697", - "documentationLinks": [] - }, - "176:5705": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5704", - "documentationLinks": [] - }, - "176:5708": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5704", - "documentationLinks": [] - }, - "176:5712": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5711", - "documentationLinks": [] - }, - "176:5715": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5711", - "documentationLinks": [] - }, - "176:5719": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5718", - "documentationLinks": [] - }, - "176:5722": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5718", - "documentationLinks": [] - }, - "176:5726": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5725", - "documentationLinks": [] - }, - "176:5729": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5725", - "documentationLinks": [] - }, - "176:5733": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5732", - "documentationLinks": [] - }, - "176:5736": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5732", - "documentationLinks": [] - }, - "176:5740": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5739", - "documentationLinks": [] - }, - "176:5743": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5739", - "documentationLinks": [] - }, - "176:5747": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5746", - "documentationLinks": [] - }, - "176:5750": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5746", - "documentationLinks": [] - }, - "176:5754": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5753", - "documentationLinks": [] - }, - "176:5757": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5753", - "documentationLinks": [] - }, - "176:5761": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5760", - "documentationLinks": [] - }, - "176:5764": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5760", - "documentationLinks": [] - }, - "176:5768": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5767", - "documentationLinks": [] - }, - "176:5771": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5767", - "documentationLinks": [] - }, - "176:5775": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5774", - "documentationLinks": [] - }, - "176:5778": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5774", - "documentationLinks": [] - }, - "176:5782": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5781", - "documentationLinks": [] - }, - "176:5785": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5781", - "documentationLinks": [] - }, - "176:5789": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5788", - "documentationLinks": [] - }, - "176:5792": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5788", - "documentationLinks": [] - }, - "176:5796": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5795", - "documentationLinks": [] - }, - "176:5799": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5795", - "documentationLinks": [] - }, - "176:5803": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5802", - "documentationLinks": [] - }, - "176:5806": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5802", - "documentationLinks": [] - }, - "176:5810": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5809", - "documentationLinks": [] - }, - "176:5813": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5809", - "documentationLinks": [] - }, - "176:5817": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5816", - "documentationLinks": [] - }, - "176:5820": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5816", - "documentationLinks": [] - }, - "176:5823": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5822", - "documentationLinks": [] - }, - "176:5826": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5822", - "documentationLinks": [] - }, - "176:5830": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5829", - "documentationLinks": [] - }, - "176:5833": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5829", - "documentationLinks": [] - }, - "176:5840": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5839", - "documentationLinks": [] - }, - "176:5843": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5839", - "documentationLinks": [] - }, - "176:5847": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5846", - "documentationLinks": [] - }, - "176:5850": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5846", - "documentationLinks": [] - }, - "176:5854": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5853", - "documentationLinks": [] - }, - "176:5857": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5853", - "documentationLinks": [] - }, - "176:5861": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5860", - "documentationLinks": [] - }, - "176:5864": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5860", - "documentationLinks": [] - }, - "176:5868": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5867", - "documentationLinks": [] - }, - "176:5871": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5867", - "documentationLinks": [] - }, - "176:5875": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5874", - "documentationLinks": [] - }, - "176:5878": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5874", - "documentationLinks": [] - }, - "176:5882": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5881", - "documentationLinks": [] - }, - "176:5885": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5881", - "documentationLinks": [] - }, - "176:5889": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5888", - "documentationLinks": [] - }, - "176:5892": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5888", - "documentationLinks": [] - }, - "176:5896": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5895", - "documentationLinks": [] - }, - "176:5899": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5895", - "documentationLinks": [] - }, - "176:5903": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5902", - "documentationLinks": [] - }, - "176:5906": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5902", - "documentationLinks": [] - }, - "176:5910": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5909", - "documentationLinks": [] - }, - "176:5913": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5909", - "documentationLinks": [] - }, - "176:5917": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5916", - "documentationLinks": [] - }, - "176:5920": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5916", - "documentationLinks": [] - }, - "176:5924": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5923", - "documentationLinks": [] - }, - "176:5927": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5923", - "documentationLinks": [] - }, - "176:5931": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5930", - "documentationLinks": [] - }, - "176:5934": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5930", - "documentationLinks": [] - }, - "176:5938": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5937", - "documentationLinks": [] - }, - "176:5941": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5937", - "documentationLinks": [] - }, - "176:5945": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5944", - "documentationLinks": [] - }, - "176:5948": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5944", - "documentationLinks": [] - }, - "176:5952": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5951", - "documentationLinks": [] - }, - "176:5955": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5951", - "documentationLinks": [] - }, - "176:5959": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5958", - "documentationLinks": [] - }, - "176:5962": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5958", - "documentationLinks": [] - }, - "176:5966": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5965", - "documentationLinks": [] - }, - "176:5969": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5965", - "documentationLinks": [] - }, - "176:5973": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5972", - "documentationLinks": [] - }, - "176:5976": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5972", - "documentationLinks": [] - }, - "176:5980": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5979", - "documentationLinks": [] - }, - "176:5983": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5979", - "documentationLinks": [] - }, - "176:5987": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5986", - "documentationLinks": [] - }, - "176:5990": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5986", - "documentationLinks": [] - }, - "176:5994": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:5993", - "documentationLinks": [] - }, - "176:5997": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:5993", - "documentationLinks": [] - }, - "176:6004": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:6003", - "documentationLinks": [] - }, - "176:6007": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:6003", - "documentationLinks": [] - }, - "176:6011": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:6010", - "documentationLinks": [] - }, - "176:6014": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:6010", - "documentationLinks": [] - }, - "176:6018": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:6017", - "documentationLinks": [] - }, - "176:6021": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:6017", - "documentationLinks": [] - }, - "176:6025": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:6024", - "documentationLinks": [] - }, - "176:6028": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:6024", - "documentationLinks": [] - }, - "176:6032": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:6031", - "documentationLinks": [] - }, - "176:6035": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:6031", - "documentationLinks": [] - }, - "176:6039": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:6038", - "documentationLinks": [] - }, - "176:6042": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:6038", - "documentationLinks": [] - }, - "176:6046": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:6045", - "documentationLinks": [] - }, - "176:6049": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:6045", - "documentationLinks": [] - }, - "176:6053": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:6052", - "documentationLinks": [] - }, - "176:6056": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:6052", - "documentationLinks": [] - }, - "176:6060": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:6059", - "documentationLinks": [] - }, - "176:6063": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:6059", - "documentationLinks": [] - }, - "176:6067": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:6066", - "documentationLinks": [] - }, - "176:6070": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:6066", - "documentationLinks": [] - }, - "176:6074": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:6073", - "documentationLinks": [] - }, - "176:6077": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:6073", - "documentationLinks": [] - }, - "176:6081": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:6080", - "documentationLinks": [] - }, - "176:6084": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:6080", - "documentationLinks": [] - }, - "176:6088": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:6087", - "documentationLinks": [] - }, - "176:6095": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:6087", - "documentationLinks": [] - }, - "176:6103": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:6102", - "documentationLinks": [] - }, - "176:6106": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:6102", - "documentationLinks": [] - }, - "176:6110": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:6109", - "documentationLinks": [] - }, - "176:6114": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:6109", - "documentationLinks": [] - }, - "176:6120": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:6119", - "documentationLinks": [] - }, - "176:6124": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:6119", - "documentationLinks": [] - }, - "176:6130": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:6129", - "documentationLinks": [] - }, - "176:6134": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:6129", - "documentationLinks": [] - }, - "176:6140": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:6139", - "documentationLinks": [] - }, - "176:6144": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:6139", - "documentationLinks": [] - }, - "176:6150": { - "name": "Style=Round", - "description": "", - "remote": false, - "componentSetId": "176:6149", - "documentationLinks": [] - }, - "176:6154": { - "name": "Style=Sharp", - "description": "", - "remote": false, - "componentSetId": "176:6149", - "documentationLinks": [] - }, - "176:6160": { - "name": "Style=Round", - "description": "Workcloud, WC, file, do not export, export, open in new, open, launch", - "remote": false, - "componentSetId": "176:6159", - "documentationLinks": [] - }, - "176:6162": { - "name": "Style=Sharp", - "description": "Workcloud, WC, file, do not export, export, open in new, open, launch", - "remote": false, - "componentSetId": "176:6159", - "documentationLinks": [] - }, - "176:6165": { - "name": "Style=Round", - "description": "Workcloud, WC, page height", - "remote": false, - "componentSetId": "176:6164", - "documentationLinks": [] - }, - "176:6167": { - "name": "Style=Sharp", - "description": "Workcloud, WC, page height", - "remote": false, - "componentSetId": "176:6164", - "documentationLinks": [] - }, - "176:6170": { - "name": "Style=Round", - "description": "Workcloud, WC, page width", - "remote": false, - "componentSetId": "176:6169", - "documentationLinks": [] - }, - "176:6172": { - "name": "Style=Sharp", - "description": "Workcloud, WC, page width", - "remote": false, - "componentSetId": "176:6169", - "documentationLinks": [] - }, - "176:6175": { - "name": "Style=Round", - "description": "Workcloud, WC, page rotate", - "remote": false, - "componentSetId": "176:6174", - "documentationLinks": [] - }, - "176:6177": { - "name": "Style=Sharp", - "description": "Workcloud, WC, page rotate", - "remote": false, - "componentSetId": "176:6174", - "documentationLinks": [] - }, - "176:6180": { - "name": "Style=Round", - "description": "Workcloud, WC, file, save", - "remote": false, - "componentSetId": "176:6179", - "documentationLinks": [] - }, - "176:6182": { - "name": "Style=Sharp", - "description": "Workcloud, WC, file, save", - "remote": false, - "componentSetId": "176:6179", - "documentationLinks": [] - }, - "176:6185": { - "name": "Style=Round", - "description": "Workcloud, WC, file, publish", - "remote": false, - "componentSetId": "176:6184", - "documentationLinks": [] - }, - "176:6187": { - "name": "Style=Sharp", - "description": "Workcloud, WC, file, publish", - "remote": false, - "componentSetId": "176:6184", - "documentationLinks": [] - }, - "176:6190": { - "name": "Style=Round", - "description": "Workcloud, WC, file, note, paper", - "remote": false, - "componentSetId": "176:6189", - "documentationLinks": [] - }, - "176:6192": { - "name": "Style=Sharp", - "description": "Workcloud, WC, file, note, paper", - "remote": false, - "componentSetId": "176:6189", - "documentationLinks": [] - }, - "176:6195": { - "name": "Style=Round", - "description": "Workcloud, WC, project, folder, file", - "remote": false, - "componentSetId": "176:6194", - "documentationLinks": [] - }, - "176:6197": { - "name": "Style=Sharp", - "description": "Workcloud, WC, project, folder, file", - "remote": false, - "componentSetId": "176:6194", - "documentationLinks": [] - }, - "176:6200": { - "name": "Style=Round", - "description": "Workcloud, WC, maintenance, repair, hammer, wrench, tools", - "remote": false, - "componentSetId": "176:6199", - "documentationLinks": [] - }, - "176:6202": { - "name": "Style=Sharp", - "description": "Workcloud, WC, maintenance, repair, hammer, wrench, tools", - "remote": false, - "componentSetId": "176:6199", - "documentationLinks": [] - } - }, - "componentSets": { - "176:5662": { - "name": "Add", - "description": "Plus, add, create, request", - "documentationLinks": [] - }, - "176:5669": { - "name": "Sort", - "description": "sort, reorder", - "documentationLinks": [] - }, - "176:5676": { - "name": "Content", - "description": "duplicate, copy, clipboard, Workcloud, WC", - "documentationLinks": [] - }, - "176:5683": { - "name": "Copy File", - "description": "", - "documentationLinks": [] - }, - "176:5690": { - "name": "Remove Circle Outline", - "description": "Minus", - "documentationLinks": [] - }, - "176:5697": { - "name": "Add Circle Outline", - "description": "Plus", - "documentationLinks": [] - }, - "176:5704": { - "name": "Remove Circle", - "description": "Minus, Workcloud, WC", - "documentationLinks": [] - }, - "176:5711": { - "name": "Block", - "description": "unclaim, cancel, do not, DNE, Workcloud, WC", - "documentationLinks": [] - }, - "176:5718": { - "name": "Add Circle", - "description": "Plus", - "documentationLinks": [] - }, - "176:5725": { - "name": "Remove", - "description": "Minus, remove, delete, Workcloud, WC", - "documentationLinks": [] - }, - "176:5732": { - "name": "Android", - "description": "OS", - "documentationLinks": [] - }, - "176:5739": { - "name": "Add Box", - "description": "Plus", - "documentationLinks": [] - }, - "176:5746": { - "name": "Remove Box", - "description": "Minus", - "documentationLinks": [] - }, - "176:5753": { - "name": "Push Pin", - "description": "pin, save, pushpin, mark, Workcloud, WC", - "documentationLinks": [] - }, - "176:5760": { - "name": "Send", - "description": "chat, message, communication, send, Workcloud, WC", - "documentationLinks": [] - }, - "176:5767": { - "name": "Backspace", - "description": "Delete, clear, remove, backspace, Workcloud, WC", - "documentationLinks": [] - }, - "176:5774": { - "name": "Flag", - "description": "flag, mark, Workcloud, WC", - "documentationLinks": [] - }, - "176:5781": { - "name": "Save", - "description": "file, save", - "documentationLinks": [] - }, - "176:5788": { - "name": "Reply", - "description": "email, e-mail, envelope, message, reply, Workcloud, WC", - "documentationLinks": [] - }, - "176:5795": { - "name": "Redo", - "description": "redo, edit, Workcloud, WC", - "documentationLinks": [] - }, - "176:5802": { - "name": "Save Alt", - "description": "save, file, import, download, Workcloud, WC", - "documentationLinks": [] - }, - "176:5809": { - "name": "Undo", - "description": "undo, edit, Workcloud, WC", - "documentationLinks": [] - }, - "176:5816": { - "name": "Chart Pie", - "description": "report, analytics, chart, pie chart, pie-chart, piechart", - "documentationLinks": [] - }, - "176:5822": { - "name": "Email", - "description": "Mail, @, email, e-mail, envelope, message, Workcloud, WC", - "documentationLinks": [] - }, - "176:5829": { - "name": "Email Outline", - "description": "Mail, @, email, e-mail, envelope, message, Workcloud, WC, outline", - "documentationLinks": [] - }, - "176:5839": { - "name": "Scanner", - "description": "mobile", - "documentationLinks": [] - }, - "176:5846": { - "name": "Printer", - "description": "print, printer, Workcloud, WC", - "documentationLinks": [] - }, - "176:5853": { - "name": "Cast", - "description": "Chrome", - "documentationLinks": [] - }, - "176:5860": { - "name": "Cast Connected", - "description": "Chrome", - "documentationLinks": [] - }, - "176:5867": { - "name": "Desktop", - "description": "", - "documentationLinks": [] - }, - "176:5874": { - "name": "Devices Ecosystem", - "description": "", - "documentationLinks": [] - }, - "176:5881": { - "name": "Device Settings", - "description": "", - "documentationLinks": [] - }, - "176:5888": { - "name": "Headphones", - "description": "", - "documentationLinks": [] - }, - "176:5895": { - "name": "Keyboard", - "description": "keyboard, keypad, type, Workcloud, WC", - "documentationLinks": [] - }, - "176:5902": { - "name": "Laptop", - "description": "Computer", - "documentationLinks": [] - }, - "176:5909": { - "name": "Memory", - "description": "Processor, Microprocessor", - "documentationLinks": [] - }, - "176:5916": { - "name": "Monitor", - "description": "", - "documentationLinks": [] - }, - "176:5923": { - "name": "Phone Android", - "description": "Mobile", - "documentationLinks": [] - }, - "176:5930": { - "name": "Phone iPhone", - "description": "Mobile", - "documentationLinks": [] - }, - "176:5937": { - "name": "Phonelink", - "description": "Connected", - "documentationLinks": [] - }, - "176:5944": { - "name": "Security", - "description": "Protect, Protection, Shield", - "documentationLinks": [] - }, - "176:5951": { - "name": "Video Play", - "description": "", - "documentationLinks": [] - }, - "176:5958": { - "name": "Smart Phone", - "description": "Mobile, phone, device, Workcloud, WC", - "documentationLinks": [] - }, - "176:5965": { - "name": "Speaker", - "description": "", - "documentationLinks": [] - }, - "176:5972": { - "name": "Tablet", - "description": "", - "documentationLinks": [] - }, - "176:5979": { - "name": "Tablet Mac", - "description": "iPad", - "documentationLinks": [] - }, - "176:5986": { - "name": "TV", - "description": "Television", - "documentationLinks": [] - }, - "176:5993": { - "name": "Watch", - "description": "Smartwatch", - "documentationLinks": [] - }, - "176:6003": { - "name": "Finished Download", - "description": "Complete, Success, Done", - "documentationLinks": [] - }, - "176:6010": { - "name": "Downloading", - "description": "", - "documentationLinks": [] - }, - "176:6017": { - "name": "Cloud", - "description": "", - "documentationLinks": [] - }, - "176:6024": { - "name": "Cloud Done", - "description": "Check, Check Mark, Mark", - "documentationLinks": [] - }, - "176:6031": { - "name": "Cloud Download", - "description": "file, download, cloud, Workcloud, WC", - "documentationLinks": [] - }, - "176:6038": { - "name": "Cloud Outline", - "description": "", - "documentationLinks": [] - }, - "176:6045": { - "name": "Cloud Upload", - "description": "file, upload, cloud, Workcloud, WC", - "documentationLinks": [] - }, - "176:6052": { - "name": "Cloud Off", - "description": "Offline", - "documentationLinks": [] - }, - "176:6059": { - "name": "Folder", - "description": "folder, Workcloud, WC", - "documentationLinks": [] - }, - "176:6066": { - "name": "Create New Folder", - "description": "Add", - "documentationLinks": [] - }, - "176:6073": { - "name": "Folder Outline", - "description": "", - "documentationLinks": [] - }, - "176:6080": { - "name": "Shared Folder", - "description": "Network, Access", - "documentationLinks": [] - }, - "176:6087": { - "name": "Grid View", - "description": "2x2", - "documentationLinks": [] - }, - "176:6102": { - "name": "Upload File", - "description": "", - "documentationLinks": [] - }, - "176:6109": { - "name": "JPG Attach", - "description": "Type, File", - "documentationLinks": [] - }, - "176:6119": { - "name": "PDF Attach", - "description": "Type, File", - "documentationLinks": [] - }, - "176:6129": { - "name": "PNG Attach", - "description": "Type, File", - "documentationLinks": [] - }, - "176:6139": { - "name": "DOC Attach", - "description": "Type, File", - "documentationLinks": [] - }, - "176:6149": { - "name": "PPT Attach", - "description": "Type, File", - "documentationLinks": [] - }, - "176:6159": { - "name": "Open New Off", - "description": "Workcloud, WC, file, do not export, export, open in new, open, launch", - "documentationLinks": [] - }, - "176:6164": { - "name": "Page Height", - "description": "Workcloud, WC, page height", - "documentationLinks": [] - }, - "176:6169": { - "name": "Page Width", - "description": "Workcloud, WC, page height", - "documentationLinks": [] - }, - "176:6174": { - "name": "Page Rotate", - "description": "Workcloud, WC, page rotate", - "documentationLinks": [] - }, - "176:6179": { - "name": "Save", - "description": "Workcloud, WC, file, save", - "documentationLinks": [] - }, - "176:6184": { - "name": "Publish", - "description": "Workcloud, WC, file, publish", - "documentationLinks": [] - }, - "176:6189": { - "name": "File", - "description": "Workcloud, WC, file, note, paper", - "documentationLinks": [] - }, - "176:6194": { - "name": "Folder", - "description": "Workcloud, WC, project, folder, file", - "documentationLinks": [] - }, - "176:6199": { - "name": "Maintenance", - "description": "Workcloud, WC, maintenance, repair, hammer, wrench, tools", - "documentationLinks": [] - } - }, - "schemaVersion": 0, - "styles": { - "1:2": { - "name": "Light Mode/Text/Default", - "styleType": "FILL", - "remote": true, - "description": "Use:\nPrimary text for content, Enabled text" - }, - "1:3": { - "name": "Standard/Large Display/Heading 5", - "styleType": "TEXT", - "remote": true, - "description": "" - }, - "1:4": { - "name": "Light Mode/Border/Default", - "styleType": "FILL", - "remote": true, - "description": "" - }, - "1:5": { - "name": "Light Mode/Icon/Default", - "styleType": "FILL", - "remote": true, - "description": "" - }, - "176:625": { - "name": "Light Mode/Icon/Default", - "styleType": "FILL", - "remote": true, - "description": "" - } - }, - "name": "IconsTestPage", - "lastModified": "2024-04-16T10:45:33Z", - "thumbnailUrl": "https://s3-alpha.figma.com/thumbnails/d9005760-beb3-47df-b647-437231cfe47a?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAQ4GOSFWC5QIQERN2%2F20240418%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240418T000000Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=72d0b98f13d7d249e061881a8b9d7a7f5cd990f8b0999d99c2aea54f08681412", - "version": "5566258787", - "role": "owner", - "editorType": "figma", - "linkAccess": "org_view" -} diff --git a/test/data/generatedFontResponse.json b/test/data/generatedFontResponse.json index c023ce80..0f976dd5 100644 --- a/test/data/generatedFontResponse.json +++ b/test/data/generatedFontResponse.json @@ -1 +1 @@ -{"dartRoundTypes":[" static const IconData add_box_round = IconData(0xe001, fontFamily: _familyRound, fontPackage: _package);"," static const IconData add_circle_outline_round = IconData(0xe002, fontFamily: _familyRound, fontPackage: _package);"," static const IconData add_circle_round = IconData(0xe003, fontFamily: _familyRound, fontPackage: _package);"," static const IconData add_round = IconData(0xe004, fontFamily: _familyRound, fontPackage: _package);"," static const IconData android_round = IconData(0xe005, fontFamily: _familyRound, fontPackage: _package);"," static const IconData backspace_round = IconData(0xe006, fontFamily: _familyRound, fontPackage: _package);"," static const IconData block_round = IconData(0xe007, fontFamily: _familyRound, fontPackage: _package);"," static const IconData cast_connected_round = IconData(0xe008, fontFamily: _familyRound, fontPackage: _package);"," static const IconData cast_round = IconData(0xe009, fontFamily: _familyRound, fontPackage: _package);"," static const IconData chart_pie_round = IconData(0xe00a, fontFamily: _familyRound, fontPackage: _package);"," static const IconData cloud_done_round = IconData(0xe00b, fontFamily: _familyRound, fontPackage: _package);"," static const IconData cloud_download_round = IconData(0xe00c, fontFamily: _familyRound, fontPackage: _package);"," static const IconData cloud_off_round = IconData(0xe00d, fontFamily: _familyRound, fontPackage: _package);"," static const IconData cloud_outline_round = IconData(0xe00e, fontFamily: _familyRound, fontPackage: _package);"," static const IconData cloud_round = IconData(0xe00f, fontFamily: _familyRound, fontPackage: _package);"," static const IconData cloud_upload_round = IconData(0xe010, fontFamily: _familyRound, fontPackage: _package);"," static const IconData content_round = IconData(0xe011, fontFamily: _familyRound, fontPackage: _package);"," static const IconData copy_file_round = IconData(0xe012, fontFamily: _familyRound, fontPackage: _package);"," static const IconData create_new_folder_round = IconData(0xe013, fontFamily: _familyRound, fontPackage: _package);"," static const IconData desktop_round = IconData(0xe014, fontFamily: _familyRound, fontPackage: _package);"," static const IconData device_settings_round = IconData(0xe015, fontFamily: _familyRound, fontPackage: _package);"," static const IconData devices_ecosystem_round = IconData(0xe016, fontFamily: _familyRound, fontPackage: _package);"," static const IconData doc_attach_round = IconData(0xe017, fontFamily: _familyRound, fontPackage: _package);"," static const IconData downloading_round = IconData(0xe018, fontFamily: _familyRound, fontPackage: _package);"," static const IconData email_outline_round = IconData(0xe019, fontFamily: _familyRound, fontPackage: _package);"," static const IconData email_round = IconData(0xe01a, fontFamily: _familyRound, fontPackage: _package);"," static const IconData file_round = IconData(0xe01b, fontFamily: _familyRound, fontPackage: _package);"," static const IconData finished_download_round = IconData(0xe01c, fontFamily: _familyRound, fontPackage: _package);"," static const IconData flag_round = IconData(0xe01d, fontFamily: _familyRound, fontPackage: _package);"," static const IconData folder_file_round = IconData(0xe01e, fontFamily: _familyRound, fontPackage: _package);"," static const IconData folder_outline_round = IconData(0xe01f, fontFamily: _familyRound, fontPackage: _package);"," static const IconData folder_round = IconData(0xe020, fontFamily: _familyRound, fontPackage: _package);"," static const IconData grid_view_round = IconData(0xe021, fontFamily: _familyRound, fontPackage: _package);"," static const IconData headphones_round = IconData(0xe022, fontFamily: _familyRound, fontPackage: _package);"," static const IconData jpg_attach_round = IconData(0xe023, fontFamily: _familyRound, fontPackage: _package);"," static const IconData keyboard_round = IconData(0xe024, fontFamily: _familyRound, fontPackage: _package);"," static const IconData laptop_round = IconData(0xe025, fontFamily: _familyRound, fontPackage: _package);"," static const IconData maintenance_round = IconData(0xe026, fontFamily: _familyRound, fontPackage: _package);"," static const IconData memory_round = IconData(0xe027, fontFamily: _familyRound, fontPackage: _package);"," static const IconData monitor_round = IconData(0xe028, fontFamily: _familyRound, fontPackage: _package);"," static const IconData open_new_off_round = IconData(0xe029, fontFamily: _familyRound, fontPackage: _package);"," static const IconData page_height_round = IconData(0xe02a, fontFamily: _familyRound, fontPackage: _package);"," static const IconData page_rotate_round = IconData(0xe02b, fontFamily: _familyRound, fontPackage: _package);"," static const IconData page_width_round = IconData(0xe02c, fontFamily: _familyRound, fontPackage: _package);"," static const IconData pdf_attach_round = IconData(0xe02d, fontFamily: _familyRound, fontPackage: _package);"," static const IconData phone_android_round = IconData(0xe02e, fontFamily: _familyRound, fontPackage: _package);"," static const IconData phone_iphone_round = IconData(0xe02f, fontFamily: _familyRound, fontPackage: _package);"," static const IconData phonelink_round = IconData(0xe030, fontFamily: _familyRound, fontPackage: _package);"," static const IconData png_attach_round = IconData(0xe031, fontFamily: _familyRound, fontPackage: _package);"," static const IconData ppt_attach_round = IconData(0xe032, fontFamily: _familyRound, fontPackage: _package);"," static const IconData printer_round = IconData(0xe033, fontFamily: _familyRound, fontPackage: _package);"," static const IconData publish_round = IconData(0xe034, fontFamily: _familyRound, fontPackage: _package);"," static const IconData push_pin_round = IconData(0xe035, fontFamily: _familyRound, fontPackage: _package);"," static const IconData redo_round = IconData(0xe036, fontFamily: _familyRound, fontPackage: _package);"," static const IconData remove_box_round = IconData(0xe037, fontFamily: _familyRound, fontPackage: _package);"," static const IconData remove_circle_outline_round = IconData(0xe038, fontFamily: _familyRound, fontPackage: _package);"," static const IconData remove_circle_round = IconData(0xe039, fontFamily: _familyRound, fontPackage: _package);"," static const IconData remove_round = IconData(0xe03a, fontFamily: _familyRound, fontPackage: _package);"," static const IconData reply_round = IconData(0xe03b, fontFamily: _familyRound, fontPackage: _package);"," static const IconData save_alt_round = IconData(0xe03c, fontFamily: _familyRound, fontPackage: _package);"," static const IconData save_file_round = IconData(0xe03d, fontFamily: _familyRound, fontPackage: _package);"," static const IconData save_round = IconData(0xe03e, fontFamily: _familyRound, fontPackage: _package);"," static const IconData scanner_round = IconData(0xe03f, fontFamily: _familyRound, fontPackage: _package);"," static const IconData security_round = IconData(0xe040, fontFamily: _familyRound, fontPackage: _package);"," static const IconData send_round = IconData(0xe041, fontFamily: _familyRound, fontPackage: _package);"," static const IconData shared_folder_round = IconData(0xe042, fontFamily: _familyRound, fontPackage: _package);"," static const IconData smart_phone_round = IconData(0xe043, fontFamily: _familyRound, fontPackage: _package);"," static const IconData sort_round = IconData(0xe044, fontFamily: _familyRound, fontPackage: _package);"," static const IconData speaker_round = IconData(0xe045, fontFamily: _familyRound, fontPackage: _package);"," static const IconData tablet_mac_round = IconData(0xe046, fontFamily: _familyRound, fontPackage: _package);"," static const IconData tablet_round = IconData(0xe047, fontFamily: _familyRound, fontPackage: _package);"," static const IconData tv_round = IconData(0xe048, fontFamily: _familyRound, fontPackage: _package);"," static const IconData undo_round = IconData(0xe049, fontFamily: _familyRound, fontPackage: _package);"," static const IconData upload_file_round = IconData(0xe04a, fontFamily: _familyRound, fontPackage: _package);"," static const IconData video_play_round = IconData(0xe04b, fontFamily: _familyRound, fontPackage: _package);"," static const IconData watch_round = IconData(0xe04c, fontFamily: _familyRound, fontPackage: _package);"],"dartRoundList":[" 'add_box_round': ZetaIcons.add_box_round"," 'add_circle_outline_round': ZetaIcons.add_circle_outline_round"," 'add_circle_round': ZetaIcons.add_circle_round"," 'add_round': ZetaIcons.add_round"," 'android_round': ZetaIcons.android_round"," 'backspace_round': ZetaIcons.backspace_round"," 'block_round': ZetaIcons.block_round"," 'cast_connected_round': ZetaIcons.cast_connected_round"," 'cast_round': ZetaIcons.cast_round"," 'chart_pie_round': ZetaIcons.chart_pie_round"," 'cloud_done_round': ZetaIcons.cloud_done_round"," 'cloud_download_round': ZetaIcons.cloud_download_round"," 'cloud_off_round': ZetaIcons.cloud_off_round"," 'cloud_outline_round': ZetaIcons.cloud_outline_round"," 'cloud_round': ZetaIcons.cloud_round"," 'cloud_upload_round': ZetaIcons.cloud_upload_round"," 'content_round': ZetaIcons.content_round"," 'copy_file_round': ZetaIcons.copy_file_round"," 'create_new_folder_round': ZetaIcons.create_new_folder_round"," 'desktop_round': ZetaIcons.desktop_round"," 'device_settings_round': ZetaIcons.device_settings_round"," 'devices_ecosystem_round': ZetaIcons.devices_ecosystem_round"," 'doc_attach_round': ZetaIcons.doc_attach_round"," 'downloading_round': ZetaIcons.downloading_round"," 'email_outline_round': ZetaIcons.email_outline_round"," 'email_round': ZetaIcons.email_round"," 'file_round': ZetaIcons.file_round"," 'finished_download_round': ZetaIcons.finished_download_round"," 'flag_round': ZetaIcons.flag_round"," 'folder_file_round': ZetaIcons.folder_file_round"," 'folder_outline_round': ZetaIcons.folder_outline_round"," 'folder_round': ZetaIcons.folder_round"," 'grid_view_round': ZetaIcons.grid_view_round"," 'headphones_round': ZetaIcons.headphones_round"," 'jpg_attach_round': ZetaIcons.jpg_attach_round"," 'keyboard_round': ZetaIcons.keyboard_round"," 'laptop_round': ZetaIcons.laptop_round"," 'maintenance_round': ZetaIcons.maintenance_round"," 'memory_round': ZetaIcons.memory_round"," 'monitor_round': ZetaIcons.monitor_round"," 'open_new_off_round': ZetaIcons.open_new_off_round"," 'page_height_round': ZetaIcons.page_height_round"," 'page_rotate_round': ZetaIcons.page_rotate_round"," 'page_width_round': ZetaIcons.page_width_round"," 'pdf_attach_round': ZetaIcons.pdf_attach_round"," 'phone_android_round': ZetaIcons.phone_android_round"," 'phone_iphone_round': ZetaIcons.phone_iphone_round"," 'phonelink_round': ZetaIcons.phonelink_round"," 'png_attach_round': ZetaIcons.png_attach_round"," 'ppt_attach_round': ZetaIcons.ppt_attach_round"," 'printer_round': ZetaIcons.printer_round"," 'publish_round': ZetaIcons.publish_round"," 'push_pin_round': ZetaIcons.push_pin_round"," 'redo_round': ZetaIcons.redo_round"," 'remove_box_round': ZetaIcons.remove_box_round"," 'remove_circle_outline_round': ZetaIcons.remove_circle_outline_round"," 'remove_circle_round': ZetaIcons.remove_circle_round"," 'remove_round': ZetaIcons.remove_round"," 'reply_round': ZetaIcons.reply_round"," 'save_alt_round': ZetaIcons.save_alt_round"," 'save_file_round': ZetaIcons.save_file_round"," 'save_round': ZetaIcons.save_round"," 'scanner_round': ZetaIcons.scanner_round"," 'security_round': ZetaIcons.security_round"," 'send_round': ZetaIcons.send_round"," 'shared_folder_round': ZetaIcons.shared_folder_round"," 'smart_phone_round': ZetaIcons.smart_phone_round"," 'sort_round': ZetaIcons.sort_round"," 'speaker_round': ZetaIcons.speaker_round"," 'tablet_mac_round': ZetaIcons.tablet_mac_round"," 'tablet_round': ZetaIcons.tablet_round"," 'tv_round': ZetaIcons.tv_round"," 'undo_round': ZetaIcons.undo_round"," 'upload_file_round': ZetaIcons.upload_file_round"," 'video_play_round': ZetaIcons.video_play_round"," 'watch_round': ZetaIcons.watch_round"],"dartSharpTypes":[" static const IconData add_box_sharp = IconData(0xe001, fontFamily: _familySharp, fontPackage: _package);"," static const IconData add_circle_outline_sharp = IconData(0xe002, fontFamily: _familySharp, fontPackage: _package);"," static const IconData add_circle_sharp = IconData(0xe003, fontFamily: _familySharp, fontPackage: _package);"," static const IconData add_sharp = IconData(0xe004, fontFamily: _familySharp, fontPackage: _package);"," static const IconData android_sharp = IconData(0xe005, fontFamily: _familySharp, fontPackage: _package);"," static const IconData backspace_sharp = IconData(0xe006, fontFamily: _familySharp, fontPackage: _package);"," static const IconData block_sharp = IconData(0xe007, fontFamily: _familySharp, fontPackage: _package);"," static const IconData cast_connected_sharp = IconData(0xe008, fontFamily: _familySharp, fontPackage: _package);"," static const IconData cast_sharp = IconData(0xe009, fontFamily: _familySharp, fontPackage: _package);"," static const IconData chart_pie_sharp = IconData(0xe00a, fontFamily: _familySharp, fontPackage: _package);"," static const IconData cloud_done_sharp = IconData(0xe00b, fontFamily: _familySharp, fontPackage: _package);"," static const IconData cloud_download_sharp = IconData(0xe00c, fontFamily: _familySharp, fontPackage: _package);"," static const IconData cloud_off_sharp = IconData(0xe00d, fontFamily: _familySharp, fontPackage: _package);"," static const IconData cloud_outline_sharp = IconData(0xe00e, fontFamily: _familySharp, fontPackage: _package);"," static const IconData cloud_sharp = IconData(0xe00f, fontFamily: _familySharp, fontPackage: _package);"," static const IconData cloud_upload_sharp = IconData(0xe010, fontFamily: _familySharp, fontPackage: _package);"," static const IconData content_sharp = IconData(0xe011, fontFamily: _familySharp, fontPackage: _package);"," static const IconData copy_file_sharp = IconData(0xe012, fontFamily: _familySharp, fontPackage: _package);"," static const IconData create_new_folder_sharp = IconData(0xe013, fontFamily: _familySharp, fontPackage: _package);"," static const IconData desktop_sharp = IconData(0xe014, fontFamily: _familySharp, fontPackage: _package);"," static const IconData device_settings_sharp = IconData(0xe015, fontFamily: _familySharp, fontPackage: _package);"," static const IconData devices_ecosystem_sharp = IconData(0xe016, fontFamily: _familySharp, fontPackage: _package);"," static const IconData doc_attach_sharp = IconData(0xe017, fontFamily: _familySharp, fontPackage: _package);"," static const IconData downloading_sharp = IconData(0xe018, fontFamily: _familySharp, fontPackage: _package);"," static const IconData email_outline_sharp = IconData(0xe019, fontFamily: _familySharp, fontPackage: _package);"," static const IconData email_sharp = IconData(0xe01a, fontFamily: _familySharp, fontPackage: _package);"," static const IconData file_sharp = IconData(0xe01b, fontFamily: _familySharp, fontPackage: _package);"," static const IconData finished_download_sharp = IconData(0xe01c, fontFamily: _familySharp, fontPackage: _package);"," static const IconData flag_sharp = IconData(0xe01d, fontFamily: _familySharp, fontPackage: _package);"," static const IconData folder_file_sharp = IconData(0xe01e, fontFamily: _familySharp, fontPackage: _package);"," static const IconData folder_outline_sharp = IconData(0xe01f, fontFamily: _familySharp, fontPackage: _package);"," static const IconData folder_sharp = IconData(0xe020, fontFamily: _familySharp, fontPackage: _package);"," static const IconData grid_view_sharp = IconData(0xe021, fontFamily: _familySharp, fontPackage: _package);"," static const IconData headphones_sharp = IconData(0xe022, fontFamily: _familySharp, fontPackage: _package);"," static const IconData jpg_attach_sharp = IconData(0xe023, fontFamily: _familySharp, fontPackage: _package);"," static const IconData keyboard_sharp = IconData(0xe024, fontFamily: _familySharp, fontPackage: _package);"," static const IconData laptop_sharp = IconData(0xe025, fontFamily: _familySharp, fontPackage: _package);"," static const IconData maintenance_sharp = IconData(0xe026, fontFamily: _familySharp, fontPackage: _package);"," static const IconData memory_sharp = IconData(0xe027, fontFamily: _familySharp, fontPackage: _package);"," static const IconData monitor_sharp = IconData(0xe028, fontFamily: _familySharp, fontPackage: _package);"," static const IconData open_new_off_sharp = IconData(0xe029, fontFamily: _familySharp, fontPackage: _package);"," static const IconData page_height_sharp = IconData(0xe02a, fontFamily: _familySharp, fontPackage: _package);"," static const IconData page_rotate_sharp = IconData(0xe02b, fontFamily: _familySharp, fontPackage: _package);"," static const IconData page_width_sharp = IconData(0xe02c, fontFamily: _familySharp, fontPackage: _package);"," static const IconData pdf_attach_sharp = IconData(0xe02d, fontFamily: _familySharp, fontPackage: _package);"," static const IconData phone_android_sharp = IconData(0xe02e, fontFamily: _familySharp, fontPackage: _package);"," static const IconData phone_iphone_sharp = IconData(0xe02f, fontFamily: _familySharp, fontPackage: _package);"," static const IconData phonelink_sharp = IconData(0xe030, fontFamily: _familySharp, fontPackage: _package);"," static const IconData png_attach_sharp = IconData(0xe031, fontFamily: _familySharp, fontPackage: _package);"," static const IconData ppt_attach_sharp = IconData(0xe032, fontFamily: _familySharp, fontPackage: _package);"," static const IconData printer_sharp = IconData(0xe033, fontFamily: _familySharp, fontPackage: _package);"," static const IconData publish_sharp = IconData(0xe034, fontFamily: _familySharp, fontPackage: _package);"," static const IconData push_pin_sharp = IconData(0xe035, fontFamily: _familySharp, fontPackage: _package);"," static const IconData redo_sharp = IconData(0xe036, fontFamily: _familySharp, fontPackage: _package);"," static const IconData remove_box_sharp = IconData(0xe037, fontFamily: _familySharp, fontPackage: _package);"," static const IconData remove_circle_outline_sharp = IconData(0xe038, fontFamily: _familySharp, fontPackage: _package);"," static const IconData remove_circle_sharp = IconData(0xe039, fontFamily: _familySharp, fontPackage: _package);"," static const IconData remove_sharp = IconData(0xe03a, fontFamily: _familySharp, fontPackage: _package);"," static const IconData reply_sharp = IconData(0xe03b, fontFamily: _familySharp, fontPackage: _package);"," static const IconData save_alt_sharp = IconData(0xe03c, fontFamily: _familySharp, fontPackage: _package);"," static const IconData save_file_sharp = IconData(0xe03d, fontFamily: _familySharp, fontPackage: _package);"," static const IconData save_sharp = IconData(0xe03e, fontFamily: _familySharp, fontPackage: _package);"," static const IconData scanner_sharp = IconData(0xe03f, fontFamily: _familySharp, fontPackage: _package);"," static const IconData security_sharp = IconData(0xe040, fontFamily: _familySharp, fontPackage: _package);"," static const IconData send_sharp = IconData(0xe041, fontFamily: _familySharp, fontPackage: _package);"," static const IconData shared_folder_sharp = IconData(0xe042, fontFamily: _familySharp, fontPackage: _package);"," static const IconData smart_phone_sharp = IconData(0xe043, fontFamily: _familySharp, fontPackage: _package);"," static const IconData sort_sharp = IconData(0xe044, fontFamily: _familySharp, fontPackage: _package);"," static const IconData speaker_sharp = IconData(0xe045, fontFamily: _familySharp, fontPackage: _package);"," static const IconData tablet_mac_sharp = IconData(0xe046, fontFamily: _familySharp, fontPackage: _package);"," static const IconData tablet_sharp = IconData(0xe047, fontFamily: _familySharp, fontPackage: _package);"," static const IconData tv_sharp = IconData(0xe048, fontFamily: _familySharp, fontPackage: _package);"," static const IconData undo_sharp = IconData(0xe049, fontFamily: _familySharp, fontPackage: _package);"," static const IconData upload_file_sharp = IconData(0xe04a, fontFamily: _familySharp, fontPackage: _package);"," static const IconData video_play_sharp = IconData(0xe04b, fontFamily: _familySharp, fontPackage: _package);"," static const IconData watch_sharp = IconData(0xe04c, fontFamily: _familySharp, fontPackage: _package);"],"dartSharpList":[" 'add_box_sharp': ZetaIcons.add_box_sharp"," 'add_circle_outline_sharp': ZetaIcons.add_circle_outline_sharp"," 'add_circle_sharp': ZetaIcons.add_circle_sharp"," 'add_sharp': ZetaIcons.add_sharp"," 'android_sharp': ZetaIcons.android_sharp"," 'backspace_sharp': ZetaIcons.backspace_sharp"," 'block_sharp': ZetaIcons.block_sharp"," 'cast_connected_sharp': ZetaIcons.cast_connected_sharp"," 'cast_sharp': ZetaIcons.cast_sharp"," 'chart_pie_sharp': ZetaIcons.chart_pie_sharp"," 'cloud_done_sharp': ZetaIcons.cloud_done_sharp"," 'cloud_download_sharp': ZetaIcons.cloud_download_sharp"," 'cloud_off_sharp': ZetaIcons.cloud_off_sharp"," 'cloud_outline_sharp': ZetaIcons.cloud_outline_sharp"," 'cloud_sharp': ZetaIcons.cloud_sharp"," 'cloud_upload_sharp': ZetaIcons.cloud_upload_sharp"," 'content_sharp': ZetaIcons.content_sharp"," 'copy_file_sharp': ZetaIcons.copy_file_sharp"," 'create_new_folder_sharp': ZetaIcons.create_new_folder_sharp"," 'desktop_sharp': ZetaIcons.desktop_sharp"," 'device_settings_sharp': ZetaIcons.device_settings_sharp"," 'devices_ecosystem_sharp': ZetaIcons.devices_ecosystem_sharp"," 'doc_attach_sharp': ZetaIcons.doc_attach_sharp"," 'downloading_sharp': ZetaIcons.downloading_sharp"," 'email_outline_sharp': ZetaIcons.email_outline_sharp"," 'email_sharp': ZetaIcons.email_sharp"," 'file_sharp': ZetaIcons.file_sharp"," 'finished_download_sharp': ZetaIcons.finished_download_sharp"," 'flag_sharp': ZetaIcons.flag_sharp"," 'folder_file_sharp': ZetaIcons.folder_file_sharp"," 'folder_outline_sharp': ZetaIcons.folder_outline_sharp"," 'folder_sharp': ZetaIcons.folder_sharp"," 'grid_view_sharp': ZetaIcons.grid_view_sharp"," 'headphones_sharp': ZetaIcons.headphones_sharp"," 'jpg_attach_sharp': ZetaIcons.jpg_attach_sharp"," 'keyboard_sharp': ZetaIcons.keyboard_sharp"," 'laptop_sharp': ZetaIcons.laptop_sharp"," 'maintenance_sharp': ZetaIcons.maintenance_sharp"," 'memory_sharp': ZetaIcons.memory_sharp"," 'monitor_sharp': ZetaIcons.monitor_sharp"," 'open_new_off_sharp': ZetaIcons.open_new_off_sharp"," 'page_height_sharp': ZetaIcons.page_height_sharp"," 'page_rotate_sharp': ZetaIcons.page_rotate_sharp"," 'page_width_sharp': ZetaIcons.page_width_sharp"," 'pdf_attach_sharp': ZetaIcons.pdf_attach_sharp"," 'phone_android_sharp': ZetaIcons.phone_android_sharp"," 'phone_iphone_sharp': ZetaIcons.phone_iphone_sharp"," 'phonelink_sharp': ZetaIcons.phonelink_sharp"," 'png_attach_sharp': ZetaIcons.png_attach_sharp"," 'ppt_attach_sharp': ZetaIcons.ppt_attach_sharp"," 'printer_sharp': ZetaIcons.printer_sharp"," 'publish_sharp': ZetaIcons.publish_sharp"," 'push_pin_sharp': ZetaIcons.push_pin_sharp"," 'redo_sharp': ZetaIcons.redo_sharp"," 'remove_box_sharp': ZetaIcons.remove_box_sharp"," 'remove_circle_outline_sharp': ZetaIcons.remove_circle_outline_sharp"," 'remove_circle_sharp': ZetaIcons.remove_circle_sharp"," 'remove_sharp': ZetaIcons.remove_sharp"," 'reply_sharp': ZetaIcons.reply_sharp"," 'save_alt_sharp': ZetaIcons.save_alt_sharp"," 'save_file_sharp': ZetaIcons.save_file_sharp"," 'save_sharp': ZetaIcons.save_sharp"," 'scanner_sharp': ZetaIcons.scanner_sharp"," 'security_sharp': ZetaIcons.security_sharp"," 'send_sharp': ZetaIcons.send_sharp"," 'shared_folder_sharp': ZetaIcons.shared_folder_sharp"," 'smart_phone_sharp': ZetaIcons.smart_phone_sharp"," 'sort_sharp': ZetaIcons.sort_sharp"," 'speaker_sharp': ZetaIcons.speaker_sharp"," 'tablet_mac_sharp': ZetaIcons.tablet_mac_sharp"," 'tablet_sharp': ZetaIcons.tablet_sharp"," 'tv_sharp': ZetaIcons.tv_sharp"," 'undo_sharp': ZetaIcons.undo_sharp"," 'upload_file_sharp': ZetaIcons.upload_file_sharp"," 'video_play_sharp': ZetaIcons.video_play_sharp"," 'watch_sharp': ZetaIcons.watch_sharp"],"tsTypes":["add_box","add_circle_outline","add_circle","add","android","backspace","block","cast_connected","cast","chart_pie","cloud_done","cloud_download","cloud_off","cloud_outline","cloud","cloud_upload","content","copy_file","create_new_folder","desktop","device_settings","devices_ecosystem","doc_attach","downloading","email_outline","email","file","finished_download","flag","folder_file","folder_outline","folder","grid_view","headphones","jpg_attach","keyboard","laptop","maintenance","memory","monitor","open_new_off","page_height","page_rotate","page_width","pdf_attach","phone_android","phone_iphone","phonelink","png_attach","ppt_attach","printer","publish","push_pin","redo","remove_box","remove_circle_outline","remove_circle","remove","reply","save_alt","save_file","save","scanner","security","send","shared_folder","smart_phone","sort","speaker","tablet_mac","tablet","tv","undo","upload_file","video_play","watch"]} \ No newline at end of file +{"dartDefinitions":[" static const IconData add_box = IconData(0xe001, fontFamily: family, fontPackage: package);"," static const IconData add_circle_outline = IconData(0xe002, fontFamily: family, fontPackage: package);"," static const IconData add_circle = IconData(0xe003, fontFamily: family, fontPackage: package);"," static const IconData add = IconData(0xe004, fontFamily: family, fontPackage: package);"," static const IconData android = IconData(0xe005, fontFamily: family, fontPackage: package);"," static const IconData backspace = IconData(0xe006, fontFamily: family, fontPackage: package);"," static const IconData block = IconData(0xe007, fontFamily: family, fontPackage: package);"," static const IconData cast_connected = IconData(0xe008, fontFamily: family, fontPackage: package);"," static const IconData cast = IconData(0xe009, fontFamily: family, fontPackage: package);"," static const IconData chart_pie = IconData(0xe00a, fontFamily: family, fontPackage: package);"," static const IconData cloud_done = IconData(0xe00b, fontFamily: family, fontPackage: package);"," static const IconData cloud_download = IconData(0xe00c, fontFamily: family, fontPackage: package);"," static const IconData cloud_off = IconData(0xe00d, fontFamily: family, fontPackage: package);"," static const IconData cloud_outline = IconData(0xe00e, fontFamily: family, fontPackage: package);"," static const IconData cloud = IconData(0xe00f, fontFamily: family, fontPackage: package);"," static const IconData cloud_upload = IconData(0xe010, fontFamily: family, fontPackage: package);"," static const IconData content = IconData(0xe011, fontFamily: family, fontPackage: package);"," static const IconData copy_file = IconData(0xe012, fontFamily: family, fontPackage: package);"," static const IconData create_new_folder = IconData(0xe013, fontFamily: family, fontPackage: package);"," static const IconData desktop = IconData(0xe014, fontFamily: family, fontPackage: package);"," static const IconData device_settings = IconData(0xe015, fontFamily: family, fontPackage: package);"," static const IconData devices_ecosystem = IconData(0xe016, fontFamily: family, fontPackage: package);"," static const IconData doc_attach = IconData(0xe017, fontFamily: family, fontPackage: package);"," static const IconData downloading = IconData(0xe018, fontFamily: family, fontPackage: package);"," static const IconData email_outline = IconData(0xe019, fontFamily: family, fontPackage: package);"," static const IconData email = IconData(0xe01a, fontFamily: family, fontPackage: package);"," static const IconData file = IconData(0xe01b, fontFamily: family, fontPackage: package);"," static const IconData finished_download = IconData(0xe01c, fontFamily: family, fontPackage: package);"," static const IconData flag = IconData(0xe01d, fontFamily: family, fontPackage: package);"," static const IconData folder_file = IconData(0xe01e, fontFamily: family, fontPackage: package);"," static const IconData folder_outline = IconData(0xe01f, fontFamily: family, fontPackage: package);"," static const IconData folder = IconData(0xe020, fontFamily: family, fontPackage: package);"," static const IconData grid_view = IconData(0xe021, fontFamily: family, fontPackage: package);"," static const IconData headphones = IconData(0xe022, fontFamily: family, fontPackage: package);"," static const IconData jpg_attach = IconData(0xe023, fontFamily: family, fontPackage: package);"," static const IconData keyboard = IconData(0xe024, fontFamily: family, fontPackage: package);"," static const IconData laptop = IconData(0xe025, fontFamily: family, fontPackage: package);"," static const IconData maintenance = IconData(0xe026, fontFamily: family, fontPackage: package);"," static const IconData memory = IconData(0xe027, fontFamily: family, fontPackage: package);"," static const IconData monitor = IconData(0xe028, fontFamily: family, fontPackage: package);"," static const IconData open_new_off = IconData(0xe029, fontFamily: family, fontPackage: package);"," static const IconData page_height = IconData(0xe02a, fontFamily: family, fontPackage: package);"," static const IconData page_rotate = IconData(0xe02b, fontFamily: family, fontPackage: package);"," static const IconData page_width = IconData(0xe02c, fontFamily: family, fontPackage: package);"," static const IconData pdf_attach = IconData(0xe02d, fontFamily: family, fontPackage: package);"," static const IconData phone_android = IconData(0xe02e, fontFamily: family, fontPackage: package);"," static const IconData phone_iphone = IconData(0xe02f, fontFamily: family, fontPackage: package);"," static const IconData phonelink = IconData(0xe030, fontFamily: family, fontPackage: package);"," static const IconData png_attach = IconData(0xe031, fontFamily: family, fontPackage: package);"," static const IconData ppt_attach = IconData(0xe032, fontFamily: family, fontPackage: package);"," static const IconData printer = IconData(0xe033, fontFamily: family, fontPackage: package);"," static const IconData publish = IconData(0xe034, fontFamily: family, fontPackage: package);"," static const IconData push_pin = IconData(0xe035, fontFamily: family, fontPackage: package);"," static const IconData redo = IconData(0xe036, fontFamily: family, fontPackage: package);"," static const IconData remove_box = IconData(0xe037, fontFamily: family, fontPackage: package);"," static const IconData remove_circle_outline = IconData(0xe038, fontFamily: family, fontPackage: package);"," static const IconData remove_circle = IconData(0xe039, fontFamily: family, fontPackage: package);"," static const IconData remove = IconData(0xe03a, fontFamily: family, fontPackage: package);"," static const IconData reply = IconData(0xe03b, fontFamily: family, fontPackage: package);"," static const IconData save_alt = IconData(0xe03c, fontFamily: family, fontPackage: package);"," static const IconData save_file = IconData(0xe03d, fontFamily: family, fontPackage: package);"," static const IconData save = IconData(0xe03e, fontFamily: family, fontPackage: package);"," static const IconData scanner = IconData(0xe03f, fontFamily: family, fontPackage: package);"," static const IconData security = IconData(0xe040, fontFamily: family, fontPackage: package);"," static const IconData send = IconData(0xe041, fontFamily: family, fontPackage: package);"," static const IconData shared_folder = IconData(0xe042, fontFamily: family, fontPackage: package);"," static const IconData smart_phone = IconData(0xe043, fontFamily: family, fontPackage: package);"," static const IconData sort = IconData(0xe044, fontFamily: family, fontPackage: package);"," static const IconData speaker = IconData(0xe045, fontFamily: family, fontPackage: package);"," static const IconData tablet_mac = IconData(0xe046, fontFamily: family, fontPackage: package);"," static const IconData tablet = IconData(0xe047, fontFamily: family, fontPackage: package);"," static const IconData tv = IconData(0xe048, fontFamily: family, fontPackage: package);"," static const IconData undo = IconData(0xe049, fontFamily: family, fontPackage: package);"," static const IconData upload_file = IconData(0xe04a, fontFamily: family, fontPackage: package);"," static const IconData video_play = IconData(0xe04b, fontFamily: family, fontPackage: package);"," static const IconData watch = IconData(0xe04c, fontFamily: family, fontPackage: package);"],"dartRoundDefinitions":[" static const IconData add_box_round = IconData(0xe001, fontFamily: familyRound, fontPackage: package);"," static const IconData add_circle_outline_round = IconData(0xe002, fontFamily: familyRound, fontPackage: package);"," static const IconData add_circle_round = IconData(0xe003, fontFamily: familyRound, fontPackage: package);"," static const IconData add_round = IconData(0xe004, fontFamily: familyRound, fontPackage: package);"," static const IconData android_round = IconData(0xe005, fontFamily: familyRound, fontPackage: package);"," static const IconData backspace_round = IconData(0xe006, fontFamily: familyRound, fontPackage: package);"," static const IconData block_round = IconData(0xe007, fontFamily: familyRound, fontPackage: package);"," static const IconData cast_connected_round = IconData(0xe008, fontFamily: familyRound, fontPackage: package);"," static const IconData cast_round = IconData(0xe009, fontFamily: familyRound, fontPackage: package);"," static const IconData chart_pie_round = IconData(0xe00a, fontFamily: familyRound, fontPackage: package);"," static const IconData cloud_done_round = IconData(0xe00b, fontFamily: familyRound, fontPackage: package);"," static const IconData cloud_download_round = IconData(0xe00c, fontFamily: familyRound, fontPackage: package);"," static const IconData cloud_off_round = IconData(0xe00d, fontFamily: familyRound, fontPackage: package);"," static const IconData cloud_outline_round = IconData(0xe00e, fontFamily: familyRound, fontPackage: package);"," static const IconData cloud_round = IconData(0xe00f, fontFamily: familyRound, fontPackage: package);"," static const IconData cloud_upload_round = IconData(0xe010, fontFamily: familyRound, fontPackage: package);"," static const IconData content_round = IconData(0xe011, fontFamily: familyRound, fontPackage: package);"," static const IconData copy_file_round = IconData(0xe012, fontFamily: familyRound, fontPackage: package);"," static const IconData create_new_folder_round = IconData(0xe013, fontFamily: familyRound, fontPackage: package);"," static const IconData desktop_round = IconData(0xe014, fontFamily: familyRound, fontPackage: package);"," static const IconData device_settings_round = IconData(0xe015, fontFamily: familyRound, fontPackage: package);"," static const IconData devices_ecosystem_round = IconData(0xe016, fontFamily: familyRound, fontPackage: package);"," static const IconData doc_attach_round = IconData(0xe017, fontFamily: familyRound, fontPackage: package);"," static const IconData downloading_round = IconData(0xe018, fontFamily: familyRound, fontPackage: package);"," static const IconData email_outline_round = IconData(0xe019, fontFamily: familyRound, fontPackage: package);"," static const IconData email_round = IconData(0xe01a, fontFamily: familyRound, fontPackage: package);"," static const IconData file_round = IconData(0xe01b, fontFamily: familyRound, fontPackage: package);"," static const IconData finished_download_round = IconData(0xe01c, fontFamily: familyRound, fontPackage: package);"," static const IconData flag_round = IconData(0xe01d, fontFamily: familyRound, fontPackage: package);"," static const IconData folder_file_round = IconData(0xe01e, fontFamily: familyRound, fontPackage: package);"," static const IconData folder_outline_round = IconData(0xe01f, fontFamily: familyRound, fontPackage: package);"," static const IconData folder_round = IconData(0xe020, fontFamily: familyRound, fontPackage: package);"," static const IconData grid_view_round = IconData(0xe021, fontFamily: familyRound, fontPackage: package);"," static const IconData headphones_round = IconData(0xe022, fontFamily: familyRound, fontPackage: package);"," static const IconData jpg_attach_round = IconData(0xe023, fontFamily: familyRound, fontPackage: package);"," static const IconData keyboard_round = IconData(0xe024, fontFamily: familyRound, fontPackage: package);"," static const IconData laptop_round = IconData(0xe025, fontFamily: familyRound, fontPackage: package);"," static const IconData maintenance_round = IconData(0xe026, fontFamily: familyRound, fontPackage: package);"," static const IconData memory_round = IconData(0xe027, fontFamily: familyRound, fontPackage: package);"," static const IconData monitor_round = IconData(0xe028, fontFamily: familyRound, fontPackage: package);"," static const IconData open_new_off_round = IconData(0xe029, fontFamily: familyRound, fontPackage: package);"," static const IconData page_height_round = IconData(0xe02a, fontFamily: familyRound, fontPackage: package);"," static const IconData page_rotate_round = IconData(0xe02b, fontFamily: familyRound, fontPackage: package);"," static const IconData page_width_round = IconData(0xe02c, fontFamily: familyRound, fontPackage: package);"," static const IconData pdf_attach_round = IconData(0xe02d, fontFamily: familyRound, fontPackage: package);"," static const IconData phone_android_round = IconData(0xe02e, fontFamily: familyRound, fontPackage: package);"," static const IconData phone_iphone_round = IconData(0xe02f, fontFamily: familyRound, fontPackage: package);"," static const IconData phonelink_round = IconData(0xe030, fontFamily: familyRound, fontPackage: package);"," static const IconData png_attach_round = IconData(0xe031, fontFamily: familyRound, fontPackage: package);"," static const IconData ppt_attach_round = IconData(0xe032, fontFamily: familyRound, fontPackage: package);"," static const IconData printer_round = IconData(0xe033, fontFamily: familyRound, fontPackage: package);"," static const IconData publish_round = IconData(0xe034, fontFamily: familyRound, fontPackage: package);"," static const IconData push_pin_round = IconData(0xe035, fontFamily: familyRound, fontPackage: package);"," static const IconData redo_round = IconData(0xe036, fontFamily: familyRound, fontPackage: package);"," static const IconData remove_box_round = IconData(0xe037, fontFamily: familyRound, fontPackage: package);"," static const IconData remove_circle_outline_round = IconData(0xe038, fontFamily: familyRound, fontPackage: package);"," static const IconData remove_circle_round = IconData(0xe039, fontFamily: familyRound, fontPackage: package);"," static const IconData remove_round = IconData(0xe03a, fontFamily: familyRound, fontPackage: package);"," static const IconData reply_round = IconData(0xe03b, fontFamily: familyRound, fontPackage: package);"," static const IconData save_alt_round = IconData(0xe03c, fontFamily: familyRound, fontPackage: package);"," static const IconData save_file_round = IconData(0xe03d, fontFamily: familyRound, fontPackage: package);"," static const IconData save_round = IconData(0xe03e, fontFamily: familyRound, fontPackage: package);"," static const IconData scanner_round = IconData(0xe03f, fontFamily: familyRound, fontPackage: package);"," static const IconData security_round = IconData(0xe040, fontFamily: familyRound, fontPackage: package);"," static const IconData send_round = IconData(0xe041, fontFamily: familyRound, fontPackage: package);"," static const IconData shared_folder_round = IconData(0xe042, fontFamily: familyRound, fontPackage: package);"," static const IconData smart_phone_round = IconData(0xe043, fontFamily: familyRound, fontPackage: package);"," static const IconData sort_round = IconData(0xe044, fontFamily: familyRound, fontPackage: package);"," static const IconData speaker_round = IconData(0xe045, fontFamily: familyRound, fontPackage: package);"," static const IconData tablet_mac_round = IconData(0xe046, fontFamily: familyRound, fontPackage: package);"," static const IconData tablet_round = IconData(0xe047, fontFamily: familyRound, fontPackage: package);"," static const IconData tv_round = IconData(0xe048, fontFamily: familyRound, fontPackage: package);"," static const IconData undo_round = IconData(0xe049, fontFamily: familyRound, fontPackage: package);"," static const IconData upload_file_round = IconData(0xe04a, fontFamily: familyRound, fontPackage: package);"," static const IconData video_play_round = IconData(0xe04b, fontFamily: familyRound, fontPackage: package);"," static const IconData watch_round = IconData(0xe04c, fontFamily: familyRound, fontPackage: package);"],"dartSharpDefinitions":[" static const IconData add_box_sharp = IconData(0xe001, fontFamily: familySharp, fontPackage: package);"," static const IconData add_circle_outline_sharp = IconData(0xe002, fontFamily: familySharp, fontPackage: package);"," static const IconData add_circle_sharp = IconData(0xe003, fontFamily: familySharp, fontPackage: package);"," static const IconData add_sharp = IconData(0xe004, fontFamily: familySharp, fontPackage: package);"," static const IconData android_sharp = IconData(0xe005, fontFamily: familySharp, fontPackage: package);"," static const IconData backspace_sharp = IconData(0xe006, fontFamily: familySharp, fontPackage: package);"," static const IconData block_sharp = IconData(0xe007, fontFamily: familySharp, fontPackage: package);"," static const IconData cast_connected_sharp = IconData(0xe008, fontFamily: familySharp, fontPackage: package);"," static const IconData cast_sharp = IconData(0xe009, fontFamily: familySharp, fontPackage: package);"," static const IconData chart_pie_sharp = IconData(0xe00a, fontFamily: familySharp, fontPackage: package);"," static const IconData cloud_done_sharp = IconData(0xe00b, fontFamily: familySharp, fontPackage: package);"," static const IconData cloud_download_sharp = IconData(0xe00c, fontFamily: familySharp, fontPackage: package);"," static const IconData cloud_off_sharp = IconData(0xe00d, fontFamily: familySharp, fontPackage: package);"," static const IconData cloud_outline_sharp = IconData(0xe00e, fontFamily: familySharp, fontPackage: package);"," static const IconData cloud_sharp = IconData(0xe00f, fontFamily: familySharp, fontPackage: package);"," static const IconData cloud_upload_sharp = IconData(0xe010, fontFamily: familySharp, fontPackage: package);"," static const IconData content_sharp = IconData(0xe011, fontFamily: familySharp, fontPackage: package);"," static const IconData copy_file_sharp = IconData(0xe012, fontFamily: familySharp, fontPackage: package);"," static const IconData create_new_folder_sharp = IconData(0xe013, fontFamily: familySharp, fontPackage: package);"," static const IconData desktop_sharp = IconData(0xe014, fontFamily: familySharp, fontPackage: package);"," static const IconData device_settings_sharp = IconData(0xe015, fontFamily: familySharp, fontPackage: package);"," static const IconData devices_ecosystem_sharp = IconData(0xe016, fontFamily: familySharp, fontPackage: package);"," static const IconData doc_attach_sharp = IconData(0xe017, fontFamily: familySharp, fontPackage: package);"," static const IconData downloading_sharp = IconData(0xe018, fontFamily: familySharp, fontPackage: package);"," static const IconData email_outline_sharp = IconData(0xe019, fontFamily: familySharp, fontPackage: package);"," static const IconData email_sharp = IconData(0xe01a, fontFamily: familySharp, fontPackage: package);"," static const IconData file_sharp = IconData(0xe01b, fontFamily: familySharp, fontPackage: package);"," static const IconData finished_download_sharp = IconData(0xe01c, fontFamily: familySharp, fontPackage: package);"," static const IconData flag_sharp = IconData(0xe01d, fontFamily: familySharp, fontPackage: package);"," static const IconData folder_file_sharp = IconData(0xe01e, fontFamily: familySharp, fontPackage: package);"," static const IconData folder_outline_sharp = IconData(0xe01f, fontFamily: familySharp, fontPackage: package);"," static const IconData folder_sharp = IconData(0xe020, fontFamily: familySharp, fontPackage: package);"," static const IconData grid_view_sharp = IconData(0xe021, fontFamily: familySharp, fontPackage: package);"," static const IconData headphones_sharp = IconData(0xe022, fontFamily: familySharp, fontPackage: package);"," static const IconData jpg_attach_sharp = IconData(0xe023, fontFamily: familySharp, fontPackage: package);"," static const IconData keyboard_sharp = IconData(0xe024, fontFamily: familySharp, fontPackage: package);"," static const IconData laptop_sharp = IconData(0xe025, fontFamily: familySharp, fontPackage: package);"," static const IconData maintenance_sharp = IconData(0xe026, fontFamily: familySharp, fontPackage: package);"," static const IconData memory_sharp = IconData(0xe027, fontFamily: familySharp, fontPackage: package);"," static const IconData monitor_sharp = IconData(0xe028, fontFamily: familySharp, fontPackage: package);"," static const IconData open_new_off_sharp = IconData(0xe029, fontFamily: familySharp, fontPackage: package);"," static const IconData page_height_sharp = IconData(0xe02a, fontFamily: familySharp, fontPackage: package);"," static const IconData page_rotate_sharp = IconData(0xe02b, fontFamily: familySharp, fontPackage: package);"," static const IconData page_width_sharp = IconData(0xe02c, fontFamily: familySharp, fontPackage: package);"," static const IconData pdf_attach_sharp = IconData(0xe02d, fontFamily: familySharp, fontPackage: package);"," static const IconData phone_android_sharp = IconData(0xe02e, fontFamily: familySharp, fontPackage: package);"," static const IconData phone_iphone_sharp = IconData(0xe02f, fontFamily: familySharp, fontPackage: package);"," static const IconData phonelink_sharp = IconData(0xe030, fontFamily: familySharp, fontPackage: package);"," static const IconData png_attach_sharp = IconData(0xe031, fontFamily: familySharp, fontPackage: package);"," static const IconData ppt_attach_sharp = IconData(0xe032, fontFamily: familySharp, fontPackage: package);"," static const IconData printer_sharp = IconData(0xe033, fontFamily: familySharp, fontPackage: package);"," static const IconData publish_sharp = IconData(0xe034, fontFamily: familySharp, fontPackage: package);"," static const IconData push_pin_sharp = IconData(0xe035, fontFamily: familySharp, fontPackage: package);"," static const IconData redo_sharp = IconData(0xe036, fontFamily: familySharp, fontPackage: package);"," static const IconData remove_box_sharp = IconData(0xe037, fontFamily: familySharp, fontPackage: package);"," static const IconData remove_circle_outline_sharp = IconData(0xe038, fontFamily: familySharp, fontPackage: package);"," static const IconData remove_circle_sharp = IconData(0xe039, fontFamily: familySharp, fontPackage: package);"," static const IconData remove_sharp = IconData(0xe03a, fontFamily: familySharp, fontPackage: package);"," static const IconData reply_sharp = IconData(0xe03b, fontFamily: familySharp, fontPackage: package);"," static const IconData save_alt_sharp = IconData(0xe03c, fontFamily: familySharp, fontPackage: package);"," static const IconData save_file_sharp = IconData(0xe03d, fontFamily: familySharp, fontPackage: package);"," static const IconData save_sharp = IconData(0xe03e, fontFamily: familySharp, fontPackage: package);"," static const IconData scanner_sharp = IconData(0xe03f, fontFamily: familySharp, fontPackage: package);"," static const IconData security_sharp = IconData(0xe040, fontFamily: familySharp, fontPackage: package);"," static const IconData send_sharp = IconData(0xe041, fontFamily: familySharp, fontPackage: package);"," static const IconData shared_folder_sharp = IconData(0xe042, fontFamily: familySharp, fontPackage: package);"," static const IconData smart_phone_sharp = IconData(0xe043, fontFamily: familySharp, fontPackage: package);"," static const IconData sort_sharp = IconData(0xe044, fontFamily: familySharp, fontPackage: package);"," static const IconData speaker_sharp = IconData(0xe045, fontFamily: familySharp, fontPackage: package);"," static const IconData tablet_mac_sharp = IconData(0xe046, fontFamily: familySharp, fontPackage: package);"," static const IconData tablet_sharp = IconData(0xe047, fontFamily: familySharp, fontPackage: package);"," static const IconData tv_sharp = IconData(0xe048, fontFamily: familySharp, fontPackage: package);"," static const IconData undo_sharp = IconData(0xe049, fontFamily: familySharp, fontPackage: package);"," static const IconData upload_file_sharp = IconData(0xe04a, fontFamily: familySharp, fontPackage: package);"," static const IconData video_play_sharp = IconData(0xe04b, fontFamily: familySharp, fontPackage: package);"," static const IconData watch_sharp = IconData(0xe04c, fontFamily: familySharp, fontPackage: package);"],"iconNames":["add_box","add_circle_outline","add_circle","add","android","backspace","block","cast_connected","cast","chart_pie","cloud_done","cloud_download","cloud_off","cloud_outline","cloud","cloud_upload","content","copy_file","create_new_folder","desktop","device_settings","devices_ecosystem","doc_attach","downloading","email_outline","email","file","finished_download","flag","folder_file","folder_outline","folder","grid_view","headphones","jpg_attach","keyboard","laptop","maintenance","memory","monitor","open_new_off","page_height","page_rotate","page_width","pdf_attach","phone_android","phone_iphone","phonelink","png_attach","ppt_attach","printer","publish","push_pin","redo","remove_box","remove_circle_outline","remove_circle","remove","reply","save_alt","save_file","save","scanner","security","send","shared_folder","smart_phone","sort","speaker","tablet_mac","tablet","tv","undo","upload_file","video_play","watch"]} \ No newline at end of file diff --git a/test/data/iconNodes.json b/test/data/iconNodes.json index e707976a..93adff4c 100644 --- a/test/data/iconNodes.json +++ b/test/data/iconNodes.json @@ -1,433 +1 @@ -[ - { - "id": "176:5662", - "name": "Add", - "type": "COMPONENT_SET", - "children": [ - { - "id": "176:5663", - "name": "Style=Round", - "type": "COMPONENT", - "children": [ - { - "id": "176:5664", - "name": "Bounds", - "type": "VECTOR" - }, - { - "id": "176:5665", - "name": "Vector", - "type": "VECTOR" - } - ] - }, - { - "id": "176:5666", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5667", - "name": "Bounds", - "type": "VECTOR" - }, - { - "id": "176:5668", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -92, "y": -210, "width": 14, "height": 14 }, - "absoluteRenderBounds": { "x": -92, "y": -210, "width": 14, "height": 14 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.11372549086809158, "g": 0.11764705926179886, "b": 0.13725490868091583, "a": 1 } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ] - } - ] - }, - { - "id": "176:5669", - "name": "Sort", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5670", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5671", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1143, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5672", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { "type": "VARIABLE_ALIAS", "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1144.5, "y": -212, "width": 20.68938636779785, "height": 18 }, - "absoluteRenderBounds": { "x": 1144.5, "y": -212, "width": 20.6893310546875, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.11372549086809158, "g": 0.11764705926179886, "b": 0.13725490868091583, "a": 1 }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null, "2": null, "3": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 1143, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1143, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5673", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5674", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1183, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5675", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { "type": "VARIABLE_ALIAS", "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1184.5, "y": -212, "width": 20.68938636779785, "height": 18 }, - "absoluteRenderBounds": { "x": 1184.5, "y": -212, "width": 20.6893310546875, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.11372549086809158, "g": 0.11764705926179886, "b": 0.13725490868091583, "a": 1 }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null, "2": null, "3": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 1183, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1183, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1119, "y": -239, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 1119, "y": -239, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5676", - "name": "Content", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5677", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "rotation": -1.224648970167536e-16, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5678", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 663, "y": 24.999999999999996, "width": 24, "height": 24.000000000000004 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5679", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "rotation": 1.224648970167536e-16, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 665, "y": 26, "width": 19, "height": 22 }, - "absoluteRenderBounds": { "x": 665, "y": 26, "width": 19, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.11372549086809158, "g": 0.11764705926179886, "b": 0.13725490868091583, "a": 1 } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 663, "y": 24.999999999999996, "width": 24, "height": 24.000000000000004 }, - "absoluteRenderBounds": { "x": 663, "y": 24.999999999999996, "width": 24, "height": 24.000000000000004 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5680", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5681", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 703, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5682", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 705, "y": 26, "width": 19, "height": 22 }, - "absoluteRenderBounds": { "x": 705, "y": 26, "width": 19, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.11372549086809158, "g": 0.11764705926179886, "b": 0.13725490868091583, "a": 1 } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 703, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 703, "y": 25, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 639, "y": 1, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 639, "y": 1, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - } -] +[{"id":"176:5662","name":"Add","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5663","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5664","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5665","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-132,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-132,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5666","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5667","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5668","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-92,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-92,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-161,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5669","name":"Sort","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5670","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5671","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5672","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1144.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1144.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5673","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5674","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5675","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1184.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1184.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1119,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5676","name":"Content","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5677","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","rotation":-1.224648970167536e-16,"blendMode":"PASS_THROUGH","children":[{"id":"176:5678","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5679","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":1.224648970167536e-16,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":665,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":665,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5680","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5681","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5682","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":705,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":705,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5683","name":"Copy File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5684","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5685","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5686","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":345,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":345,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5687","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5688","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5689","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":385,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":385,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5690","name":"Remove Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5691","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5692","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5693","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":345,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":345,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5694","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5695","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5696","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":385,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":385,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5697","name":"Add Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5698","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5699","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5700","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5701","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5702","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5703","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5704","name":"Remove Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5705","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5706","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5707","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":665,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":665,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5708","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5709","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5710","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":705,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":705,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5711","name":"Block","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5712","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5713","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5714","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5715","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5716","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5717","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5718","name":"Add Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5719","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5720","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5721","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":505,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":505,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5722","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5723","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5724","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":545,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":545,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5725","name":"Remove","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5726","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5727","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5728","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":28,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":28,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5729","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5730","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5731","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":68,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":68,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5732","name":"Android","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5733","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5734","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5735","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":506,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":506,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5736","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5737","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5738","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":546,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":546,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5739","name":"Add Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5740","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5741","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5742","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5743","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5744","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5745","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":866,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5746","name":"Remove Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5747","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5748","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5749","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":986,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":986,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5750","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5751","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5752","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1026,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":1026,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":959,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5753","name":"Push Pin","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5754","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5755","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5756","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":28,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":28,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5757","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5758","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5759","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":68,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":68,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5760","name":"Send","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5761","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5762","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5763","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":-91.48487854003906,"width":19.457500457763672,"height":16.96976089477539},"absoluteRenderBounds":{"x":185,"y":-91.48487854003906,"width":19.457504272460938,"height":16.969757080078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5764","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5765","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5766","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":-92,"width":21,"height":18},"absoluteRenderBounds":{"x":225,"y":-92,"width":21,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5767","name":"Backspace","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5768","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5769","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5770","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343.2049865722656,"y":-92,"width":23.795000076293945,"height":18},"absoluteRenderBounds":{"x":343.2049865722656,"y":-92,"width":23.795013427734375,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5771","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5772","name":"Backspace","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5773","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-92,"width":24,"height":18},"absoluteRenderBounds":{"x":383,"y":-92,"width":24,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5774","name":"Flag","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5775","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5776","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5777","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":508,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":508,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5778","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5779","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5780","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":548,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":548,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5781","name":"Save","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5782","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5783","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5784","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":666,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":666,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5785","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5786","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5787","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":706,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":706,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5788","name":"Reply","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5789","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5790","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5791","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592500686645508,"height":13.594012260437012},"absoluteRenderBounds":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592529296875,"height":13.594009399414062},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5792","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5793","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5794","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1026,"y":-90,"width":18,"height":15},"absoluteRenderBounds":{"x":1026,"y":-90,"width":18,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":959,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5795","name":"Redo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5796","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5797","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5798","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1144.9423828125,"y":-87,"width":20.05765724182129,"height":8},"absoluteRenderBounds":{"x":1144.9423828125,"y":-87,"width":20.0576171875,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5799","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5800","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5801","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1184.5400390625,"y":-88,"width":20.459999084472656,"height":9},"absoluteRenderBounds":{"x":1184.5400390625,"y":-88,"width":20.4599609375,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1119,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5802","name":"Save Alt","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5803","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5804","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5805","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5806","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5807","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5808","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":866,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5809","name":"Undo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5810","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5811","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5812","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1305,"y":-87,"width":20.067657470703125,"height":8},"absoluteRenderBounds":{"x":1305,"y":-87,"width":20.067626953125,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1303,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5813","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5814","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5815","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1345,"y":-88,"width":20.469999313354492,"height":9},"absoluteRenderBounds":{"x":1345,"y":-88,"width":20.469970703125,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1279,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1279,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5816","name":"Chart Pie","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5817","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5818","name":"Rectangle 1756","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5819","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":862,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":862,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":860,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5820","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5821","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":826,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":824,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":824,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:5822","name":"Email","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5823","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5824","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5825","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-135,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-135,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5826","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5827","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5828","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-95,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-95,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-161,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:5829","name":"Email Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5830","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5831","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5832","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":25,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":25,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5833","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5834","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5835","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":65,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":65,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]}] \ No newline at end of file diff --git a/test/data/iconsPage.json b/test/data/iconsPage.json index 6e585ec5..d93ac714 100644 --- a/test/data/iconsPage.json +++ b/test/data/iconsPage.json @@ -1,14777 +1 @@ -{ - "id": "156:1674", - "name": "Icons", - "type": "CANVAS", - "children": [ - { - "id": "176:5659", - "name": "Content", - "type": "FRAME", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5662", - "name": "Add", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5663", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5664", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -137, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5665", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -132, "y": -210, "width": 14, "height": 14 }, - "absoluteRenderBounds": { "x": -132, "y": -210, "width": 14, "height": 14 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -137, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -137, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5666", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5667", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -97, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5668", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -92, "y": -210, "width": 14, "height": 14 }, - "absoluteRenderBounds": { "x": -92, "y": -210, "width": 14, "height": 14 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -97, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -97, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -161, "y": -239, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -161, "y": -239, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5669", - "name": "Sort", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5670", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5671", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1143, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5672", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1144.5, "y": -212, "width": 20.68938636779785, "height": 18 }, - "absoluteRenderBounds": { "x": 1144.5, "y": -212, "width": 20.6893310546875, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null, "2": null, "3": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 1143, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1143, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5673", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5674", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1183, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5675", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1184.5, "y": -212, "width": 20.68938636779785, "height": 18 }, - "absoluteRenderBounds": { "x": 1184.5, "y": -212, "width": 20.6893310546875, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null, "2": null, "3": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 1183, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1183, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1119, "y": -239, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 1119, "y": -239, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5676", - "name": "Content", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5677", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "rotation": -1.224648970167536e-16, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5678", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 663, - "y": 24.999999999999996, - "width": 24, - "height": 24.000000000000004 - }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5679", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "rotation": 1.224648970167536e-16, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 665, "y": 26, "width": 19, "height": 22 }, - "absoluteRenderBounds": { "x": 665, "y": 26, "width": 19, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { - "x": 663, - "y": 24.999999999999996, - "width": 24, - "height": 24.000000000000004 - }, - "absoluteRenderBounds": { - "x": 663, - "y": 24.999999999999996, - "width": 24, - "height": 24.000000000000004 - }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5680", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5681", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 703, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5682", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 705, "y": 26, "width": 19, "height": 22 }, - "absoluteRenderBounds": { "x": 705, "y": 26, "width": 19, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 703, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 703, "y": 25, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 639, "y": 1, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 639, "y": 1, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5683", - "name": "Copy File", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5684", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5685", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 343, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5686", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 345, "y": 26, "width": 19, "height": 22 }, - "absoluteRenderBounds": { "x": 345, "y": 26, "width": 19, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 343, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 343, "y": 25, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5687", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5688", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 383, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5689", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 385, "y": 26, "width": 19, "height": 22 }, - "absoluteRenderBounds": { "x": 385, "y": 26, "width": 19, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 383, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 383, "y": 25, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 319, "y": 1, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 319, "y": 1, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5690", - "name": "Remove Circle Outline", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5691", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5692", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 343, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5693", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 345, "y": -213, "width": 20, "height": 20 }, - "absoluteRenderBounds": { "x": 345, "y": -213, "width": 20, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 343, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 343, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5694", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5695", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 383, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5696", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 385, "y": -213, "width": 20, "height": 20 }, - "absoluteRenderBounds": { "x": 385, "y": -213, "width": 20, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 383, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 383, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 319, "y": -239, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 319, "y": -239, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5697", - "name": "Add Circle Outline", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5698", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5699", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 183, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5700", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 185, "y": -213, "width": 20, "height": 20 }, - "absoluteRenderBounds": { "x": 185, "y": -213, "width": 20, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 183, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 183, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5701", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5702", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 223, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5703", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 225, "y": -213, "width": 20, "height": 20 }, - "absoluteRenderBounds": { "x": 225, "y": -213, "width": 20, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 223, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 223, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 159, "y": -239, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 159, "y": -239, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5704", - "name": "Remove Circle", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5705", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5706", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 663, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5707", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 665, "y": -213, "width": 20, "height": 20 }, - "absoluteRenderBounds": { "x": 665, "y": -213, "width": 20, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 663, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 663, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5708", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5709", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 703, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5710", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 705, "y": -213, "width": 20, "height": 20 }, - "absoluteRenderBounds": { "x": 705, "y": -213, "width": 20, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 703, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 703, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 639, "y": -239, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 639, "y": -239, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5711", - "name": "Block", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5712", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5713", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 183, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5714", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 185, "y": 27, "width": 20, "height": 20 }, - "absoluteRenderBounds": { "x": 185, "y": 27, "width": 20, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 183, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 183, "y": 25, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5715", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5716", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 223, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5717", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 225, "y": 27, "width": 20, "height": 20 }, - "absoluteRenderBounds": { "x": 225, "y": 27, "width": 20, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 223, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 223, "y": 25, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 159, "y": 1, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 159, "y": 1, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5718", - "name": "Add Circle", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5719", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5720", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 503, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5721", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 505, "y": -213, "width": 20, "height": 20 }, - "absoluteRenderBounds": { "x": 505, "y": -213, "width": 20, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 503, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 503, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5722", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5723", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 543, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5724", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 545, "y": -213, "width": 20, "height": 20 }, - "absoluteRenderBounds": { "x": 545, "y": -213, "width": 20, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 543, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 543, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 479, "y": -239, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 479, "y": -239, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5725", - "name": "Remove", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5726", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5727", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 23, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5728", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 28, "y": -204, "width": 14, "height": 2 }, - "absoluteRenderBounds": { "x": 28, "y": -204, "width": 14, "height": 2 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 23, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 23, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5729", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5730", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 63, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5731", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 68, "y": -204, "width": 14, "height": 2 }, - "absoluteRenderBounds": { "x": 68, "y": -204, "width": 14, "height": 2 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 63, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 63, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1, "y": -239, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1, "y": -239, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5732", - "name": "Android", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5733", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5734", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 503, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5735", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 506, "y": 26, "width": 18.603267669677734, "height": 22 }, - "absoluteRenderBounds": { "x": 506, "y": 26, "width": 18.603271484375, "height": 22 }, - "preserveRatio": true, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 503, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 503, "y": 25, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5736", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5737", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 543, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5738", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 546, "y": 26, "width": 18.603267669677734, "height": 22 }, - "absoluteRenderBounds": { "x": 546, "y": 26, "width": 18.603271484375, "height": 22 }, - "preserveRatio": true, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 543, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 543, "y": 25, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 479, "y": 1, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 479, "y": 1, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5739", - "name": "Add Box", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5740", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5741", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 823, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5742", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 826, "y": -212, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 826, "y": -212, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 823, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 823, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5743", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5744", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 863, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5745", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 866, "y": -212, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 866, "y": -212, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 863, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 863, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 799, "y": -239, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 799, "y": -239, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5746", - "name": "Remove Box", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5747", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5748", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 983, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5749", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 986, "y": -212, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 986, "y": -212, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 983, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 983, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5750", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5751", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1023, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5752", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1026, "y": -212, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 1026, "y": -212, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1023, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1023, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 959, "y": -239, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 959, "y": -239, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5753", - "name": "Push Pin", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5754", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5755", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 23, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5756", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 28, "y": -93, "width": 14, "height": 20 }, - "absoluteRenderBounds": { "x": 28, "y": -93, "width": 14, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 23, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 23, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5757", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5758", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 63, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5759", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 68, "y": -93, "width": 14, "height": 20 }, - "absoluteRenderBounds": { "x": 68, "y": -93, "width": 14, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 63, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 63, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1, "y": -119, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1, "y": -119, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5760", - "name": "Send", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5761", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5762", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 183, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5763", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 185, - "y": -91.48487854003906, - "width": 19.457500457763672, - "height": 16.96976089477539 - }, - "absoluteRenderBounds": { - "x": 185, - "y": -91.48487854003906, - "width": 19.457504272460938, - "height": 16.969757080078125 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 183, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 183, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5764", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5765", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 223, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5766", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 225, "y": -92, "width": 21, "height": 18 }, - "absoluteRenderBounds": { "x": 225, "y": -92, "width": 21, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 223, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 223, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 159, "y": -119, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 159, "y": -119, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5767", - "name": "Backspace", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5768", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5769", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 343, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5770", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 343.2049865722656, - "y": -92, - "width": 23.795000076293945, - "height": 18 - }, - "absoluteRenderBounds": { - "x": 343.2049865722656, - "y": -92, - "width": 23.795013427734375, - "height": 18 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 343, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 343, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5771", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5772", - "name": "Backspace", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 383, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5773", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 383, "y": -92, "width": 24, "height": 18 }, - "absoluteRenderBounds": { "x": 383, "y": -92, "width": 24, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 383, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 383, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 319, "y": -119, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 319, "y": -119, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5774", - "name": "Flag", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5775", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5776", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 503, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5777", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 508, "y": -91, "width": 15, "height": 17 }, - "absoluteRenderBounds": { "x": 508, "y": -91, "width": 15, "height": 17 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 503, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 503, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5778", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5779", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 543, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5780", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 548, "y": -91, "width": 15, "height": 17 }, - "absoluteRenderBounds": { "x": 548, "y": -91, "width": 15, "height": 17 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 543, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 543, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 479, "y": -119, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 479, "y": -119, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5781", - "name": "Save", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5782", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5783", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 663, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5784", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 666, "y": -92, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 666, "y": -92, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 663, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 663, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5785", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5786", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 703, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5787", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 706, "y": -92, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 706, "y": -92, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 703, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 703, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 639, "y": -119, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 639, "y": -119, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5788", - "name": "Reply", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5789", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5790", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 983, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5791", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 986.407470703125, - "y": -88.59400939941406, - "width": 17.592500686645508, - "height": 13.594012260437012 - }, - "absoluteRenderBounds": { - "x": 986.407470703125, - "y": -88.59400939941406, - "width": 17.592529296875, - "height": 13.594009399414062 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 983, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 983, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5792", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5793", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1023, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5794", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1026, "y": -90, "width": 18, "height": 15 }, - "absoluteRenderBounds": { "x": 1026, "y": -90, "width": 18, "height": 15 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1023, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1023, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 959, "y": -119, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 959, "y": -119, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5795", - "name": "Redo", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5796", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5797", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1143, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5798", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 1144.9423828125, - "y": -87, - "width": 20.05765724182129, - "height": 8 - }, - "absoluteRenderBounds": { "x": 1144.9423828125, "y": -87, "width": 20.0576171875, "height": 8 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1143, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1143, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5799", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5800", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1183, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5801", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 1184.5400390625, - "y": -88, - "width": 20.459999084472656, - "height": 9 - }, - "absoluteRenderBounds": { "x": 1184.5400390625, "y": -88, "width": 20.4599609375, "height": 9 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1183, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1183, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1119, "y": -119, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 1119, "y": -119, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5802", - "name": "Save Alt", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5803", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5804", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 823, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5805", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 826, "y": -92, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 826, "y": -92, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 823, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 823, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5806", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5807", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 863, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5808", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 866, "y": -92, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 866, "y": -92, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 863, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 863, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 799, "y": -119, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 799, "y": -119, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5809", - "name": "Undo", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5810", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5811", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1303, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5812", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1305, "y": -87, "width": 20.067657470703125, "height": 8 }, - "absoluteRenderBounds": { "x": 1305, "y": -87, "width": 20.067626953125, "height": 8 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1303, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1303, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5813", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5814", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1343, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5815", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1345, "y": -88, "width": 20.469999313354492, "height": 9 }, - "absoluteRenderBounds": { "x": 1345, "y": -88, "width": 20.469970703125, "height": 9 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1343, "y": -95, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1343, "y": -95, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1279, "y": -119, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 1279, "y": -119, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5816", - "name": "Chart Pie", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5817", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5818", - "name": "Rectangle 1756", - "type": "RECTANGLE", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 860, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5819", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 862, "y": 27, "width": 20, "height": 20 }, - "absoluteRenderBounds": { - "x": 862, - "y": 27.028961181640625, - "width": 19.970947265625, - "height": 19.94207763671875 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 860, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 860, "y": 25, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5820", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5821", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 826, "y": 27, "width": 20, "height": 20 }, - "absoluteRenderBounds": { - "x": 826, - "y": 27.028961181640625, - "width": 19.970947265625, - "height": 19.94207763671875 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 824, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 824, "y": 25, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 799, "y": 1, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 799, "y": 1, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.5921568870544434, "g": 0.27843138575553894, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "strokeDashes": [10, 5], - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5822", - "name": "Email", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5823", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5824", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -137, "y": 137, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5825", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -135, "y": 141, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": -135, "y": 141, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -137, "y": 137, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -137, "y": 137, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5826", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5827", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -97, "y": 137, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5828", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -95, "y": 141, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": -95, "y": 141, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -97, "y": 137, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -97, "y": 137, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -161, "y": 113, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -161, "y": 113, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5829", - "name": "Email Outline", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5830", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5831", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 23, "y": 137, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5832", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 25, "y": 141, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": 25, "y": 141, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 23, "y": 137, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 23, "y": 137, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5833", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5834", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 63, "y": 137, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5835", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 65, "y": 141, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": 65, "y": 141, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 63, "y": 137, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 63, "y": 137, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1, "y": 113, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1, "y": 113, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -257, "y": -432, "width": 1744, "height": 1280 }, - "absoluteRenderBounds": { "x": -257, "y": -432, "width": 1744, "height": 1280 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "clipsContent": true, - "background": [{ "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 1, "g": 1, "b": 1, "a": 1 } }], - "fills": [{ "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 1, "g": 1, "b": 1, "a": 1 } }], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 1, "g": 1, "b": 1, "a": 1 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5836", - "name": "Hardware", - "type": "FRAME", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5837", - "name": "Hardware", - "type": "TEXT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2105, "y": -352, "width": 109, "height": 32 }, - "absoluteRenderBounds": { - "x": -2102.93603515625, - "y": -344.760009765625, - "width": 104.982421875, - "height": 18.048004150390625 - }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.11372549086809158, "g": 0.11764705926179886, "b": 0.13725490868091583, "a": 1 } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "OUTSIDE", - "styles": { "fill": "1:2", "text": "1:3" }, - "exportSettings": [], - "effects": [], - "characters": "Hardware", - "style": { - "fontFamily": "IBM Plex Sans", - "fontPostScriptName": "IBMPlexSans-Medium", - "fontWeight": 500, - "textAutoResize": "WIDTH_AND_HEIGHT", - "fontSize": 24, - "textAlignHorizontal": "LEFT", - "textAlignVertical": "TOP", - "letterSpacing": 0, - "lineHeightPx": 32, - "lineHeightPercent": 102.5641098022461, - "lineHeightPercentFontSize": 133.3333282470703, - "lineHeightUnit": "PIXELS" - }, - "layoutVersion": 3, - "characterStyleOverrides": [], - "styleOverrideTable": {}, - "lineTypes": ["NONE"], - "lineIndentations": [0] - }, - { - "id": "176:5838", - "name": "Line", - "type": "RECTANGLE", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2105, "y": -304, "width": 1552, "height": 1 }, - "absoluteRenderBounds": { "x": -2105, "y": -304, "width": 1552, "height": 1 }, - "constraints": { "vertical": "TOP", "horizontal": "CENTER" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.8784313797950745, "g": 0.8901960849761963, "b": 0.9137254953384399, "a": 1 } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:4" }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5839", - "name": "Scanner", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5840", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5841", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1121, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5842", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1119, "y": -92, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": -1119, "y": -92, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1121, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1121, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5843", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5844", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1081, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5845", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1079, "y": -92, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": -1079, "y": -92, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1081, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1081, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1145, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1145, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5846", - "name": "Printer", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5847", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5848", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -961, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5849", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -959, "y": -93, "width": 20, "height": 18 }, - "absoluteRenderBounds": { "x": -959, "y": -93, "width": 20, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -961, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -961, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5850", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5851", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -921, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5852", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -919, "y": -93, "width": 20, "height": 18 }, - "absoluteRenderBounds": { "x": -919, "y": -93, "width": 20, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -921, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -921, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -985, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -985, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5853", - "name": "Cast", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5854", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5855", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2081, "y": 24, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5856", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2080, "y": 27, "width": 22, "height": 18 }, - "absoluteRenderBounds": { "x": -2080, "y": 27, "width": 22, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -2081, "y": 24, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -2081, "y": 24, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5857", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5858", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2041, "y": 24, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5859", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2040, "y": 27, "width": 22, "height": 18 }, - "absoluteRenderBounds": { "x": -2040, "y": 27, "width": 22, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -2041, "y": 24, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -2041, "y": 24, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -2105, "y": 0, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -2105, "y": 0, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5860", - "name": "Cast Connected", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5861", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5862", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1921, "y": 24, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5863", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1920, "y": 27, "width": 22, "height": 18 }, - "absoluteRenderBounds": { "x": -1920, "y": 27, "width": 22, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1921, "y": 24, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1921, "y": 24, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5864", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5865", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1881, "y": 24, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5866", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1880, "y": 27, "width": 22, "height": 18 }, - "absoluteRenderBounds": { "x": -1880, "y": 27, "width": 22, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1881, "y": 24, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1881, "y": 24, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [ - { - "blendMode": "NORMAL", - "visible": false, - "type": "SOLID", - "color": { "r": 1, "g": 1, "b": 1, "a": 1 } - } - ], - "fills": [ - { - "blendMode": "NORMAL", - "visible": false, - "type": "SOLID", - "color": { "r": 1, "g": 1, "b": 1, "a": 1 } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1945, "y": 0, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1945, "y": 0, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5867", - "name": "Desktop", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5868", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5869", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -638, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5870", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -637, "y": -214, "width": 22, "height": 20 }, - "absoluteRenderBounds": { "x": -637, "y": -214, "width": 22, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -638, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -638, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5871", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5872", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -598, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5873", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -597, "y": -214, "width": 22, "height": 20 }, - "absoluteRenderBounds": { "x": -597, "y": -214, "width": 22, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -598, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -598, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -662, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -662, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5874", - "name": "Devices Ecosystem", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5875", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5876", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2081, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5877", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2080, "y": -92, "width": 22, "height": 16 }, - "absoluteRenderBounds": { "x": -2080, "y": -92, "width": 22, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -2081, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -2081, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5878", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5879", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2041, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5880", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2040, "y": -92, "width": 22, "height": 16 }, - "absoluteRenderBounds": { "x": -2040, "y": -92, "width": 22, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -2041, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -2041, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -2105, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -2105, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5881", - "name": "Device Settings", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5882", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5883", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1921, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5884", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": -1917.81494140625, - "y": -95, - "width": 17.81491470336914, - "height": 22 - }, - "absoluteRenderBounds": { - "x": -1917.81494140625, - "y": -95, - "width": 17.81494140625, - "height": 22 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1921, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1921, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5885", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5886", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1881, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5887", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": -1877.97021484375, - "y": -95, - "width": 17.969999313354492, - "height": 22 - }, - "absoluteRenderBounds": { - "x": -1877.97021484375, - "y": -95, - "width": 17.969970703125, - "height": 22 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1881, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1881, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1945, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1945, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5888", - "name": "Headphones", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5889", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5890", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1761, "y": 24, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5891", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1758, "y": 27, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": -1758, "y": 27, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1761, "y": 24, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1761, "y": 24, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5892", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5893", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1721, "y": 24, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5894", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1718, "y": 27, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": -1718, "y": 27, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1721, "y": 24, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1721, "y": 24, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1785, "y": 0, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1785, "y": 0, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5895", - "name": "Keyboard", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5896", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5897", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1601, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5898", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1599, "y": -91, "width": 20, "height": 14 }, - "absoluteRenderBounds": { "x": -1599, "y": -91, "width": 20, "height": 14 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1601, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1601, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5899", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5900", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1561, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5901", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1559, "y": -91, "width": 20, "height": 14 }, - "absoluteRenderBounds": { "x": -1559, "y": -91, "width": 20, "height": 14 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1561, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1561, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1625, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1625, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5902", - "name": "Laptop", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5903", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5904", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1601, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5905", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1601, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": -1601, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1601, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1601, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5906", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5907", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1561, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5908", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1561, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": -1561, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1561, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1561, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1625, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1625, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5909", - "name": "Memory", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5910", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5911", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1761, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5912", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1758, "y": -93, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": -1758, "y": -93, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1761, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1761, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5913", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5914", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1721, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5915", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1718, "y": -93, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": -1718, "y": -93, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1721, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1721, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1785, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1785, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5916", - "name": "Monitor", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5917", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5918", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -801, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5919", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -799, "y": -213, "width": 19.990081787109375, "height": 18 }, - "absoluteRenderBounds": { "x": -799, "y": -213, "width": 19.9901123046875, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -801, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -801, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5920", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5921", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -761, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5922", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -759, "y": -213, "width": 20, "height": 18 }, - "absoluteRenderBounds": { "x": -759, "y": -213, "width": 20, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -761, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -761, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -825, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -825, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5923", - "name": "Phone Android", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5924", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5925", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2081, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5926", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2076, "y": -215, "width": 14, "height": 22 }, - "absoluteRenderBounds": { "x": -2076, "y": -215, "width": 14, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -2081, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -2081, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5927", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5928", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2041, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5929", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -2036, "y": -215, "width": 14, "height": 22 }, - "absoluteRenderBounds": { "x": -2036, "y": -215, "width": 14, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -2041, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -2041, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -2105, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -2105, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5930", - "name": "Phone iPhone", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5931", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5932", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1921, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5933", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1916, "y": -215, "width": 13, "height": 22 }, - "absoluteRenderBounds": { "x": -1916, "y": -215, "width": 13, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1921, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1921, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5934", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5935", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1881, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5936", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1876, "y": -215, "width": 13, "height": 22 }, - "absoluteRenderBounds": { "x": -1876, "y": -215, "width": 13, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1881, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1881, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1945, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1945, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5937", - "name": "Phonelink", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5938", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5939", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1441, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5940", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1441, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": -1441, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1441, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1441, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5941", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5942", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1401, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5943", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1401, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": -1401, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1401, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1401, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1465, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1465, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5944", - "name": "Security", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5945", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5946", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -641, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5947", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -638, "y": -94.8125, "width": 18, "height": 21.8125 }, - "absoluteRenderBounds": { "x": -638, "y": -94.8125, "width": 18, "height": 21.8125 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -641, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -641, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5948", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5949", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -601, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5950", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -598, "y": -95, "width": 18, "height": 22 }, - "absoluteRenderBounds": { "x": -598, "y": -95, "width": 18, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -601, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -601, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -665, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -665, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5951", - "name": "Video Play", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5952", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5953", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -801, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5954", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -799, "y": -92, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": -799, "y": -92, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -801, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -801, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5955", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5956", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -761, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5957", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -759, "y": -92, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": -759, "y": -92, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -761, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -761, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -825, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -825, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5958", - "name": "Smart Phone", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5959", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5960", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1761, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5961", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1756, "y": -215, "width": 14, "height": 22 }, - "absoluteRenderBounds": { "x": -1756, "y": -215, "width": 14, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1761, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1761, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5962", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5963", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1721, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5964", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1716, "y": -215, "width": 14, "height": 22 }, - "absoluteRenderBounds": { "x": -1716, "y": -215, "width": 14, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1721, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1721, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1785, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1785, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5965", - "name": "Speaker", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5966", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5967", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1281, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5968", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1276, "y": -94, "width": 14, "height": 20 }, - "absoluteRenderBounds": { "x": -1276, "y": -94, "width": 14, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1281, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1281, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5969", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5970", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1241, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5971", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1236, "y": -94, "width": 14, "height": 19.989999771118164 }, - "absoluteRenderBounds": { "x": -1236, "y": -94, "width": 14, "height": 19.98999786376953 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1241, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1241, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1305, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1305, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5972", - "name": "Tablet", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5973", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5974", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1281, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5975", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1280, "y": -212, "width": 22, "height": 16 }, - "absoluteRenderBounds": { "x": -1280, "y": -212, "width": 22, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1281, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1281, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5976", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5977", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1241, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5978", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1240, "y": -212, "width": 22, "height": 16 }, - "absoluteRenderBounds": { "x": -1240, "y": -212, "width": 22, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1241, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1241, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1305, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1305, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5979", - "name": "Tablet Mac", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5980", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5981", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1121, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5982", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1119, "y": -216, "width": 19, "height": 24 }, - "absoluteRenderBounds": { "x": -1119, "y": -216, "width": 19, "height": 24 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1121, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1121, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5983", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5984", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1081, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5985", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1079, "y": -216, "width": 19, "height": 24 }, - "absoluteRenderBounds": { "x": -1079, "y": -216, "width": 19, "height": 24 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1081, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1081, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1145, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1145, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5986", - "name": "TV", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5987", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5988", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -961, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5989", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -960, "y": -213, "width": 22, "height": 18 }, - "absoluteRenderBounds": { "x": -960, "y": -213, "width": 22, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -961, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -961, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5990", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5991", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -921, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5992", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -920, "y": -213, "width": 22, "height": 18 }, - "absoluteRenderBounds": { "x": -920, "y": -213, "width": 22, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -921, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -921, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -985, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -985, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5993", - "name": "Watch", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5994", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5995", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1441, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5996", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1437, "y": -96, "width": 16, "height": 24 }, - "absoluteRenderBounds": { "x": -1437, "y": -96, "width": 16, "height": 24 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1441, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1441, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5997", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5998", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1401, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5999", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -1397, "y": -96, "width": 16, "height": 24 }, - "absoluteRenderBounds": { "x": -1397, "y": -96, "width": 16, "height": 24 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1401, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": -1401, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -1465, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": -1465, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": -2201, "y": -432, "width": 1744, "height": 1280 }, - "absoluteRenderBounds": { "x": -2201, "y": -432, "width": 1744, "height": 1280 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "clipsContent": true, - "background": [{ "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 1, "g": 1, "b": 1, "a": 1 } }], - "fills": [{ "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 1, "g": 1, "b": 1, "a": 1 } }], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 1, "g": 1, "b": 1, "a": 1 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6000", - "name": "File", - "type": "FRAME", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6001", - "name": "File", - "type": "TEXT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1840, "y": -352, "width": 41, "height": 32 }, - "absoluteRenderBounds": { - "x": 1842.06396484375, - "y": -344.8559875488281, - "width": 37.130859375, - "height": 18.14398193359375 - }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.11372549086809158, "g": 0.11764705926179886, "b": 0.13725490868091583, "a": 1 } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "OUTSIDE", - "styles": { "fill": "1:2", "text": "1:3" }, - "exportSettings": [], - "effects": [], - "characters": "File", - "style": { - "fontFamily": "IBM Plex Sans", - "fontPostScriptName": "IBMPlexSans-Medium", - "fontWeight": 500, - "textAutoResize": "WIDTH_AND_HEIGHT", - "fontSize": 24, - "textAlignHorizontal": "LEFT", - "textAlignVertical": "TOP", - "letterSpacing": 0, - "lineHeightPx": 32, - "lineHeightPercent": 102.5641098022461, - "lineHeightPercentFontSize": 133.3333282470703, - "lineHeightUnit": "PIXELS" - }, - "layoutVersion": 3, - "characterStyleOverrides": [], - "styleOverrideTable": {}, - "lineTypes": ["NONE"], - "lineIndentations": [0] - }, - { - "id": "176:6002", - "name": "Line", - "type": "RECTANGLE", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1840, "y": -304, "width": 1552, "height": 1 }, - "absoluteRenderBounds": { "x": 1840, "y": -304, "width": 1552, "height": 1 }, - "constraints": { "vertical": "TOP", "horizontal": "CENTER" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.8784313797950745, "g": 0.8901960849761963, "b": 0.9137254953384399, "a": 1 } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:4" }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6003", - "name": "Finished Download", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6004", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6005", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1859, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6006", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 1864, - "y": -211.43499755859375, - "width": 14, - "height": 15.4350004196167 - }, - "absoluteRenderBounds": { - "x": 1864, - "y": -211.43499755859375, - "width": 14, - "height": 15.43499755859375 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1859, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1859, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6007", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6008", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1899, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6009", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1904, "y": -212, "width": 14, "height": 16 }, - "absoluteRenderBounds": { "x": 1904, "y": -212, "width": 14, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1899, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1899, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1835, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 1835, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6010", - "name": "Downloading", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6011", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6012", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2019, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6013", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 2021, - "y": -213.7744140625, - "width": 19.77721405029297, - "height": 19.558454513549805 - }, - "absoluteRenderBounds": { - "x": 2021, - "y": -213.7744140625, - "width": 19.7772216796875, - "height": 19.558456420898438 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2019, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2019, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6014", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6015", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2059, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6016", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 2061, - "y": -213.9499969482422, - "width": 19.950000762939453, - "height": 19.900001525878906 - }, - "absoluteRenderBounds": { - "x": 2061, - "y": -213.9499969482422, - "width": 19.949951171875, - "height": 19.900009155273438 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2059, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2059, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1995, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 1995, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6017", - "name": "Cloud", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6018", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6019", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2179, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6020", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2179, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": 2179, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2179, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2179, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6021", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6022", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2219, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6023", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2219, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": 2219, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2219, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2219, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2155, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 2155, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6024", - "name": "Cloud Done", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6025", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6026", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2499, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6027", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2499, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": 2499, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2499, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2499, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6028", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6029", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2539, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6030", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2539, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": 2539, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2539, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2539, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2475, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 2475, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6031", - "name": "Cloud Download", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6032", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6033", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2659, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6034", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2659, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": 2659, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2659, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2659, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6035", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6036", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2699, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6037", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2699, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": 2699, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2699, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2699, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2635, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 2635, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6038", - "name": "Cloud Outline", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6039", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6040", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2339, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6041", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2339, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": 2339, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2339, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2339, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6042", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6043", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2379, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6044", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2379, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": 2379, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2379, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2379, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2315, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 2315, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6045", - "name": "Cloud Upload", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6046", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6047", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2819, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6048", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2819, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": 2819, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2819, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2819, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6049", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6050", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2859, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6051", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2859, "y": -212, "width": 24, "height": 16 }, - "absoluteRenderBounds": { "x": 2859, "y": -212, "width": 24, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2859, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2859, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2795, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 2795, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6052", - "name": "Cloud Off", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6053", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6054", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2979, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6055", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 2979.002685546875, - "y": -212, - "width": 23.997297286987305, - "height": 17.582500457763672 - }, - "absoluteRenderBounds": { - "x": 2979.002685546875, - "y": -212, - "width": 23.997314453125, - "height": 17.582504272460938 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2979, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2979, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6056", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6057", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3019, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6058", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 3019, - "y": -212.13999938964844, - "width": 24, - "height": 18.139999389648438 - }, - "absoluteRenderBounds": { - "x": 3019, - "y": -212.13999938964844, - "width": 24, - "height": 18.139999389648438 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3019, "y": -216, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 3019, "y": -216, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2955, "y": -240, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 2955, "y": -240, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6059", - "name": "Folder", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6060", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6061", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1864, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6062", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1866, "y": -92, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": 1866, "y": -92, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1864, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1864, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6063", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6064", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1904, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6065", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1906, "y": -92, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": 1906, "y": -92, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1904, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1904, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1840, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 1840, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6066", - "name": "Create New Folder", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6067", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6068", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2184, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6069", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2186, "y": -92, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": 2186, "y": -92, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2184, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2184, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6070", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6071", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2224, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6072", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2226, "y": -92, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": 2226, "y": -92, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2224, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2224, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2160, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 2160, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6073", - "name": "Folder Outline", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6074", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6075", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2024, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6076", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2026, "y": -92, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": 2026, "y": -92, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2024, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2024, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6077", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6078", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2064, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6079", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2066, "y": -92, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": 2066, "y": -92, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2064, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2064, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2000, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 2000, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6080", - "name": "Shared Folder", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6081", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6082", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2344, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6083", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2346, "y": -92, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": 2346, "y": -92, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2344, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2344, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6084", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6085", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2384, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6086", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2386, "y": -92, "width": 20, "height": 16 }, - "absoluteRenderBounds": { "x": 2386, "y": -92, "width": 20, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2384, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2384, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2320, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 2320, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6087", - "name": "Grid View", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6088", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6089", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2504, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6090", - "name": "Vector", - "type": "BOOLEAN_OPERATION", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "booleanOperation": "UNION", - "children": [ - { - "id": "176:6091", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2507, "y": -93, "width": 8, "height": 8 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 0, "g": 0, "b": 0, "a": 1 } } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6092", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2507, "y": -83, "width": 8, "height": 8 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 0, "g": 0, "b": 0, "a": 1 } } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6093", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2517, "y": -93, "width": 8, "height": 8 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 0, "g": 0, "b": 0, "a": 1 } } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6094", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2517, "y": -83, "width": 8, "height": 8 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 0, "g": 0, "b": 0, "a": 1 } } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2507, "y": -93, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 2507, "y": -93, "width": 18, "height": 18 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2504, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2504, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6095", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6096", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2544, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6097", - "name": "Vector", - "type": "BOOLEAN_OPERATION", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "booleanOperation": "UNION", - "children": [ - { - "id": "176:6098", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2547, "y": -93, "width": 8, "height": 8 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 0, "g": 0, "b": 0, "a": 1 } } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6099", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2547, "y": -83, "width": 8, "height": 8 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 0, "g": 0, "b": 0, "a": 1 } } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6100", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2557, "y": -93, "width": 8, "height": 8 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 0, "g": 0, "b": 0, "a": 1 } } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6101", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2557, "y": -83, "width": 8, "height": 8 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 0, "g": 0, "b": 0, "a": 1 } } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2547, "y": -93, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 2547, "y": -93, "width": 18, "height": 18 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2544, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2544, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2480, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 2480, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6102", - "name": "Upload File", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6103", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6104", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2664, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6105", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2668, "y": -94, "width": 16, "height": 20 }, - "absoluteRenderBounds": { "x": 2668, "y": -94, "width": 16, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2664, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2664, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6106", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6107", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2704, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6108", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2708, "y": -94, "width": 16, "height": 20 }, - "absoluteRenderBounds": { "x": 2708, "y": -94, "width": 16, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2704, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2704, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2640, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 2640, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6109", - "name": "JPG Attach", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6110", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6111", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2824, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6112", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2825, "y": -95, "width": 22, "height": 22 }, - "absoluteRenderBounds": { "x": 2825, "y": -95, "width": 22, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6113", - "name": "JPG", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 2827.5859375, - "y": -84.0999984741211, - "width": 16.662187576293945, - "height": 7.220000267028809 - }, - "absoluteRenderBounds": { - "x": 2827.5859375, - "y": -84.0999984741211, - "width": 16.662109375, - "height": 7.220001220703125 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "OUTSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2824, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2824, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6114", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6115", - "name": "Subtract", - "type": "BOOLEAN_OPERATION", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "booleanOperation": "SUBTRACT", - "children": [ - { - "id": "176:6116", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2865, "y": -95, "width": 22, "height": 22 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 0, "g": 0, "b": 0, "a": 1 } } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6117", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2867, "y": -93, "width": 18, "height": 18 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2865, "y": -95, "width": 22, "height": 22 }, - "absoluteRenderBounds": { "x": 2865, "y": -95, "width": 22, "height": 22 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6118", - "name": "JPG", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 2867.5859375, - "y": -84.0999984741211, - "width": 16.662187576293945, - "height": 7.220000267028809 - }, - "absoluteRenderBounds": { - "x": 2867.5859375, - "y": -84.0999984741211, - "width": 16.662109375, - "height": 7.220001220703125 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "OUTSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2864, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2864, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2800, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 2800, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6119", - "name": "PDF Attach", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6120", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6121", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3144, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6122", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3145, "y": -95, "width": 22, "height": 22 }, - "absoluteRenderBounds": { "x": 3145, "y": -95, "width": 22, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6123", - "name": "PDF", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 3147.9658203125, - "y": -83.9800033569336, - "width": 16.262189865112305, - "height": 6.980000019073486 - }, - "absoluteRenderBounds": { - "x": 3147.9658203125, - "y": -83.9800033569336, - "width": 16.26220703125, - "height": 6.980003356933594 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "OUTSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3144, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 3144, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6124", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6125", - "name": "Subtract", - "type": "BOOLEAN_OPERATION", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "booleanOperation": "SUBTRACT", - "children": [ - { - "id": "176:6126", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3185, "y": -95, "width": 22, "height": 22 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 0, "g": 0, "b": 0, "a": 1 } } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6127", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3187, "y": -93, "width": 18, "height": 18 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3185, "y": -95, "width": 22, "height": 22 }, - "absoluteRenderBounds": { "x": 3185, "y": -95, "width": 22, "height": 22 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6128", - "name": "PDF", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 3187.9658203125, - "y": -83.9800033569336, - "width": 16.262189865112305, - "height": 6.980000019073486 - }, - "absoluteRenderBounds": { - "x": 3187.9658203125, - "y": -83.9800033569336, - "width": 16.26220703125, - "height": 6.980003356933594 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "OUTSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3184, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 3184, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3120, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 3120, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6129", - "name": "PNG Attach", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6130", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6131", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2984, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6132", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2985, "y": -95, "width": 22, "height": 22 }, - "absoluteRenderBounds": { "x": 2985, "y": -95, "width": 22, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6133", - "name": "PNG", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 2987.9658203125, - "y": -84.0999984741211, - "width": 16.282188415527344, - "height": 7.220000267028809 - }, - "absoluteRenderBounds": { - "x": 2987.9658203125, - "y": -84.0999984741211, - "width": 16.2822265625, - "height": 7.220001220703125 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "OUTSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2984, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2984, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6134", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6135", - "name": "Subtract", - "type": "BOOLEAN_OPERATION", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "booleanOperation": "SUBTRACT", - "children": [ - { - "id": "176:6136", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3025, "y": -95, "width": 22, "height": 22 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 0, "g": 0, "b": 0, "a": 1 } } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6137", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3027, "y": -93, "width": 18, "height": 18 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3025, "y": -95, "width": 22, "height": 22 }, - "absoluteRenderBounds": { "x": 3025, "y": -95, "width": 22, "height": 22 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6138", - "name": "PNG", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 3027.9658203125, - "y": -84.0999984741211, - "width": 16.282188415527344, - "height": 7.220000267028809 - }, - "absoluteRenderBounds": { - "x": 3027.9658203125, - "y": -84.0999984741211, - "width": 16.2822265625, - "height": 7.220001220703125 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "OUTSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3024, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 3024, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2960, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 2960, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6139", - "name": "DOC Attach", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6140", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6141", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3304, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6142", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3305, "y": -95, "width": 22, "height": 22 }, - "absoluteRenderBounds": { "x": 3305, "y": -95, "width": 22, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6143", - "name": "DOC", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 3307.845947265625, - "y": -84.0999984741211, - "width": 16.58218765258789, - "height": 7.220000267028809 - }, - "absoluteRenderBounds": { - "x": 3307.845947265625, - "y": -84.0999984741211, - "width": 16.582275390625, - "height": 7.220001220703125 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "OUTSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3304, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 3304, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6144", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6145", - "name": "Subtract", - "type": "BOOLEAN_OPERATION", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "booleanOperation": "SUBTRACT", - "children": [ - { - "id": "176:6146", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3345, "y": -95, "width": 22, "height": 22 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 0, "g": 0, "b": 0, "a": 1 } } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6147", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3347, "y": -93, "width": 18, "height": 18 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3345, "y": -95, "width": 22, "height": 22 }, - "absoluteRenderBounds": { "x": 3345, "y": -95, "width": 22, "height": 22 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6148", - "name": "DOC", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 3347.845947265625, - "y": -84.0999984741211, - "width": 16.58218765258789, - "height": 7.220000267028809 - }, - "absoluteRenderBounds": { - "x": 3347.845947265625, - "y": -84.0999984741211, - "width": 16.582275390625, - "height": 7.220001220703125 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "OUTSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3344, "y": -96, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 3344, "y": -96, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3280, "y": -120, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 3280, "y": -120, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6149", - "name": "PPT Attach", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6150", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6151", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3304, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6152", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3305, "y": -214, "width": 22, "height": 22 }, - "absoluteRenderBounds": { "x": 3305, "y": -214, "width": 22, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6153", - "name": "PPT", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 3307.9658203125, - "y": -202.97999572753906, - "width": 16.59218978881836, - "height": 6.980000019073486 - }, - "absoluteRenderBounds": { - "x": 3307.9658203125, - "y": -202.97999572753906, - "width": 16.59228515625, - "height": 6.9799957275390625 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "OUTSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3304, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 3304, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6154", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6155", - "name": "Subtract", - "type": "BOOLEAN_OPERATION", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "booleanOperation": "SUBTRACT", - "children": [ - { - "id": "176:6156", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3345, "y": -214, "width": 22, "height": 22 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 0, "g": 0, "b": 0, "a": 1 } } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6157", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3347, "y": -212, "width": 18, "height": 18 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3345, "y": -214, "width": 22, "height": 22 }, - "absoluteRenderBounds": { "x": 3345, "y": -214, "width": 22, "height": 22 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6158", - "name": "PPT", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 3347.9658203125, - "y": -202.97999572753906, - "width": 16.59218978881836, - "height": 6.980000019073486 - }, - "absoluteRenderBounds": { - "x": 3347.9658203125, - "y": -202.97999572753906, - "width": 16.59228515625, - "height": 6.9799957275390625 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "OUTSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3344, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 3344, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3280, "y": -239, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 3280, "y": -239, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:6159", - "name": "Open New Off", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6160", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6161", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 1861.389892578125, - "y": 142.81005859375, - "width": 19.790000915527344, - "height": 19.80000114440918 - }, - "absoluteRenderBounds": { - "x": 1861.8028564453125, - "y": 143.00006103515625, - "width": 19.197021484375, - "height": 19.192001342773438 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null, "2": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 1860, "y": 140, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1860, "y": 140, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6162", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6163", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 1905.389892578125, - "y": 142.81005859375, - "width": 19.790000915527344, - "height": 19.80000114440918 - }, - "absoluteRenderBounds": { - "x": 1905.8028564453125, - "y": 143.00006103515625, - "width": 19.197021484375, - "height": 19.192001342773438 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null, "2": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 1904, "y": 140, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1904, "y": 140, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1840, "y": 120, "width": 108, "height": 64 }, - "absoluteRenderBounds": { "x": 1840, "y": 120, "width": 108, "height": 64 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.5921568870544434, "g": 0.27843138575553894, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 20, - "counterAxisAlignItems": "CENTER", - "primaryAxisAlignItems": "CENTER", - "paddingLeft": 20, - "paddingRight": 20, - "paddingTop": 20, - "paddingBottom": 20, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6164", - "name": "Page Height", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6165", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6166", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2024, "y": 144, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 2024, "y": 144, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "2": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2021, "y": 141, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2021, "y": 141, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6167", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6168", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2068, "y": 144, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 2068, "y": 144, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "2": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2065, "y": 141, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2065, "y": 141, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2001, "y": 121, "width": 108, "height": 64 }, - "absoluteRenderBounds": { "x": 2001, "y": 121, "width": 108, "height": 64 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.5921568870544434, "g": 0.27843138575553894, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 20, - "counterAxisAlignItems": "CENTER", - "primaryAxisAlignItems": "CENTER", - "paddingLeft": 20, - "paddingRight": 20, - "paddingTop": 20, - "paddingBottom": 20, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6169", - "name": "Page Width", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6170", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6171", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2185, "y": 144, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 2185, "y": 144, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "2": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2182, "y": 141, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2182, "y": 141, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6172", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6173", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2229, "y": 144, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 2229, "y": 144, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "2": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2226, "y": 141, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2226, "y": 141, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2162, "y": 121, "width": 108, "height": 64 }, - "absoluteRenderBounds": { "x": 2162, "y": 121, "width": 108, "height": 64 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.5921568870544434, "g": 0.27843138575553894, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 20, - "counterAxisAlignItems": "CENTER", - "primaryAxisAlignItems": "CENTER", - "paddingLeft": 20, - "paddingRight": 20, - "paddingTop": 20, - "paddingBottom": 20, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6174", - "name": "Page Rotate", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6175", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6176", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2344, "y": 141, "width": 21, "height": 21 }, - "absoluteRenderBounds": { - "x": 2344.414306640625, - "y": 141.3221893310547, - "width": 20.585693359375, - "height": 20.677810668945312 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null, "2": null, "3": null }, - "strokes": [], - "strokeWeight": 0.02500000037252903, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 2343, "y": 140, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2343, "y": 140, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6177", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6178", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2388, "y": 141, "width": 21, "height": 21 }, - "absoluteRenderBounds": { - "x": 2388.414306640625, - "y": 141.3221893310547, - "width": 20.585693359375, - "height": 20.677810668945312 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null, "2": null, "3": null }, - "strokes": [], - "strokeWeight": 0.02500000037252903, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 2387, "y": 140, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2387, "y": 140, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2323, "y": 120, "width": 108, "height": 64 }, - "absoluteRenderBounds": { "x": 2323, "y": 120, "width": 108, "height": 64 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.5921568870544434, "g": 0.27843138575553894, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 20, - "counterAxisAlignItems": "CENTER", - "primaryAxisAlignItems": "CENTER", - "paddingLeft": 20, - "paddingRight": 20, - "paddingTop": 20, - "paddingBottom": 20, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6179", - "name": "Save", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6180", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6181", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2507, "y": 143, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 2507, "y": 143, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2504, "y": 140, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2504, "y": 140, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6182", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6183", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2551, "y": 143, "width": 18, "height": 18 }, - "absoluteRenderBounds": { "x": 2551, "y": 143, "width": 18, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2548, "y": 140, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2548, "y": 140, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2484, "y": 120, "width": 108, "height": 64 }, - "absoluteRenderBounds": { "x": 2484, "y": 120, "width": 108, "height": 64 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.5921568870544434, "g": 0.27843138575553894, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 20, - "counterAxisAlignItems": "CENTER", - "primaryAxisAlignItems": "CENTER", - "paddingLeft": 20, - "paddingRight": 20, - "paddingTop": 20, - "paddingBottom": 20, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6184", - "name": "Publish", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6185", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6186", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2670, "y": 147, "width": 14, "height": 16 }, - "absoluteRenderBounds": { "x": 2670, "y": 147, "width": 14, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null, "2": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 2665, "y": 143, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2665, "y": 143, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6187", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6188", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2714, "y": 147, "width": 14, "height": 16 }, - "absoluteRenderBounds": { "x": 2714, "y": 147, "width": 14, "height": 16 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null, "2": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 2709, "y": 143, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2709, "y": 143, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2645, "y": 123, "width": 108, "height": 64 }, - "absoluteRenderBounds": { "x": 2645, "y": 123, "width": 108, "height": 64 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.5921568870544434, "g": 0.27843138575553894, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 20, - "counterAxisAlignItems": "CENTER", - "primaryAxisAlignItems": "CENTER", - "paddingLeft": 20, - "paddingRight": 20, - "paddingTop": 20, - "paddingBottom": 20, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6189", - "name": "File", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6190", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6191", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2830, "y": 143, "width": 16, "height": 20 }, - "absoluteRenderBounds": { "x": 2830, "y": 143, "width": 16, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 2826, "y": 141, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2826, "y": 141, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6192", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6193", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2874, "y": 143, "width": 16, "height": 20 }, - "absoluteRenderBounds": { "x": 2874, "y": 143, "width": 16, "height": 20 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 2870, "y": 141, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2870, "y": 141, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2806, "y": 121, "width": 108, "height": 64 }, - "absoluteRenderBounds": { "x": 2806, "y": 121, "width": 108, "height": 64 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.5921568870544434, "g": 0.27843138575553894, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 20, - "counterAxisAlignItems": "CENTER", - "primaryAxisAlignItems": "CENTER", - "paddingLeft": 20, - "paddingRight": 20, - "paddingTop": 20, - "paddingBottom": 20, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6194", - "name": "Folder", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6195", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6196", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 2989, "y": 147, "width": 20, "height": 15.294116973876953 }, - "absoluteRenderBounds": { "x": 2989, "y": 147, "width": 20, "height": 15.294113159179688 }, - "preserveRatio": true, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2987, "y": 143, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 2987, "y": 143, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6197", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6198", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 3033, "y": 147, "width": 20, "height": 15.294116973876953 }, - "absoluteRenderBounds": { "x": 3033, "y": 147, "width": 20, "height": 15.294113159179688 }, - "preserveRatio": true, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3031, "y": 143, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 3031, "y": 143, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 2967, "y": 123, "width": 108, "height": 64 }, - "absoluteRenderBounds": { "x": 2967, "y": 123, "width": 108, "height": 64 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.5921568870544434, "g": 0.27843138575553894, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 20, - "counterAxisAlignItems": "CENTER", - "primaryAxisAlignItems": "CENTER", - "paddingLeft": 20, - "paddingRight": 20, - "paddingTop": 20, - "paddingBottom": 20, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6199", - "name": "Maintenance", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6200", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6201", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 3150, - "y": 146, - "width": 19.800125122070312, - "height": 18.555572509765625 - }, - "absoluteRenderBounds": { - "x": 3150.103515625, - "y": 146, - "width": 19.0751953125, - "height": 17.93426513671875 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null, "2": null, "3": null, "4": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 3148, "y": 143, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 3148, "y": 143, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:6202", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:6203", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { - "x": 3194, - "y": 146, - "width": 19.800125122070312, - "height": 18.555572509765625 - }, - "absoluteRenderBounds": { - "x": 3194.103515625, - "y": 146, - "width": 19.0751953125, - "height": 17.93426513671875 - }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { - "r": 0.11372549086809158, - "g": 0.11764705926179886, - "b": 0.13725490868091583, - "a": 1 - }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null, "2": null, "3": null, "4": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 3192, "y": 143, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 3192, "y": 143, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": false, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 3128, "y": 123, "width": 108, "height": 64 }, - "absoluteRenderBounds": { "x": 3128, "y": 123, "width": 108, "height": 64 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.5921568870544434, "g": 0.27843138575553894, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 20, - "counterAxisAlignItems": "CENTER", - "primaryAxisAlignItems": "CENTER", - "paddingLeft": 20, - "paddingRight": 20, - "paddingTop": 20, - "paddingBottom": 20, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1744, "y": -432, "width": 1744, "height": 1280 }, - "absoluteRenderBounds": { "x": 1744, "y": -432, "width": 1744, "height": 1280 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "clipsContent": true, - "background": [{ "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 1, "g": 1, "b": 1, "a": 1 } }], - "fills": [{ "blendMode": "NORMAL", "type": "SOLID", "color": { "r": 1, "g": 1, "b": 1, "a": 1 } }], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 1, "g": 1, "b": 1, "a": 1 }, - "exportSettings": [], - "effects": [] - } - ] -} +{"id":"156:1674","name":"Icons","type":"CANVAS","scrollBehavior":"SCROLLS","children":[{"id":"176:5659","name":"Content","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5660","name":"Content","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-161,"y":-352,"width":88,"height":32},"absoluteRenderBounds":{"x":-159.67999267578125,"y":-344.0400085449219,"width":85.08937072753906,"height":17.3280029296875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"exportSettings":[],"effects":[],"characters":"Content","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"176:5661","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-161,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":-161,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"exportSettings":[],"effects":[]},{"id":"176:5662","name":"Add","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5663","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5664","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5665","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-132,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-132,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5666","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5667","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5668","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-92,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-92,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-161,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5669","name":"Sort","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5670","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5671","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5672","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1144.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1144.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5673","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5674","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5675","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1184.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1184.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1119,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5676","name":"Content","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5677","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","rotation":-1.224648970167536e-16,"blendMode":"PASS_THROUGH","children":[{"id":"176:5678","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5679","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":1.224648970167536e-16,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":665,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":665,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5680","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5681","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5682","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":705,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":705,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5683","name":"Copy File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5684","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5685","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5686","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":345,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":345,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5687","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5688","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5689","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":385,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":385,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5690","name":"Remove Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5691","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5692","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5693","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":345,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":345,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5694","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5695","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5696","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":385,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":385,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5697","name":"Add Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5698","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5699","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5700","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5701","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5702","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5703","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5704","name":"Remove Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5705","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5706","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5707","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":665,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":665,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5708","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5709","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5710","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":705,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":705,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5711","name":"Block","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5712","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5713","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5714","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5715","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5716","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5717","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5718","name":"Add Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5719","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5720","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5721","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":505,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":505,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5722","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5723","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5724","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":545,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":545,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5725","name":"Remove","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5726","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5727","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5728","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":28,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":28,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5729","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5730","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5731","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":68,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":68,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5732","name":"Android","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5733","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5734","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5735","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":506,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":506,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5736","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5737","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5738","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":546,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":546,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5739","name":"Add Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5740","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5741","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5742","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5743","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5744","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5745","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":866,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5746","name":"Remove Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5747","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5748","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5749","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":986,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":986,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5750","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5751","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5752","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1026,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":1026,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":959,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5753","name":"Push Pin","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5754","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5755","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5756","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":28,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":28,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5757","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5758","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5759","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":68,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":68,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5760","name":"Send","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5761","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5762","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5763","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":-91.48487854003906,"width":19.457500457763672,"height":16.96976089477539},"absoluteRenderBounds":{"x":185,"y":-91.48487854003906,"width":19.457504272460938,"height":16.969757080078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5764","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5765","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5766","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":-92,"width":21,"height":18},"absoluteRenderBounds":{"x":225,"y":-92,"width":21,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5767","name":"Backspace","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5768","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5769","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5770","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343.2049865722656,"y":-92,"width":23.795000076293945,"height":18},"absoluteRenderBounds":{"x":343.2049865722656,"y":-92,"width":23.795013427734375,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5771","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5772","name":"Backspace","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5773","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-92,"width":24,"height":18},"absoluteRenderBounds":{"x":383,"y":-92,"width":24,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5774","name":"Flag","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5775","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5776","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5777","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":508,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":508,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5778","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5779","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5780","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":548,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":548,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5781","name":"Save","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5782","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5783","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5784","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":666,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":666,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5785","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5786","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5787","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":706,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":706,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5788","name":"Reply","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5789","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5790","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5791","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592500686645508,"height":13.594012260437012},"absoluteRenderBounds":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592529296875,"height":13.594009399414062},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5792","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5793","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5794","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1026,"y":-90,"width":18,"height":15},"absoluteRenderBounds":{"x":1026,"y":-90,"width":18,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":959,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5795","name":"Redo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5796","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5797","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5798","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1144.9423828125,"y":-87,"width":20.05765724182129,"height":8},"absoluteRenderBounds":{"x":1144.9423828125,"y":-87,"width":20.0576171875,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5799","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5800","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5801","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1184.5400390625,"y":-88,"width":20.459999084472656,"height":9},"absoluteRenderBounds":{"x":1184.5400390625,"y":-88,"width":20.4599609375,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1119,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5802","name":"Save Alt","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5803","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5804","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5805","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5806","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5807","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5808","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":866,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5809","name":"Undo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5810","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5811","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5812","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1305,"y":-87,"width":20.067657470703125,"height":8},"absoluteRenderBounds":{"x":1305,"y":-87,"width":20.067626953125,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1303,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5813","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5814","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5815","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1345,"y":-88,"width":20.469999313354492,"height":9},"absoluteRenderBounds":{"x":1345,"y":-88,"width":20.469970703125,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1279,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1279,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5816","name":"Chart Pie","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5817","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5818","name":"Rectangle 1756","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5819","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":862,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":862,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":860,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5820","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5821","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":826,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":824,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":824,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:5822","name":"Email","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5823","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5824","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5825","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-135,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-135,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5826","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5827","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5828","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-95,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-95,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-161,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:5829","name":"Email Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5830","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5831","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5832","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":25,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":25,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5833","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5834","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5835","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":65,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":65,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-257,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-257,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"exportSettings":[],"effects":[]},{"id":"176:5836","name":"Hard ware","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5837","name":"Hardware","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2105,"y":-352,"width":109,"height":32},"absoluteRenderBounds":{"x":-2102.93603515625,"y":-344.760009765625,"width":104.982421875,"height":18.048004150390625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"exportSettings":[],"effects":[],"characters":"Hardware","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"176:5838","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2105,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":-2105,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"exportSettings":[],"effects":[]},{"id":"176:5839","name":"Scanner","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5840","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5841","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5842","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-1119,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5843","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5844","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5845","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-1079,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5846","name":"Printer","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5847","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5848","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5849","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":-93,"width":20,"height":18},"absoluteRenderBounds":{"x":-959,"y":-93,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5850","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5851","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5852","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":-93,"width":20,"height":18},"absoluteRenderBounds":{"x":-919,"y":-93,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5853","name":"Cast","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5854","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5855","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5856","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2080,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-2080,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5857","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5858","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5859","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2040,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-2040,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5860","name":"Cast Connected","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5861","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5862","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5863","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1920,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-1920,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5864","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5865","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5866","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1880,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-1880,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5867","name":"Desktop","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5868","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5869","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-638,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5870","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-637,"y":-214,"width":22,"height":20},"absoluteRenderBounds":{"x":-637,"y":-214,"width":22,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-638,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-638,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5871","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5872","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-598,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5873","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-597,"y":-214,"width":22,"height":20},"absoluteRenderBounds":{"x":-597,"y":-214,"width":22,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-598,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-598,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-662,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-662,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5874","name":"Devices Ecosystem","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5875","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5876","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5877","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2080,"y":-92,"width":22,"height":16},"absoluteRenderBounds":{"x":-2080,"y":-92,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5878","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5879","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5880","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2040,"y":-92,"width":22,"height":16},"absoluteRenderBounds":{"x":-2040,"y":-92,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5881","name":"Device Settings","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5882","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5883","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5884","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1917.81494140625,"y":-95,"width":17.81491470336914,"height":22},"absoluteRenderBounds":{"x":-1917.81494140625,"y":-95,"width":17.81494140625,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5885","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5886","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5887","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1877.97021484375,"y":-95,"width":17.969999313354492,"height":22},"absoluteRenderBounds":{"x":-1877.97021484375,"y":-95,"width":17.969970703125,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5888","name":"Headphones","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5889","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5890","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5891","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1758,"y":27,"width":18,"height":18},"absoluteRenderBounds":{"x":-1758,"y":27,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5892","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5893","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5894","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1718,"y":27,"width":18,"height":18},"absoluteRenderBounds":{"x":-1718,"y":27,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5895","name":"Keyboard","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5896","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5897","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5898","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":-91,"width":20,"height":14},"absoluteRenderBounds":{"x":-1599,"y":-91,"width":20,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5899","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5900","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5901","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":-91,"width":20,"height":14},"absoluteRenderBounds":{"x":-1559,"y":-91,"width":20,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5902","name":"Laptop","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5903","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5904","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5905","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1601,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5906","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5907","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5908","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1561,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5909","name":"Memory","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5910","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5911","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5912","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1758,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":-1758,"y":-93,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5913","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5914","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5915","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1718,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":-1718,"y":-93,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5916","name":"Monitor","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5917","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5918","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5919","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":-213,"width":19.990081787109375,"height":18},"absoluteRenderBounds":{"x":-799,"y":-213,"width":19.9901123046875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5920","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5921","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5922","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":-213,"width":20,"height":18},"absoluteRenderBounds":{"x":-759,"y":-213,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5923","name":"Phone Android","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5924","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5925","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5926","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2076,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-2076,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5927","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5928","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5929","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2036,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-2036,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5930","name":"Phone iPhone","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5931","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5932","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5933","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1916,"y":-215,"width":13,"height":22},"absoluteRenderBounds":{"x":-1916,"y":-215,"width":13,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5934","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5935","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5936","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1876,"y":-215,"width":13,"height":22},"absoluteRenderBounds":{"x":-1876,"y":-215,"width":13,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5937","name":"Phonelink","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5938","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5939","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5940","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1441,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5941","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5942","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5943","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1401,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5944","name":"Security","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5945","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5946","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5947","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-638,"y":-94.8125,"width":18,"height":21.8125},"absoluteRenderBounds":{"x":-638,"y":-94.8125,"width":18,"height":21.8125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5948","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5949","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5950","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-598,"y":-95,"width":18,"height":22},"absoluteRenderBounds":{"x":-598,"y":-95,"width":18,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5951","name":"Video Play","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5952","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5953","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5954","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-799,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5955","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5956","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5957","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-759,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5958","name":"Smart Phone","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5959","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5960","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5961","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1756,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-1756,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5962","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5963","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5964","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1716,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-1716,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5965","name":"Speaker","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5966","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5967","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5968","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1276,"y":-94,"width":14,"height":20},"absoluteRenderBounds":{"x":-1276,"y":-94,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5969","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5970","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5971","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1236,"y":-94,"width":14,"height":19.989999771118164},"absoluteRenderBounds":{"x":-1236,"y":-94,"width":14,"height":19.98999786376953},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5972","name":"Tablet","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5973","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5974","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5975","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1280,"y":-212,"width":22,"height":16},"absoluteRenderBounds":{"x":-1280,"y":-212,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5976","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5977","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5978","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1240,"y":-212,"width":22,"height":16},"absoluteRenderBounds":{"x":-1240,"y":-212,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5979","name":"Tablet Mac","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5980","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5981","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5982","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":-216,"width":19,"height":24},"absoluteRenderBounds":{"x":-1119,"y":-216,"width":19,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5983","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5984","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5985","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":-216,"width":19,"height":24},"absoluteRenderBounds":{"x":-1079,"y":-216,"width":19,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5986","name":"TV","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5987","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5988","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5989","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-960,"y":-213,"width":22,"height":18},"absoluteRenderBounds":{"x":-960,"y":-213,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5990","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5991","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5992","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-920,"y":-213,"width":22,"height":18},"absoluteRenderBounds":{"x":-920,"y":-213,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5993","name":"Watch","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5994","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5995","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5996","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1437,"y":-96,"width":16,"height":24},"absoluteRenderBounds":{"x":-1437,"y":-96,"width":16,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5997","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5998","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5999","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1397,"y":-96,"width":16,"height":24},"absoluteRenderBounds":{"x":-1397,"y":-96,"width":16,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]}],"absoluteBoundingBox":{"x":-2201,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-2201,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"exportSettings":[],"effects":[]},{"id":"176:6000","name":"File","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6001","name":"File","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1840,"y":-352,"width":41,"height":32},"absoluteRenderBounds":{"x":1842.06396484375,"y":-344.8559875488281,"width":37.130859375,"height":18.14398193359375},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"exportSettings":[],"effects":[],"characters":"File","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"176:6002","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1840,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":1840,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"exportSettings":[],"effects":[]},{"id":"176:6003","name":"Finished Download","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6004","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6005","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6006","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1864,"y":-211.43499755859375,"width":14,"height":15.4350004196167},"absoluteRenderBounds":{"x":1864,"y":-211.43499755859375,"width":14,"height":15.43499755859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":1859,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6007","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6008","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1899,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6009","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1904,"y":-212,"width":14,"height":16},"absoluteRenderBounds":{"x":1904,"y":-212,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1899,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":1899,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1835,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":1835,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6010","name":"Downloading","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6011","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6012","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6013","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2021,"y":-213.7744140625,"width":19.77721405029297,"height":19.558454513549805},"absoluteRenderBounds":{"x":2021,"y":-213.7744140625,"width":19.7772216796875,"height":19.558456420898438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2019,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6014","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6015","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2059,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6016","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2061,"y":-213.9499969482422,"width":19.950000762939453,"height":19.900001525878906},"absoluteRenderBounds":{"x":2061,"y":-213.9499969482422,"width":19.949951171875,"height":19.900009155273438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2059,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2059,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1995,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":1995,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6017","name":"Cloud","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6018","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6019","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2179,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6020","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2179,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2179,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2179,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2179,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6021","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6022","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2219,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6023","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2219,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2219,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2219,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2219,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2155,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2155,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6024","name":"Cloud Done","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6025","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6026","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2499,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6027","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2499,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2499,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2499,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2499,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6028","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6029","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2539,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6030","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2539,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2539,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2539,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2539,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2475,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2475,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6031","name":"Cloud Download","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6032","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6033","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2659,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6034","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2659,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2659,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2659,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2659,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6035","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6036","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2699,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6037","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2699,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2699,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2699,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2699,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2635,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2635,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6038","name":"Cloud Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6039","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6040","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2339,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6041","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2339,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2339,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2339,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2339,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6042","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6043","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2379,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6044","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2379,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2379,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2379,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2379,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2315,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2315,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6045","name":"Cloud Upload","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6046","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6047","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2819,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6048","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2819,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2819,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2819,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2819,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6049","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6050","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6051","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2859,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2859,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2859,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2795,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2795,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6052","name":"Cloud Off","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6053","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6054","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2979,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6055","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2979.002685546875,"y":-212,"width":23.997297286987305,"height":17.582500457763672},"absoluteRenderBounds":{"x":2979.002685546875,"y":-212,"width":23.997314453125,"height":17.582504272460938},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2979,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2979,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6056","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6057","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6058","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3019,"y":-212.13999938964844,"width":24,"height":18.139999389648438},"absoluteRenderBounds":{"x":3019,"y":-212.13999938964844,"width":24,"height":18.139999389648438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":3019,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2955,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2955,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6059","name":"Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6060","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6061","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6062","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1866,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":1866,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":1864,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6063","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6064","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1904,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6065","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1906,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":1906,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1904,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":1904,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1840,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":1840,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6066","name":"Create New Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6067","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6068","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6069","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2186,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2186,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2184,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6070","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6071","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2224,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6072","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2226,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2226,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2224,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2224,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2160,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2160,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6073","name":"Folder Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6074","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6075","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6076","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2026,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2026,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2024,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6077","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6078","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2064,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6079","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2066,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2066,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2064,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2064,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2000,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2000,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6080","name":"Shared Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6081","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6082","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6083","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2346,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2346,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2344,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6084","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6085","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2384,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6086","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2386,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2386,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2384,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2384,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2320,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2320,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6087","name":"Grid View","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6088","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6089","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2504,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6090","name":"Vector","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"176:6091","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2507,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6092","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2507,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6093","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2517,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6094","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2517,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2507,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":2507,"y":-93,"width":18,"height":18},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2504,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2504,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6095","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6096","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2544,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6097","name":"Vector","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"176:6098","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2547,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6099","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2547,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6100","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2557,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6101","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2557,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2547,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":2547,"y":-93,"width":18,"height":18},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2544,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2544,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2480,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2480,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6102","name":"Upload File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6103","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6104","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2664,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6105","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2668,"y":-94,"width":16,"height":20},"absoluteRenderBounds":{"x":2668,"y":-94,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2664,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2664,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6106","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6107","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2704,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6108","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2708,"y":-94,"width":16,"height":20},"absoluteRenderBounds":{"x":2708,"y":-94,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2704,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2704,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2640,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2640,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6109","name":"JPG Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6110","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6111","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2824,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6112","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2825,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2825,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6113","name":"JPG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2827.5859375,"y":-84.0999984741211,"width":16.662187576293945,"height":7.220000267028809},"absoluteRenderBounds":{"x":2827.5859375,"y":-84.0999984741211,"width":16.662109375,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2824,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2824,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6114","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6115","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6116","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2865,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6117","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2867,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2865,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2865,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6118","name":"JPG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2867.5859375,"y":-84.0999984741211,"width":16.662187576293945,"height":7.220000267028809},"absoluteRenderBounds":{"x":2867.5859375,"y":-84.0999984741211,"width":16.662109375,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2864,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2800,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2800,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6119","name":"PDF Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6120","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6121","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3144,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6122","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3145,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3145,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6123","name":"PDF","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3147.9658203125,"y":-83.9800033569336,"width":16.262189865112305,"height":6.980000019073486},"absoluteRenderBounds":{"x":3147.9658203125,"y":-83.9800033569336,"width":16.26220703125,"height":6.980003356933594},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3144,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3144,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6124","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6125","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6126","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3185,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6127","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3187,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3185,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3185,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6128","name":"PDF","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3187.9658203125,"y":-83.9800033569336,"width":16.262189865112305,"height":6.980000019073486},"absoluteRenderBounds":{"x":3187.9658203125,"y":-83.9800033569336,"width":16.26220703125,"height":6.980003356933594},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3184,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3120,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":3120,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6129","name":"PNG Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6130","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6131","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2984,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6132","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2985,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2985,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6133","name":"PNG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2987.9658203125,"y":-84.0999984741211,"width":16.282188415527344,"height":7.220000267028809},"absoluteRenderBounds":{"x":2987.9658203125,"y":-84.0999984741211,"width":16.2822265625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2984,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2984,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6134","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6135","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6136","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3025,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6137","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3027,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3025,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3025,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6138","name":"PNG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3027.9658203125,"y":-84.0999984741211,"width":16.282188415527344,"height":7.220000267028809},"absoluteRenderBounds":{"x":3027.9658203125,"y":-84.0999984741211,"width":16.2822265625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3024,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2960,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2960,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6139","name":"DOC Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6140","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6141","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3304,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6142","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3305,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3305,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6143","name":"DOC","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3307.845947265625,"y":-84.0999984741211,"width":16.58218765258789,"height":7.220000267028809},"absoluteRenderBounds":{"x":3307.845947265625,"y":-84.0999984741211,"width":16.582275390625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3304,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3304,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6144","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6145","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6146","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3345,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6147","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3347,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3345,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3345,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6148","name":"DOC","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3347.845947265625,"y":-84.0999984741211,"width":16.58218765258789,"height":7.220000267028809},"absoluteRenderBounds":{"x":3347.845947265625,"y":-84.0999984741211,"width":16.582275390625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3344,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3280,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":3280,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6149","name":"PPT Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6150","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6151","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3304,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6152","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3305,"y":-214,"width":22,"height":22},"absoluteRenderBounds":{"x":3305,"y":-214,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6153","name":"PPT","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3307.9658203125,"y":-202.97999572753906,"width":16.59218978881836,"height":6.980000019073486},"absoluteRenderBounds":{"x":3307.9658203125,"y":-202.97999572753906,"width":16.59228515625,"height":6.9799957275390625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3304,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":3304,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6154","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6155","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6156","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3345,"y":-214,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6157","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3347,"y":-212,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3345,"y":-214,"width":22,"height":22},"absoluteRenderBounds":{"x":3345,"y":-214,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6158","name":"PPT","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3347.9658203125,"y":-202.97999572753906,"width":16.59218978881836,"height":6.980000019073486},"absoluteRenderBounds":{"x":3347.9658203125,"y":-202.97999572753906,"width":16.59228515625,"height":6.9799957275390625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3344,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":3344,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3280,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":3280,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6159","name":"Open New Off","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6160","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6161","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1861.389892578125,"y":142.81005859375,"width":19.790000915527344,"height":19.80000114440918},"absoluteRenderBounds":{"x":1861.8028564453125,"y":143.00006103515625,"width":19.197021484375,"height":19.192001342773438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1860,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":1860,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6162","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6163","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1905.389892578125,"y":142.81005859375,"width":19.790000915527344,"height":19.80000114440918},"absoluteRenderBounds":{"x":1905.8028564453125,"y":143.00006103515625,"width":19.197021484375,"height":19.192001342773438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1904,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":1904,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1840,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":1840,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6164","name":"Page Height","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6165","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6166","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2024,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2024,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2021,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2021,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6167","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6168","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2068,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2068,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2065,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2065,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2001,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2001,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6169","name":"Page Width","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6170","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6171","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2185,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2185,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2182,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2182,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6172","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6173","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2229,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2229,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2226,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2226,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2162,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2162,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6174","name":"Page Rotate","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6175","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6176","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2344,"y":141,"width":21,"height":21},"absoluteRenderBounds":{"x":2344.414306640625,"y":141.3221893310547,"width":20.585693359375,"height":20.677810668945312},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":0.02500000037252903,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2343,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2343,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6177","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6178","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2388,"y":141,"width":21,"height":21},"absoluteRenderBounds":{"x":2388.414306640625,"y":141.3221893310547,"width":20.585693359375,"height":20.677810668945312},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":0.02500000037252903,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2387,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2387,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2323,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":2323,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6179","name":"Save","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6180","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6181","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2507,"y":143,"width":18,"height":18},"absoluteRenderBounds":{"x":2507,"y":143,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2504,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2504,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6182","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6183","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2551,"y":143,"width":18,"height":18},"absoluteRenderBounds":{"x":2551,"y":143,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2548,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2548,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2484,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":2484,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6184","name":"Publish","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6185","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6186","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2670,"y":147,"width":14,"height":16},"absoluteRenderBounds":{"x":2670,"y":147,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2665,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2665,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6187","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6188","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2714,"y":147,"width":14,"height":16},"absoluteRenderBounds":{"x":2714,"y":147,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2709,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2709,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2645,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":2645,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6189","name":"File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6190","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6191","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2830,"y":143,"width":16,"height":20},"absoluteRenderBounds":{"x":2830,"y":143,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2826,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2826,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6192","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6193","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2874,"y":143,"width":16,"height":20},"absoluteRenderBounds":{"x":2874,"y":143,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2870,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2870,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2806,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2806,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6194","name":"Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6195","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6196","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2989,"y":147,"width":20,"height":15.294116973876953},"absoluteRenderBounds":{"x":2989,"y":147,"width":20,"height":15.294113159179688},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2987,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2987,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6197","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6198","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3033,"y":147,"width":20,"height":15.294116973876953},"absoluteRenderBounds":{"x":3033,"y":147,"width":20,"height":15.294113159179688},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3031,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3031,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2967,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":2967,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6199","name":"Maintenance","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6200","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6201","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3150,"y":146,"width":19.800125122070312,"height":18.555572509765625},"absoluteRenderBounds":{"x":3150.103515625,"y":146,"width":19.0751953125,"height":17.93426513671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null,"4":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":3148,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3148,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6202","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6203","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3194,"y":146,"width":19.800125122070312,"height":18.555572509765625},"absoluteRenderBounds":{"x":3194.103515625,"y":146,"width":19.0751953125,"height":17.93426513671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null,"4":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":3192,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3192,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3128,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":3128,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1744,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":1744,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"exportSettings":[],"effects":[]},{"id":"1327:2","name":"DNA","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:3","name":"DNA","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2105,"y":1076,"width":50,"height":32},"absoluteRenderBounds":{"x":-2102.93603515625,"y":1084.248046875,"width":46.811767578125,"height":16.751953125},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"exportSettings":[],"effects":[],"characters":"DNA","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":400,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"1327:4","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2105,"y":1123,"width":1552,"height":1},"absoluteRenderBounds":{"x":-2105,"y":1123,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"exportSettings":[],"effects":[]},{"id":"1327:5","name":"Life Guard","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:6","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:7","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:8","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:9","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2067.9609375,"y":1219.8277587890625,"width":0.5835938453674316,"height":0.5835935473442078},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:10","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2078,"y":1214,"width":17.5,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:11","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2071.124267578125,"y":1219.8284912109375,"width":0.5835942625999451,"height":0.5835936665534973},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2078,"y":1214,"width":17.5,"height":20},"absoluteRenderBounds":{"x":-2078,"y":1214,"width":17.5,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:12","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:13","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:14","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:15","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2027.9609375,"y":1219.8277587890625,"width":0.5835938453674316,"height":0.5835935473442078},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:16","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2038,"y":1214,"width":17.5,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:17","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2031.124267578125,"y":1219.8284912109375,"width":0.5835942625999451,"height":0.5835936665534973},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2038,"y":1214,"width":17.5,"height":20},"absoluteRenderBounds":{"x":-2038,"y":1214,"width":17.5,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:18","name":"Mobility DNA","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:19","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:20","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:21","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1914,"y":1214,"width":10,"height":20},"absoluteRenderBounds":{"x":-1914,"y":1214,"width":10,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:22","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:23","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:24","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1874,"y":1214,"width":10,"height":20},"absoluteRenderBounds":{"x":-1874,"y":1214,"width":10,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:25","name":"TekSpeech Pro","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:26","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:27","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:28","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1759,"y":1215,"width":20,"height":18},"absoluteRenderBounds":{"x":-1759,"y":1215,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:29","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:30","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:31","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1719,"y":1215,"width":20,"height":18},"absoluteRenderBounds":{"x":-1719,"y":1215,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:32","name":"Enterprise Browser","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:33","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:34","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:35","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-1599,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:36","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:37","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:38","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-1559,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:39","name":"AppGallery","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:40","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:41","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:42","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1216,"width":20,"height":16},"absoluteRenderBounds":{"x":-1439,"y":1216,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:43","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:44","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:45","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1216,"width":20,"height":16},"absoluteRenderBounds":{"x":-1399,"y":1216,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:46","name":"Workforce Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:47","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:48","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:49","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1279,"y":1215,"width":20,"height":18},"absoluteRenderBounds":{"x":-1279,"y":1215,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:50","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:51","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:52","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1239,"y":1215,"width":20,"height":18},"absoluteRenderBounds":{"x":-1239,"y":1215,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:53","name":"SimulScan","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:54","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:55","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:56","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-1119,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:57","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:58","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:59","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-1079,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:60","name":"Power Precision","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:61","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:62","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:63","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:64","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:65","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:66","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:67","name":"Power Precision +","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:68","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:69","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:70","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-799,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:71","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:72","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:73","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-759,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:74","name":"Mobility Security","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:75","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:76","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:77","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-639,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1214,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:78","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:79","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:80","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-599,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1214,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:81","name":"StageNow","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:82","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:83","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:84","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:85","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2074.714111328125,"y":1574,"width":10.623966217041016,"height":4.935070514678955},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:86","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2074.714111328125,"y":1589.0653076171875,"width":10.623966217041016,"height":4.9346699714660645},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:87","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2076,"y":1577.1231689453125,"width":13.195594787597656,"height":13.748662948608398},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2076,"y":1574,"width":13.195594787597656,"height":20},"absoluteRenderBounds":{"x":-2076,"y":1574,"width":13.195556640625,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:88","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:89","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:90","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:91","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2034.7142333984375,"y":1574,"width":10.623966217041016,"height":4.935070514678955},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:92","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2034.7142333984375,"y":1589.0653076171875,"width":10.623966217041016,"height":4.9346699714660645},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:93","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2036,"y":1577.1231689453125,"width":13.195594787597656,"height":13.748662948608398},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2036,"y":1574,"width":13.195594787597656,"height":20},"absoluteRenderBounds":{"x":-2036,"y":1574,"width":13.195556640625,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:94","name":"EMDK","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:95","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:96","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:97","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1919,"y":1574,"width":19.99530601501465,"height":20},"absoluteRenderBounds":{"x":-1919,"y":1574,"width":19.995361328125,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:98","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:99","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:100","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1879,"y":1574,"width":19.99530601501465,"height":20},"absoluteRenderBounds":{"x":-1879,"y":1574,"width":19.995361328125,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:101","name":"Enterprise Keyboard","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:102","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:103","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:104","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1759,"y":1574,"width":20,"height":20.001182556152344},"absoluteRenderBounds":{"x":-1759,"y":1574,"width":20,"height":20.001220703125},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:105","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:106","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:107","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1719,"y":1574,"width":20,"height":20.001182556152344},"absoluteRenderBounds":{"x":-1719,"y":1574,"width":20,"height":20.001220703125},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:108","name":"MDM Toolkit","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:109","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:110","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:111","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1595,"y":1574,"width":11.249994277954102,"height":20},"absoluteRenderBounds":{"x":-1595,"y":1574,"width":11.25,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:112","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:113","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:114","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1555,"y":1574,"width":11.249994277954102,"height":20},"absoluteRenderBounds":{"x":-1555,"y":1574,"width":11.25,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:115","name":"MX","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:116","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:117","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:118","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1574,"width":19.99904441833496,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1574,"width":19.9990234375,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:119","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:120","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:121","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1574,"width":19.99904441833496,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1574,"width":19.9990234375,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:122","name":"RX","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:123","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:124","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:125","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1276,"y":1574,"width":14.58672046661377,"height":20},"absoluteRenderBounds":{"x":-1276,"y":1574,"width":14.586669921875,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:126","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:127","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:128","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1236,"y":1574,"width":14.58672046661377,"height":20},"absoluteRenderBounds":{"x":-1236,"y":1574,"width":14.586669921875,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:129","name":"Setting Tool","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:130","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:131","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:132","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1574,"width":19.19721031188965,"height":20},"absoluteRenderBounds":{"x":-1119,"y":1574,"width":19.197265625,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:133","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:134","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:135","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1574,"width":19.19721031188965,"height":20},"absoluteRenderBounds":{"x":-1079,"y":1574,"width":19.197265625,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:136","name":"Data Wedge","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:137","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:138","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:139","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[{"suffix":"","format":"PNG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"1327:140","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:141","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:142","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:143","name":"Application Analytics","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:144","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:145","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:146","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2079,"y":1815,"width":20,"height":18},"absoluteRenderBounds":{"x":-2079,"y":1815,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:147","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:148","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:149","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2039,"y":1815,"width":20,"height":18},"absoluteRenderBounds":{"x":-2039,"y":1815,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:150","name":"Swipe Assist","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:151","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:152","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:153","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1915,"y":1814,"width":12,"height":20},"absoluteRenderBounds":{"x":-1915,"y":1814,"width":12,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:154","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:155","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:156","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1875,"y":1814,"width":12,"height":20},"absoluteRenderBounds":{"x":-1875,"y":1814,"width":12,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:157","name":"SmartDEX","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:158","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:159","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:160","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1759,"y":1820,"width":20,"height":9},"absoluteRenderBounds":{"x":-1759,"y":1820,"width":20,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:161","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:162","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:163","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1719,"y":1820,"width":20,"height":9},"absoluteRenderBounds":{"x":-1719,"y":1820,"width":20,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:164","name":"Direct Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:165","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:166","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:167","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1599,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:168","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:169","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:170","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1559,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:171","name":"Remote Control","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:172","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:173","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:174","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:175","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:176","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:177","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:178","name":"Asset Tracker Lite","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:179","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:180","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:181","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1279,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1279,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:182","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:183","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:184","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1239,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1239,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:185","name":"Voice Wedge","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:186","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:187","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:188","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:189","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1110.25,"y":1814,"width":7.500085830688477,"height":13.125149726867676},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:190","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1114,"y":1823.375,"width":15.000171661376953,"height":10.625121116638184},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:191","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1814,"width":9.687610626220703,"height":20.000226974487305},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:192","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1103.6875,"y":1831.379150390625,"width":4.687553405761719,"height":2.6203453540802},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1119,"y":1814,"width":20.000171661376953,"height":20.000226974487305},"absoluteRenderBounds":{"x":-1119,"y":1814,"width":20.0001220703125,"height":20.000244140625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:193","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:194","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:195","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:196","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1070.25,"y":1814,"width":7.500085830688477,"height":13.125149726867676},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:197","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1074,"y":1823.375,"width":15.000171661376953,"height":10.625121116638184},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:198","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1814,"width":9.687610626220703,"height":20.000226974487305},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:199","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1063.6875,"y":1831.379150390625,"width":4.687553405761719,"height":2.6203453540802},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1079,"y":1814,"width":20.000171661376953,"height":20.000226974487305},"absoluteRenderBounds":{"x":-1079,"y":1814,"width":20.0001220703125,"height":20.000244140625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:200","name":"Device Tracker","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:201","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:202","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:203","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:204","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-952.75,"y":1819,"width":7.5,"height":10},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:205","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-954,"y":1814,"width":10,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-954,"y":1814,"width":10,"height":20},"absoluteRenderBounds":{"x":-954,"y":1814,"width":10,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:206","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:207","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:208","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:209","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-912.75,"y":1819,"width":7.5,"height":10},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:210","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-914,"y":1814,"width":10,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-914,"y":1814,"width":10,"height":20},"absoluteRenderBounds":{"x":-914,"y":1814,"width":10,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:211","name":"WorryFree Wi-Fi","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:212","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:213","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:214","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-798,"y":1814,"width":18,"height":20},"absoluteRenderBounds":{"x":-798,"y":1814,"width":18,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:215","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:216","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:217","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-758,"y":1814,"width":18,"height":20},"absoluteRenderBounds":{"x":-758,"y":1814,"width":18,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:218","name":"Workstation Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:219","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:220","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:221","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:222","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":1455,"width":20,"height":18.000978469848633},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:223","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-947.5438232421875,"y":1462.13623046875,"width":0.7042980790138245,"height":2.0504252910614014},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:224","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-952.185302734375,"y":1457.57275390625,"width":4.245309352874756,"height":8.236653327941895},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:225","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-948.9564208984375,"y":1460.68212890625,"width":0.7074213624000549,"height":3.499340772628784},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:226","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-948.2491455078125,"y":1461.4111328125,"width":1.7128945589065552,"height":0.7240580320358276},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:227","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-953.480224609375,"y":1458.89794921875,"width":2.414055109024048,"height":4.7811079025268555},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:228","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-953.467041015625,"y":1462.189453125,"width":4.5148420333862305,"height":5.668302059173584},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:229","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-946.83740234375,"y":1463.27099609375,"width":2.3175811767578125,"height":2.109489679336548},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-959,"y":1455,"width":20,"height":18.000978469848633},"absoluteRenderBounds":{"x":-959,"y":1455,"width":20,"height":18.0009765625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:230","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:231","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:232","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":1455,"width":20,"height":18.000978469848633},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:233","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-907.5438232421875,"y":1462.13623046875,"width":0.7042980790138245,"height":2.0504252910614014},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:234","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-912.185302734375,"y":1457.57275390625,"width":4.245309352874756,"height":8.236653327941895},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:235","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-908.9564208984375,"y":1460.68212890625,"width":0.7074213624000549,"height":3.499340772628784},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:236","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-908.2491455078125,"y":1461.4111328125,"width":1.7128945589065552,"height":0.7240580320358276},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:237","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-913.480224609375,"y":1458.89794921875,"width":2.414055109024048,"height":4.7811079025268555},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:238","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-913.467041015625,"y":1462.189453125,"width":4.5148420333862305,"height":5.668302059173584},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:239","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-906.83740234375,"y":1463.27099609375,"width":2.3175811767578125,"height":2.109489679336548},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-919,"y":1455,"width":20,"height":18.000978469848633},"absoluteRenderBounds":{"x":-919,"y":1455,"width":20,"height":18.0009765625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:240","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:241","name":"OEM Config","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:242","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:243","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:244","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:245","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-791.900390625,"y":1463.375,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:246","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-788.150390625,"y":1459.625,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:247","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-790.025390625,"y":1467.125,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:248","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":1454,"width":19.198436737060547,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-799,"y":1454,"width":19.198436737060547,"height":20},"absoluteRenderBounds":{"x":-799,"y":1454,"width":19.19842529296875,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:249","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:250","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:251","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:252","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-751.900390625,"y":1463.375,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:253","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-748.150390625,"y":1459.625,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:254","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-750.025390625,"y":1467.125,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:255","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":1454,"width":19.198436737060547,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-759,"y":1454,"width":19.198436737060547,"height":20},"absoluteRenderBounds":{"x":-759,"y":1454,"width":19.19842529296875,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:256","name":"GMS Restricted Mode","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:257","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:258","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:259","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:260","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-635.250018119812,"y":1454,"width":11.250018119812012,"height":20.000030517578125},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:261","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-630.8754942417145,"y":1459,"width":3.7500059604644775,"height":3.728128671646118},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:262","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-629.7869157791138,"y":1460.875,"width":1.1960954666137695,"height":3.286722183227539},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:263","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-633.3753671646118,"y":1463.74853515625,"width":3.5657968521118164,"height":3.9082300662994385},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-635.25,"y":1454,"width":11.250018119812012,"height":20.000030517578125},"absoluteRenderBounds":{"x":-635.25,"y":1454,"width":11.25,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:264","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:265","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:266","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:267","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-595.250018119812,"y":1454,"width":11.250018119812012,"height":20.000030517578125},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:268","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-590.8754942417145,"y":1459,"width":3.7500059604644775,"height":3.728128671646118},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:269","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-589.7869157791138,"y":1460.875,"width":1.1960954666137695,"height":3.286722183227539},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:270","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-593.3753671646118,"y":1463.74853515625,"width":3.5657968521118164,"height":3.9082300662994385},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-595.25,"y":1454,"width":11.250018119812012,"height":20.000030517578125},"absoluteRenderBounds":{"x":-595.25,"y":1454,"width":11.25,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:271","name":"Zero Touch","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:272","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:273","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:274","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:275","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-795.2500200271606,"y":1574,"width":11.250020027160645,"height":20.000030517578125},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:276","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-793.3750128746033,"y":1580.25,"width":7.5000128746032715,"height":7.500012397766113},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:277","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-791.500006198883,"y":1582.125,"width":3.7500061988830566,"height":3.7500061988830566},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-795.25,"y":1574,"width":11.250020980834961,"height":20.000030517578125},"absoluteRenderBounds":{"x":-795.25,"y":1574,"width":11.25,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:278","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:279","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:280","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:281","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-755.2500200271606,"y":1574,"width":11.250020027160645,"height":20.000030517578125},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:282","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-753.3750128746033,"y":1580.25,"width":7.5000128746032715,"height":7.500012397766113},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:283","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-751.500006198883,"y":1582.125,"width":3.7500061988830566,"height":3.7500061988830566},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-755.25,"y":1574,"width":11.250020980834961,"height":20.000030517578125},"absoluteRenderBounds":{"x":-755.25,"y":1574,"width":11.25,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:284","name":"Smart TEK","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:285","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:286","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:287","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:288","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2072.50048828125,"y":1340.25,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:289","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2071.87548828125,"y":1340.875,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:290","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2071.25048828125,"y":1341.5,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:291","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2070.62548828125,"y":1342.125,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:292","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2070.00048828125,"y":1342.75,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:293","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2068.12548828125,"y":1340.25,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:294","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2067.50048828125,"y":1340.875,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:295","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2066.87548828125,"y":1341.5,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:296","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2067.50048828125,"y":1342.125,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:297","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2068.12548828125,"y":1342.75,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:298","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2073.75,"y":1337.75,"width":8.75001049041748,"height":10.000012397766113},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:299","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2075,"y":1334,"width":11.25001335144043,"height":20.000024795532227},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:300","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2071.251220703125,"y":1345.249755859375,"width":8.751330375671387,"height":8.749228477478027},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2075,"y":1334,"width":12.500110626220703,"height":20.000024795532227},"absoluteRenderBounds":{"x":-2075,"y":1334,"width":12.5,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:301","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:302","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:303","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:304","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2032.50048828125,"y":1340.25,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:305","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2031.87548828125,"y":1340.875,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:306","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2031.25048828125,"y":1341.5,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:307","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2030.62548828125,"y":1342.125,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:308","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2030.00048828125,"y":1342.75,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:309","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2028.12548828125,"y":1340.25,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:310","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2027.50048828125,"y":1340.875,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:311","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2026.87548828125,"y":1341.5,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:312","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2027.50048828125,"y":1342.125,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:313","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2028.12548828125,"y":1342.75,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:314","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2033.75,"y":1337.75,"width":8.75001049041748,"height":10.000012397766113},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:315","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2035,"y":1334,"width":11.25001335144043,"height":20.000024795532227},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:316","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2031.251220703125,"y":1345.249755859375,"width":8.751330375671387,"height":8.749228477478027},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2035,"y":1334,"width":12.500110626220703,"height":20.000024795532227},"absoluteRenderBounds":{"x":-2035,"y":1334,"width":12.5001220703125,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:317","name":"OCR","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:318","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:319","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:320","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:321","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1917.125,"y":1340.874755859375,"width":5,"height":6.25098991394043},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:322","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1919,"y":1334,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:323","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1904,"y":1349,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:324","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1919,"y":1349,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:325","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1904,"y":1334,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:326","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1905.875,"y":1340.875,"width":5,"height":6.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:327","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1911.5,"y":1340.875,"width":5.001170635223389,"height":6.2531232833862305},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1919,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1919,"y":1334,"width":20,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:328","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:329","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:330","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:331","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1877.125,"y":1340.874755859375,"width":5,"height":6.25098991394043},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:332","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1879,"y":1334,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:333","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1864,"y":1349,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:334","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1879,"y":1349,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:335","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1864,"y":1334,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:336","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1865.875,"y":1340.875,"width":5,"height":6.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:337","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1871.5,"y":1340.875,"width":5.001170635223389,"height":6.2531232833862305},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1879,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1879,"y":1334,"width":20,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:338","name":"Smart TE","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:339","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:340","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:341","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1759,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1759,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:342","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:343","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:344","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1719,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1719,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:345","name":"Smart TE Lite","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:346","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:347","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:348","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:349","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1589.625,"y":1337.75,"width":10.624919891357422,"height":13.749894142150879},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:350","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":1334,"width":10.624918937683105,"height":11.874909400939941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:351","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1597.125,"y":1340.25,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:352","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1587.75,"y":1339.625,"width":6.8749470710754395,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:353","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1588.0625,"y":1344.625,"width":7.187746524810791,"height":9.375083923339844},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:354","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1594.625,"y":1335.875,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:355","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1592.75,"y":1340.25,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:356","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1587.75,"y":1343.375,"width":6.874948978424072,"height":3.7499711513519287},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:357","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1598.375,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:358","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1595.875,"y":1348.375,"width":0.624995231628418,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:359","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1594.625,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:360","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1592.125,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1599,"y":1334,"width":19.999919891357422,"height":20.000085830688477},"absoluteRenderBounds":{"x":-1599,"y":1334,"width":19.9998779296875,"height":20.0001220703125},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:361","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:362","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:363","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:364","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1549.625,"y":1337.75,"width":10.624919891357422,"height":13.749894142150879},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:365","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":1334,"width":10.624918937683105,"height":11.874909400939941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:366","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1557.125,"y":1340.25,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:367","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1547.75,"y":1339.625,"width":6.8749470710754395,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:368","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1548.0625,"y":1344.625,"width":7.187746524810791,"height":9.375083923339844},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:369","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1554.625,"y":1335.875,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:370","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1552.75,"y":1340.25,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:371","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1547.75,"y":1343.375,"width":6.874948978424072,"height":3.7499711513519287},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:372","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1558.375,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:373","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1555.875,"y":1348.375,"width":0.624995231628418,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:374","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1554.625,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:375","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1552.125,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1559,"y":1334,"width":19.999919891357422,"height":20.000085830688477},"absoluteRenderBounds":{"x":-1559,"y":1334,"width":19.9998779296875,"height":20.0001220703125},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:376","name":"PRZM","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:377","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:378","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:379","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:380","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1423.009765625,"y":1341.916748046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:381","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1421.177001953125,"y":1338.229248046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:382","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1421.177001953125,"y":1345.604248046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:383","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1423.020751953125,"y":1338.2275390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:384","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1424.864501953125,"y":1338.2275390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:385","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1420.5625,"y":1341.9150390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:386","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1437.770751953125,"y":1337,"width":17.20833396911621,"height":14.75},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:387","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1424.864501953125,"y":1341.9150390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:388","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1338.2275390625,"width":1.84375,"height":10.447916984558105},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:389","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1436.541748046875,"y":1338.2275390625,"width":1.2291666269302368,"height":8.604166984558105},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1439,"y":1337,"width":19.666748046875,"height":14.75},"absoluteRenderBounds":{"x":-1439,"y":1337,"width":19.666748046875,"height":14.75},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:390","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:391","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:392","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:393","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1383.009765625,"y":1341.916748046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:394","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1381.177001953125,"y":1338.229248046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:395","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1381.177001953125,"y":1345.604248046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:396","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1383.020751953125,"y":1338.2275390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:397","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1384.864501953125,"y":1338.2275390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:398","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1380.5625,"y":1341.9150390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:399","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1397.770751953125,"y":1337,"width":17.20833396911621,"height":14.75},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:400","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1384.864501953125,"y":1341.9150390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:401","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1338.2275390625,"width":1.84375,"height":10.447916984558105},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:402","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1396.541748046875,"y":1338.2275390625,"width":1.2291666269302368,"height":8.604166984558105},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1399,"y":1337,"width":19.666748046875,"height":14.75},"absoluteRenderBounds":{"x":-1399,"y":1337,"width":19.666748046875,"height":14.75},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:403","name":"Multi Code Data Formatting","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:404","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:405","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:406","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1279,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1279,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:407","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:408","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:409","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1239,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1239,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:410","name":"Remote Management","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:411","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:412","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:413","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1337,"width":20,"height":15},"absoluteRenderBounds":{"x":-1119,"y":1337,"width":20,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:414","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:415","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:416","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1337,"width":20,"height":15},"absoluteRenderBounds":{"x":-1079,"y":1337,"width":20,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:417","name":"Preferred Symbol","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:418","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:419","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:420","name":"Rectangle 59","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:421","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:422","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:423","name":"Rectangle 59","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:424","name":"Wi-Fi Friendly Mode","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:425","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:426","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:427","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:428","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":1338.062255859375,"width":10.624809265136719,"height":15.937383651733398},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:429","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-789.606689453125,"y":1334,"width":10.606511116027832,"height":2.9037177562713623},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:430","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-788.192626953125,"y":1335.999755859375,"width":7.778423309326172,"height":2.317925453186035},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:431","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-786.7783203125,"y":1338.001220703125,"width":4.949553489685059,"height":1.7324573993682861},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:432","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-785.362548828125,"y":1339.999755859375,"width":2.1214613914489746,"height":1.4999496936798096},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:433","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-787.128662109375,"y":1341.501220703125,"width":6.589376926422119,"height":12.498678207397461},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-799,"y":1334,"width":19.999820709228516,"height":19.99989891052246},"absoluteRenderBounds":{"x":-799,"y":1334,"width":19.99981689453125,"height":19.9998779296875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:434","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:435","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:436","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:437","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":1338.062255859375,"width":10.624809265136719,"height":15.937383651733398},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:438","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-749.606689453125,"y":1334,"width":10.606511116027832,"height":2.9037177562713623},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:439","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-748.192626953125,"y":1335.999755859375,"width":7.778423309326172,"height":2.317925453186035},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:440","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-746.7783203125,"y":1338.001220703125,"width":4.949553489685059,"height":1.7324573993682861},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:441","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-745.362548828125,"y":1339.999755859375,"width":2.1214613914489746,"height":1.4999496936798096},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:442","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-747.128662109375,"y":1341.501220703125,"width":6.589376926422119,"height":12.498678207397461},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-759,"y":1334,"width":19.999820709228516,"height":19.99989891052246},"absoluteRenderBounds":{"x":-759,"y":1334,"width":19.99981689453125,"height":19.9998779296875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:443","name":"Intelligent Document Capture","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:444","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:445","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:446","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:447","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-639,"y":1336,"width":20,"height":17},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:448","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-632.1251220703125,"y":1348.591064453125,"width":4.999998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:449","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-632.1251220703125,"y":1347.331787109375,"width":6.249998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:450","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-632.1251220703125,"y":1346.072509765625,"width":6.249998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:451","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-632.1251220703125,"y":1342.294677734375,"width":0.31249991059303284,"height":2.5185184478759766},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:452","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-628.687744140625,"y":1342.294677734375,"width":0.31249991059303284,"height":2.5185184478759766},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:453","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-630.8751220703125,"y":1342.294677734375,"width":0.6249998211860657,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:454","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-631.4998779296875,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:455","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-629.3125,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:456","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-629.937744140625,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-639,"y":1336,"width":20,"height":17},"absoluteRenderBounds":{"x":-639,"y":1336,"width":20,"height":17},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:457","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:458","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:459","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:460","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-599,"y":1336,"width":20,"height":17},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:461","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-592.1251220703125,"y":1348.591064453125,"width":4.999998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:462","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-592.1251220703125,"y":1347.331787109375,"width":6.249998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:463","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-592.1251220703125,"y":1346.072509765625,"width":6.249998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:464","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-592.1251220703125,"y":1342.294677734375,"width":0.31249991059303284,"height":2.5185184478759766},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:465","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-588.687744140625,"y":1342.294677734375,"width":0.31249991059303284,"height":2.5185184478759766},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:466","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-590.8751220703125,"y":1342.294677734375,"width":0.6249998211860657,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:467","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-591.4998779296875,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:468","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-589.3125,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:469","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-589.937744140625,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-599,"y":1336,"width":20,"height":17},"absoluteRenderBounds":{"x":-599,"y":1336,"width":20,"height":17},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:470","name":"123Scan","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:471","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:472","name":"Group 13","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:473","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2074,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2074,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:474","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2074,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2074,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:475","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2070.874755859375,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2070.874755859375,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:476","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2068.999755859375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2068.999755859375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:477","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2068.999755859375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2068.999755859375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:478","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2063.375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2063.375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:479","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2063.375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2063.375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:480","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2064.625,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2064.625,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:481","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2067.749755859375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2067.749755859375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:482","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2066.5,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2066.5,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:483","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2067.749755859375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2067.749755859375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:484","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2066.5,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2066.5,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:485","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2064.625,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2064.625,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:486","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2072.12451171875,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2072.12451171875,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:487","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2072.12451171875,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2072.12451171875,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:488","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2075.24951171875,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2075.24951171875,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:489","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2062.125244140625,"y":1701.427490234375,"width":1.25,"height":8.99854564666748},"absoluteRenderBounds":{"x":-2062.125244140625,"y":1701.427490234375,"width":1.25,"height":8.99853515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:490","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2062.125244140625,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2062.125244140625,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:491","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2070.874755859375,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2070.874755859375,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:492","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2077.125,"y":1701.427490234375,"width":1.25,"height":8.99854564666748},"absoluteRenderBounds":{"x":-2077.125,"y":1701.427490234375,"width":1.25,"height":8.99853515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:493","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2077.125,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2077.125,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:494","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2075.24951171875,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2075.24951171875,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:495","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2079,"y":1700.1419677734375,"width":20,"height":0.6427532434463501},"absoluteRenderBounds":{"x":-2079,"y":1700.1419677734375,"width":20,"height":0.6427001953125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:496","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2074.624755859375,"y":1707.85498046875,"width":2.1738433837890625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2074.624755859375,"y":1707.85498046875,"width":2.173828125,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:497","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2071.170166015625,"y":1707.8564453125,"width":3.4789557456970215,"height":5.142372131347656},"absoluteRenderBounds":{"x":-2071.170166015625,"y":1707.8564453125,"width":3.47900390625,"height":5.142333984375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:498","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2066.753662109375,"y":1707.855224609375,"width":3.380509614944458,"height":5.144669532775879},"absoluteRenderBounds":{"x":-2066.753662109375,"y":1707.855224609375,"width":3.380615234375,"height":5.1446533203125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2079,"y":1695,"width":20,"height":17.999980926513672},"absoluteRenderBounds":{"x":-2079,"y":1695,"width":20,"height":17.999980926513672},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:499","name":"Rectangle 62","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:500","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:501","name":"Group 13","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:502","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2033.9998779296875,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2033.9998779296875,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:503","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2033.9998779296875,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2033.9998779296875,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:504","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2030.8748779296875,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2030.8748779296875,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:505","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2028.9998779296875,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2028.9998779296875,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:506","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2028.9998779296875,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2028.9998779296875,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:507","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2023.375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2023.375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:508","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2023.375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2023.375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:509","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2024.6251220703125,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2024.6251220703125,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:510","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2027.749755859375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2027.749755859375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:511","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2026.5001220703125,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2026.5001220703125,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:512","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2027.749755859375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2027.749755859375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:513","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2026.5001220703125,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2026.5001220703125,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:514","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2024.6251220703125,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2024.6251220703125,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:515","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2032.12451171875,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2032.12451171875,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:516","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2032.12451171875,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2032.12451171875,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:517","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2035.2496337890625,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2035.2496337890625,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:518","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2022.1253662109375,"y":1701.427490234375,"width":1.25,"height":8.99854564666748},"absoluteRenderBounds":{"x":-2022.1253662109375,"y":1701.427490234375,"width":1.25,"height":8.99853515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:519","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2022.1253662109375,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2022.1253662109375,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:520","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2030.8748779296875,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2030.8748779296875,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:521","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2037.125,"y":1701.427490234375,"width":1.25,"height":8.99854564666748},"absoluteRenderBounds":{"x":-2037.125,"y":1701.427490234375,"width":1.25,"height":8.99853515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:522","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2037.125,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2037.125,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:523","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2035.2496337890625,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2035.2496337890625,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:524","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2039,"y":1700.1419677734375,"width":20,"height":0.6427532434463501},"absoluteRenderBounds":{"x":-2039,"y":1700.1419677734375,"width":20,"height":0.6427001953125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:525","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2034.624755859375,"y":1707.85498046875,"width":2.1738433837890625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2034.624755859375,"y":1707.85498046875,"width":2.173828125,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:526","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2031.170166015625,"y":1707.8564453125,"width":3.4789557456970215,"height":5.142372131347656},"absoluteRenderBounds":{"x":-2031.170166015625,"y":1707.8564453125,"width":3.47900390625,"height":5.142333984375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:527","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2026.753662109375,"y":1707.855224609375,"width":3.380509614944458,"height":5.144669532775879},"absoluteRenderBounds":{"x":-2026.753662109375,"y":1707.855224609375,"width":3.3804931640625,"height":5.1446533203125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2039,"y":1695,"width":20,"height":17.999980926513672},"absoluteRenderBounds":{"x":-2039,"y":1695,"width":20,"height":17.999980926513672},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:528","name":"Rectangle 62","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:529","name":"Scan To Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:530","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:531","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:532","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:533","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1907.437744140625,"y":1702.4375,"width":5.625000953674316,"height":6.5625},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:534","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1907.437744140625,"y":1699,"width":5.625000953674316,"height":6.5625},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:535","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1919,"y":1702.75,"width":8.437766075134277,"height":11.249590873718262},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:536","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1913.84912109375,"y":1703.826904296875,"width":1.5121102333068848,"height":3.492222547531128},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:537","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1917.830078125,"y":1698.999755859375,"width":8.909172058105469,"height":3.515878438949585},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:538","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1910.250244140625,"y":1694,"width":11.250000953674316,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1919,"y":1694,"width":19.999755859375,"height":20},"absoluteRenderBounds":{"x":-1919,"y":1694,"width":19.999755859375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:539","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:540","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:541","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:542","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1867.437744140625,"y":1702.4375,"width":5.625000953674316,"height":6.5625},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:543","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1867.437744140625,"y":1699,"width":5.625000953674316,"height":6.5625},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:544","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1879,"y":1702.75,"width":8.437766075134277,"height":11.249590873718262},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:545","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1873.84912109375,"y":1703.826904296875,"width":1.5121102333068848,"height":3.492222547531128},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:546","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1877.830078125,"y":1698.999755859375,"width":8.909172058105469,"height":3.515878438949585},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:547","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1870.250244140625,"y":1694,"width":11.250000953674316,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1879,"y":1694,"width":19.999755859375,"height":20},"absoluteRenderBounds":{"x":-1879,"y":1694,"width":19.999755859375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:548","name":"Scanner Control Application","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:549","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:550","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:551","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:552","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1709.827880859375,"y":1700.875,"width":6.803053855895996,"height":9.374948501586914},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:553","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1708.396728515625,"y":1701.771484375,"width":1.220703125,"height":2.9097986221313477},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:554","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1711.151123046875,"y":1697.75,"width":7.182915210723877,"height":2.9295897483825684},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:555","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1716,"y":1702.74853515625,"width":7.198437213897705,"height":7.5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:556","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1712.71337890625,"y":1694,"width":11.25,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1716,"y":1694,"width":14.53662109375,"height":20},"absoluteRenderBounds":{"x":-1716,"y":1694,"width":14.53662109375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:557","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:558","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1763,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:559","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:560","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1751.827880859375,"y":1700.875,"width":6.803053855895996,"height":9.374948501586914},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:561","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1750.396728515625,"y":1701.771484375,"width":1.220703125,"height":2.9097986221313477},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:562","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1753.151123046875,"y":1697.75,"width":7.182915210723877,"height":2.9295897483825684},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:563","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1758,"y":1702.74853515625,"width":7.198437213897705,"height":7.5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:564","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1754.71337890625,"y":1694,"width":11.25,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1758,"y":1694,"width":14.53662109375,"height":20},"absoluteRenderBounds":{"x":-1758,"y":1694,"width":14.53662109375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1763,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1763,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:565","name":"Scan Speed Analytics","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:566","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:567","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:568","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-1599,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:569","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:570","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:571","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-1559,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:572","name":"Remote Diagnostics","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:573","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:574","name":"Group 16","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:575","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1435.2491455078125,"y":1701.8111572265625,"width":1.2497920989990234,"height":4.061824321746826},"absoluteRenderBounds":{"x":-1435.2491455078125,"y":1701.8111572265625,"width":1.249755859375,"height":4.061767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:576","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1427.7503662109375,"y":1701.186279296875,"width":1.2497920989990234,"height":4.68671989440918},"absoluteRenderBounds":{"x":-1427.7503662109375,"y":1701.186279296875,"width":1.249755859375,"height":4.686767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:577","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1431.8121337890625,"y":1699.3116455078125,"width":0.6248960494995117,"height":5.936511993408203},"absoluteRenderBounds":{"x":-1431.8121337890625,"y":1699.3116455078125,"width":0.6248779296875,"height":5.9365234375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:578","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1433.3743896484375,"y":1700.5614013671875,"width":0.9373440146446228,"height":4.68671989440918},"absoluteRenderBounds":{"x":-1433.3743896484375,"y":1700.5614013671875,"width":0.9373779296875,"height":4.686767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:579","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1429.3126220703125,"y":1702.4361572265625,"width":0.9373440146446228,"height":2.8120319843292236},"absoluteRenderBounds":{"x":-1429.3126220703125,"y":1702.4361572265625,"width":0.9373779296875,"height":2.81201171875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:580","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1430.5623779296875,"y":1701.186279296875,"width":0.6248960494995117,"height":4.061824321746826},"absoluteRenderBounds":{"x":-1430.5623779296875,"y":1701.186279296875,"width":0.6248779296875,"height":4.061767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:581","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1694,"width":19.99823570251465,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1694,"width":19.998291015625,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:582","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1435.26416015625,"y":1696.4979248046875,"width":8.76409912109375,"height":4.377254009246826},"absoluteRenderBounds":{"x":-1435.26416015625,"y":1696.4979248046875,"width":8.76416015625,"height":4.377197265625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1439,"y":1694,"width":19.99823570251465,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1694,"width":19.998291015625,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:583","name":"Rectangle 66","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:584","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:585","name":"Group 16","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:586","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1395.2491455078125,"y":1701.8111572265625,"width":1.2497920989990234,"height":4.061824321746826},"absoluteRenderBounds":{"x":-1395.2491455078125,"y":1701.8111572265625,"width":1.249755859375,"height":4.061767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:587","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1387.7503662109375,"y":1701.186279296875,"width":1.2497920989990234,"height":4.68671989440918},"absoluteRenderBounds":{"x":-1387.7503662109375,"y":1701.186279296875,"width":1.249755859375,"height":4.686767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:588","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1391.8121337890625,"y":1699.3116455078125,"width":0.6248960494995117,"height":5.936511993408203},"absoluteRenderBounds":{"x":-1391.8121337890625,"y":1699.3116455078125,"width":0.6248779296875,"height":5.9365234375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:589","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1393.3743896484375,"y":1700.5614013671875,"width":0.9373440146446228,"height":4.68671989440918},"absoluteRenderBounds":{"x":-1393.3743896484375,"y":1700.5614013671875,"width":0.9373779296875,"height":4.686767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:590","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1389.3126220703125,"y":1702.4361572265625,"width":0.9373440146446228,"height":2.8120319843292236},"absoluteRenderBounds":{"x":-1389.3126220703125,"y":1702.4361572265625,"width":0.9373779296875,"height":2.81201171875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:591","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1390.5623779296875,"y":1701.186279296875,"width":0.6248960494995117,"height":4.061824321746826},"absoluteRenderBounds":{"x":-1390.5623779296875,"y":1701.186279296875,"width":0.6248779296875,"height":4.061767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:592","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1694,"width":19.99823570251465,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1694,"width":19.998291015625,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:593","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1395.26416015625,"y":1696.4979248046875,"width":8.76409912109375,"height":4.377254009246826},"absoluteRenderBounds":{"x":-1395.26416015625,"y":1696.4979248046875,"width":8.76416015625,"height":4.377197265625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1399,"y":1694,"width":19.99823570251465,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1694,"width":19.998291015625,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:594","name":"Rectangle 66","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:595","name":"123 RFID","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:596","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:597","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:598","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:599","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1274.625244140625,"y":1708.998779296875,"width":2.1736671924591064,"height":4.999594688415527},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:600","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1271.1728515625,"y":1708.99853515625,"width":3.478666305541992,"height":4.998336315155029},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:601","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1266.75927734375,"y":1708.9990234375,"width":3.380260705947876,"height":5.000991344451904},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:602","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1275.250244140625,"y":1697.749755859375,"width":12.498987197875977,"height":9.374239921569824},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:603","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1279,"y":1694,"width":19.99837875366211,"height":19.99837875366211},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1279,"y":1694,"width":19.99837875366211,"height":20.000015258789062},"absoluteRenderBounds":{"x":-1279,"y":1694,"width":19.9984130859375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:604","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:605","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:606","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:607","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1234.625244140625,"y":1708.998779296875,"width":2.1736671924591064,"height":4.999594688415527},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:608","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1231.1728515625,"y":1708.99853515625,"width":3.478666305541992,"height":4.998336315155029},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:609","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1226.75927734375,"y":1708.9990234375,"width":3.380260705947876,"height":5.000991344451904},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:610","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1235.250244140625,"y":1697.749755859375,"width":12.498987197875977,"height":9.374239921569824},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:611","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1239,"y":1694,"width":19.99837875366211,"height":19.99837875366211},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1239,"y":1694,"width":19.99837875366211,"height":20.000015258789062},"absoluteRenderBounds":{"x":-1239,"y":1694,"width":19.9984130859375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:612","name":"Blood Bag Plus","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:613","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:614","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:615","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:616","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:617","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:618","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:619","name":"Label Plus","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:620","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:621","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2079,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-2079,"y":1934,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:622","name":"Rectangle 70","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:623","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:624","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2039,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-2039,"y":1934,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:625","name":"Rectangle 70","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:626","name":"Virtual Tether","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:627","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:628","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1919,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1919,"y":1934,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:629","name":"Rectangle 71","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:630","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:631","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1879,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1879,"y":1934,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:632","name":"Rectangle 71","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:633","name":"Link OS","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:634","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:635","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1759,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1759,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:636","name":"Rectangle 72","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:637","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:638","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1719,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1719,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:639","name":"Rectangle 72","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:640","name":"MDM Connectors","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:641","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:642","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":1934,"width":20,"height":19.998435974121094},"absoluteRenderBounds":{"x":-1599,"y":1934,"width":20,"height":19.9984130859375},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:643","name":"Rectangle 73","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:644","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:645","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":1934,"width":20,"height":19.998435974121094},"absoluteRenderBounds":{"x":-1559,"y":1934,"width":20,"height":19.9984130859375},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:646","name":"Rectangle 73","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:647","name":"Browser Print","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:648","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:649","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:650","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1934,"width":19.999998092651367,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:651","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1435.25,"y":1939,"width":12.49999713897705,"height":12.5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:652","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1430.875,"y":1943.375,"width":3.75,"height":3.75},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1439,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:653","name":"Rectangle 74","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:654","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:655","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:656","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1934,"width":19.999998092651367,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:657","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1395.25,"y":1939,"width":12.49999713897705,"height":12.5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:658","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1390.875,"y":1943.375,"width":3.75,"height":3.75},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1399,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:659","name":"Rectangle 74","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:660","name":"Cloud Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:661","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:662","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1279,"y":1938,"width":20,"height":13},"absoluteRenderBounds":{"x":-1279,"y":1938,"width":20,"height":13},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:663","name":"Rectangle 75","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:664","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:665","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1239,"y":1938,"width":20,"height":13},"absoluteRenderBounds":{"x":-1239,"y":1938,"width":20,"height":13},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:666","name":"Rectangle 75","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:667","name":"Virtual Devices","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:668","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:669","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:670","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1936,"width":20,"height":16.228904724121094},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:671","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1112.125,"y":1940.989501953125,"width":6.249995231628418,"height":6.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1119,"y":1936,"width":20,"height":16.228904724121094},"absoluteRenderBounds":{"x":-1119,"y":1936,"width":20,"height":16.2288818359375},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:672","name":"Rectangle 76","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:673","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:674","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:675","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1936,"width":20,"height":16.228904724121094},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:676","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1072.125,"y":1940.989501953125,"width":6.249995231628418,"height":6.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1079,"y":1936,"width":20,"height":16.228904724121094},"absoluteRenderBounds":{"x":-1079,"y":1936,"width":20,"height":16.2288818359375},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:677","name":"Rectangle 76","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:678","name":"Enterprise Connectors","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:679","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:680","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:681","name":"Rectangle 77","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:682","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:683","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:684","name":"Rectangle 77","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:685","name":"Pairing Solutions","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:686","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:687","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:688","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1113.7701416015625,"y":1702.862060546875,"width":1.8179469108581543,"height":1.8179564476013184},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:689","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1115.803955078125,"y":1694,"width":13.608590126037598,"height":13.609663963317871},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:690","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1108.541015625,"y":1702.8616943359375,"width":9.5413818359375,"height":11.138278007507324},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:691","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1700.3909912109375,"width":13.60860538482666,"height":13.608866691589355},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:692","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":-0.7853981633974483,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1109,"y":1703.5634010602753,"width":1.5746751856618175,"height":1.5746751856618175},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:693","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1113.069580078125,"y":1699.93115234375,"width":8.838375091552734,"height":10.206579208374023},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1119,"y":1694,"width":20.000316619873047,"height":19.999929428100586},"absoluteRenderBounds":{"x":-1119,"y":1694,"width":20.0003662109375,"height":19.9998779296875},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:694","name":"Rectangle 78","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:695","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:696","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:697","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1073.7701416015625,"y":1702.862060546875,"width":1.8179469108581543,"height":1.8179564476013184},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:698","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1075.803955078125,"y":1694,"width":13.608590126037598,"height":13.609663963317871},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:699","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1068.541015625,"y":1702.8616943359375,"width":9.5413818359375,"height":11.138278007507324},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:700","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1700.3909912109375,"width":13.60860538482666,"height":13.608866691589355},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:701","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":-0.7853981633974483,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1069,"y":1703.5634010602753,"width":1.5746751856618175,"height":1.5746751856618175},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:702","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1073.069580078125,"y":1699.93115234375,"width":8.838375091552734,"height":10.206579208374023},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1079,"y":1694,"width":20.000316619873047,"height":19.999929428100586},"absoluteRenderBounds":{"x":-1079,"y":1694,"width":20.0003662109375,"height":19.9998779296875},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:703","name":"Rectangle 78","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:704","name":"Scan And Pair","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:705","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:706","name":"Group 19","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:707","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":1694,"width":2.499999761581421,"height":15},"absoluteRenderBounds":{"x":-799,"y":1694,"width":2.5,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:708","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-781.5,"y":1694,"width":2.5000009536743164,"height":15},"absoluteRenderBounds":{"x":-781.5,"y":1694,"width":2.5,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:709","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-792.125,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-792.125,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:710","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-795.25,"y":1694,"width":1.875,"height":10.625},"absoluteRenderBounds":{"x":-795.25,"y":1694,"width":1.875,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:711","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-787.125,"y":1694,"width":1.875,"height":10.625},"absoluteRenderBounds":{"x":-787.125,"y":1694,"width":1.875,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:712","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-789.625,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-789.625,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:713","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-784,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-784,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:714","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-795.25,"y":1707.125,"width":8.203125,"height":6.875},"absoluteRenderBounds":{"x":-795.25,"y":1707.125,"width":8.203125,"height":6.875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:715","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-790.953125,"y":1707.1234130859375,"width":8.203125,"height":6.875},"absoluteRenderBounds":{"x":-790.953125,"y":1707.1234130859375,"width":8.203125,"height":6.875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-799,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-799,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:716","name":"Rectangle 79","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:717","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:718","name":"Group 19","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:719","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":1694,"width":2.499999761581421,"height":15},"absoluteRenderBounds":{"x":-759,"y":1694,"width":2.5,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:720","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-741.5,"y":1694,"width":2.5000009536743164,"height":15},"absoluteRenderBounds":{"x":-741.5,"y":1694,"width":2.5,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:721","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-752.125,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-752.125,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:722","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-755.25,"y":1694,"width":1.875,"height":10.625},"absoluteRenderBounds":{"x":-755.25,"y":1694,"width":1.875,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:723","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-747.125,"y":1694,"width":1.875,"height":10.625},"absoluteRenderBounds":{"x":-747.125,"y":1694,"width":1.875,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:724","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-749.625,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-749.625,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:725","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-744,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-744,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:726","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-755.25,"y":1707.125,"width":8.203125,"height":6.875},"absoluteRenderBounds":{"x":-755.25,"y":1707.125,"width":8.203125,"height":6.875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:727","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-750.953125,"y":1707.1234130859375,"width":8.203125,"height":6.875},"absoluteRenderBounds":{"x":-750.953125,"y":1707.1234130859375,"width":8.203125,"height":6.875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-759,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-759,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:728","name":"Rectangle 79","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:729","name":"Zebra Designer","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:730","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:731","name":"Group 20","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:732","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-632.125,"y":1819.0001220703125,"width":1.2499899864196777,"height":3.8570001125335693},"absoluteRenderBounds":{"x":-632.125,"y":1819.0001220703125,"width":1.25,"height":3.8570556640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:733","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-639,"y":1819.0001220703125,"width":2.4999799728393555,"height":14.999881744384766},"absoluteRenderBounds":{"x":-639,"y":1819.0001220703125,"width":2.5,"height":14.9998779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:734","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-629.6251831054688,"y":1819.0001220703125,"width":1.2499899864196777,"height":1.3570201396942139},"absoluteRenderBounds":{"x":-629.6251831054688,"y":1819.0001220703125,"width":1.25,"height":1.3570556640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:735","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-622.4376831054688,"y":1814,"width":3.4376325607299805,"height":3.436061382293701},"absoluteRenderBounds":{"x":-622.4376831054688,"y":1814,"width":3.4376220703125,"height":3.43603515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:736","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-635.25,"y":1819.0001220703125,"width":1.8749852180480957,"height":6.981975078582764},"absoluteRenderBounds":{"x":-635.25,"y":1819.0001220703125,"width":1.875,"height":6.98193359375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:737","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-624.0001831054688,"y":1822.0125732421875,"width":1.2499899864196777,"height":8.237434387207031},"absoluteRenderBounds":{"x":-624.0001831054688,"y":1822.0125732421875,"width":1.25,"height":8.2374267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:738","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-627.125,"y":1824.5145263671875,"width":1.8749852180480957,"height":5.735499382019043},"absoluteRenderBounds":{"x":-627.125,"y":1824.5145263671875,"width":1.875,"height":5.7354736328125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:739","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-621.5001831054688,"y":1819.0001220703125,"width":2.4999799728393555,"height":14.999881744384766},"absoluteRenderBounds":{"x":-621.5001831054688,"y":1819.0001220703125,"width":2.5,"height":14.9998779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:740","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-634,"y":1815.5626220703125,"width":13.437392234802246,"height":13.437392234802246},"absoluteRenderBounds":{"x":-634,"y":1815.5626220703125,"width":13.4373779296875,"height":13.4373779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:741","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-629.6251831054688,"y":1827.641845703125,"width":1.2499899864196777,"height":2.6081831455230713},"absoluteRenderBounds":{"x":-629.6251831054688,"y":1827.641845703125,"width":1.25,"height":2.608154296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:742","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-635.25,"y":1827.125,"width":3.1249752044677734,"height":3.1249752044677734},"absoluteRenderBounds":{"x":-635.25,"y":1827.125,"width":3.125,"height":3.125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-639,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:743","name":"Rectangle 80","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:744","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:745","name":"Group 20","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:746","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-592.125,"y":1819.0001220703125,"width":1.2499899864196777,"height":3.8570001125335693},"absoluteRenderBounds":{"x":-592.125,"y":1819.0001220703125,"width":1.25,"height":3.8570556640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:747","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-599,"y":1819.0001220703125,"width":2.4999799728393555,"height":14.999881744384766},"absoluteRenderBounds":{"x":-599,"y":1819.0001220703125,"width":2.5,"height":14.9998779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:748","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-589.6251831054688,"y":1819.0001220703125,"width":1.2499899864196777,"height":1.3570201396942139},"absoluteRenderBounds":{"x":-589.6251831054688,"y":1819.0001220703125,"width":1.25,"height":1.3570556640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:749","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-582.4376831054688,"y":1814,"width":3.4376325607299805,"height":3.436061382293701},"absoluteRenderBounds":{"x":-582.4376831054688,"y":1814,"width":3.4376220703125,"height":3.43603515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:750","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-595.25,"y":1819.0001220703125,"width":1.8749852180480957,"height":6.981975078582764},"absoluteRenderBounds":{"x":-595.25,"y":1819.0001220703125,"width":1.875,"height":6.98193359375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:751","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-584.0001831054688,"y":1822.0125732421875,"width":1.2499899864196777,"height":8.237434387207031},"absoluteRenderBounds":{"x":-584.0001831054688,"y":1822.0125732421875,"width":1.25,"height":8.2374267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:752","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-587.125,"y":1824.5145263671875,"width":1.8749852180480957,"height":5.735499382019043},"absoluteRenderBounds":{"x":-587.125,"y":1824.5145263671875,"width":1.875,"height":5.7354736328125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:753","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-581.5001831054688,"y":1819.0001220703125,"width":2.4999799728393555,"height":14.999881744384766},"absoluteRenderBounds":{"x":-581.5001831054688,"y":1819.0001220703125,"width":2.5,"height":14.9998779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:754","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-594,"y":1815.5626220703125,"width":13.437392234802246,"height":13.437392234802246},"absoluteRenderBounds":{"x":-594,"y":1815.5626220703125,"width":13.4373779296875,"height":13.4373779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:755","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-589.6251831054688,"y":1827.641845703125,"width":1.2499899864196777,"height":2.6081831455230713},"absoluteRenderBounds":{"x":-589.6251831054688,"y":1827.641845703125,"width":1.25,"height":2.608154296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:756","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-595.25,"y":1827.125,"width":3.1249752044677734,"height":3.1249752044677734},"absoluteRenderBounds":{"x":-595.25,"y":1827.125,"width":3.125,"height":3.125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-599,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:757","name":"Rectangle 80","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:758","name":"PDF Direct","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:759","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:760","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-639,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:761","name":"Rectangle 81","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:762","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:763","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-599,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:764","name":"Rectangle 81","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:765","name":"Print Station","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:766","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:767","name":"Group 21","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:768","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-633.0625,"y":1579.6265869140625,"width":6.875,"height":1.25},"absoluteRenderBounds":{"x":-633.0625,"y":1579.6265869140625,"width":6.875,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:769","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-633.0625,"y":1577.7515869140625,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-633.0625,"y":1577.7515869140625,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:770","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-633.0625,"y":1575.8765869140625,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-633.0625,"y":1575.8765869140625,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:771","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-639,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-639,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:772","name":"Rectangle 82","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:773","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:774","name":"Group 21","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:775","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-593.0625,"y":1579.6265869140625,"width":6.875,"height":1.25},"absoluteRenderBounds":{"x":-593.0625,"y":1579.6265869140625,"width":6.875,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:776","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-593.0625,"y":1577.7515869140625,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-593.0625,"y":1577.7515869140625,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:777","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-593.0625,"y":1575.8765869140625,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-593.0625,"y":1575.8765869140625,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:778","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-599,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-599,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:779","name":"Rectangle 82","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:780","name":"Printer Profile Manager","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:781","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:782","name":"Group 22","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:783","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2069,"y":1462.75,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-2069,"y":1462.75,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:784","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2079,"y":1454,"width":7.500000476837158,"height":19.999980926513672},"absoluteRenderBounds":{"x":-2079,"y":1454,"width":7.5,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:785","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2070.875,"y":1454,"width":11.875,"height":19.999980926513672},"absoluteRenderBounds":{"x":-2070.875,"y":1454,"width":11.875,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:786","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2066.34375,"y":1467.59375,"width":2.8125,"height":2.8125},"absoluteRenderBounds":{"x":-2066.34375,"y":1467.59375,"width":2.8125,"height":2.8125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2079,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-2079,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:787","name":"Rectangle 83","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:788","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:789","name":"Group 22","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:790","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2029,"y":1462.75,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-2029,"y":1462.75,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:791","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2039,"y":1454,"width":7.500000476837158,"height":19.999980926513672},"absoluteRenderBounds":{"x":-2039,"y":1454,"width":7.5,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:792","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2030.875,"y":1454,"width":11.875,"height":19.999980926513672},"absoluteRenderBounds":{"x":-2030.875,"y":1454,"width":11.875,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:793","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2026.34375,"y":1467.59375,"width":2.8125,"height":2.8125},"absoluteRenderBounds":{"x":-2026.34375,"y":1467.59375,"width":2.8125,"height":2.8125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2039,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-2039,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:794","name":"Rectangle 83","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:795","name":"Zebra Setup Utility","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:796","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:797","name":"Group 23","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:798","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1912.2763671875,"y":1466.3695068359375,"width":7.218367099761963,"height":2.9128870964050293},"absoluteRenderBounds":{"x":-1912.2763671875,"y":1466.3695068359375,"width":7.2183837890625,"height":2.912841796875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:799","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1912.4505615234375,"y":1469.3909912109375,"width":7.826626777648926,"height":4.608960151672363},"absoluteRenderBounds":{"x":-1912.4505615234375,"y":1469.3909912109375,"width":7.82666015625,"height":4.6090087890625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:800","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1914.636962890625,"y":1462.326171875,"width":1.2363303899765015,"height":1.0824307203292847},"absoluteRenderBounds":{"x":-1914.636962890625,"y":1462.326171875,"width":1.236328125,"height":1.0823974609375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:801","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1916.28759765625,"y":1462.3250732421875,"width":1.1867201328277588,"height":1.0835849046707153},"absoluteRenderBounds":{"x":-1916.28759765625,"y":1462.3250732421875,"width":1.186767578125,"height":1.0836181640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:802","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1912.857177734375,"y":1462.326171875,"width":1.2019550800323486,"height":1.0824215412139893},"absoluteRenderBounds":{"x":-1912.857177734375,"y":1462.326171875,"width":1.201904296875,"height":1.0823974609375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:803","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1918,"y":1460.6304931640625,"width":9.494367599487305,"height":11.586734771728516},"absoluteRenderBounds":{"x":-1918,"y":1460.6304931640625,"width":9.494384765625,"height":11.5867919921875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:804","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1905.2904052734375,"y":1463.3980712890625,"width":2.476001501083374,"height":8.8191499710083},"absoluteRenderBounds":{"x":-1905.2904052734375,"y":1463.3980712890625,"width":2.4759521484375,"height":8.819091796875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:805","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1909.145751953125,"y":1454,"width":9.2175874710083,"height":9.217195510864258},"absoluteRenderBounds":{"x":-1909.145751953125,"y":1454,"width":9.217529296875,"height":9.2171630859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1918,"y":1454,"width":18.071775436401367,"height":20.000001907348633},"absoluteRenderBounds":{"x":-1918,"y":1454,"width":18.07177734375,"height":20.000001907348633},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:806","name":"Rectangle 84","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:807","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:808","name":"Group 23","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:809","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1872.2763671875,"y":1466.3695068359375,"width":7.218367099761963,"height":2.9128870964050293},"absoluteRenderBounds":{"x":-1872.2763671875,"y":1466.3695068359375,"width":7.2183837890625,"height":2.912841796875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:810","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1872.4505615234375,"y":1469.3909912109375,"width":7.826626777648926,"height":4.608960151672363},"absoluteRenderBounds":{"x":-1872.4505615234375,"y":1469.3909912109375,"width":7.82666015625,"height":4.6090087890625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:811","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1874.636962890625,"y":1462.326171875,"width":1.2363303899765015,"height":1.0824307203292847},"absoluteRenderBounds":{"x":-1874.636962890625,"y":1462.326171875,"width":1.236328125,"height":1.0823974609375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:812","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1876.28759765625,"y":1462.3250732421875,"width":1.1867201328277588,"height":1.0835849046707153},"absoluteRenderBounds":{"x":-1876.28759765625,"y":1462.3250732421875,"width":1.186767578125,"height":1.0836181640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:813","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1872.857177734375,"y":1462.326171875,"width":1.2019550800323486,"height":1.0824215412139893},"absoluteRenderBounds":{"x":-1872.857177734375,"y":1462.326171875,"width":1.201904296875,"height":1.0823974609375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:814","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1878,"y":1460.6304931640625,"width":9.494367599487305,"height":11.586734771728516},"absoluteRenderBounds":{"x":-1878,"y":1460.6304931640625,"width":9.494384765625,"height":11.5867919921875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:815","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1865.2904052734375,"y":1463.3980712890625,"width":2.476001501083374,"height":8.8191499710083},"absoluteRenderBounds":{"x":-1865.2904052734375,"y":1463.3980712890625,"width":2.4759521484375,"height":8.819091796875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:816","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1869.145751953125,"y":1454,"width":9.2175874710083,"height":9.217195510864258},"absoluteRenderBounds":{"x":-1869.145751953125,"y":1454,"width":9.217529296875,"height":9.2171630859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1878,"y":1454,"width":18.071775436401367,"height":20.000001907348633},"absoluteRenderBounds":{"x":-1878,"y":1454,"width":18.07177734375,"height":20.000001907348633},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:817","name":"Rectangle 84","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:818","name":"Bluetooth Management","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:819","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:820","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1759,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-1759,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:821","name":"Rectangle 85","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:822","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:823","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1719,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-1719,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:824","name":"Rectangle 85","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:825","name":"Zebra OneCare","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:826","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:827","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:828","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":1458,"width":20,"height":13},"absoluteRenderBounds":{"x":-1599,"y":1458,"width":20,"height":13},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:829","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:830","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:831","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":1458,"width":20,"height":13},"absoluteRenderBounds":{"x":-1559,"y":1458,"width":20,"height":13},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:832","name":"Visibility Services","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:833","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:834","name":"Group 24","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:835","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1458.2183837890625,"width":20,"height":15.78166389465332},"absoluteRenderBounds":{"x":-1439,"y":1458.2183837890625,"width":20,"height":15.7816162109375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:836","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1437.7501220703125,"y":1454,"width":17.502717971801758,"height":11.508249282836914},"absoluteRenderBounds":{"x":-1437.7501220703125,"y":1454,"width":17.502685546875,"height":11.50830078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1439,"y":1454,"width":20,"height":19.99999237060547},"absoluteRenderBounds":{"x":-1439,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:837","name":"Rectangle 87","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:838","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:839","name":"Group 24","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:840","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1458.2183837890625,"width":20,"height":15.78166389465332},"absoluteRenderBounds":{"x":-1399,"y":1458.2183837890625,"width":20,"height":15.7816162109375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:841","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1397.7501220703125,"y":1454,"width":17.502717971801758,"height":11.508249282836914},"absoluteRenderBounds":{"x":-1397.7501220703125,"y":1454,"width":17.502685546875,"height":11.50830078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1399,"y":1454,"width":20,"height":19.99999237060547},"absoluteRenderBounds":{"x":-1399,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:842","name":"Rectangle 87","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:843","name":"Print Secure","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:844","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:845","name":"Group 25","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:846","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1270.2498779296875,"y":1457,"width":11.250019073486328,"height":15},"absoluteRenderBounds":{"x":-1270.2498779296875,"y":1457,"width":11.25,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:847","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1279,"y":1457,"width":5.625007152557373,"height":15},"absoluteRenderBounds":{"x":-1279,"y":1457,"width":5.625,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:848","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1266.8125,"y":1459.500244140625,"width":2.8125035762786865,"height":3.7497923374176025},"absoluteRenderBounds":{"x":-1266.8125,"y":1459.500244140625,"width":2.8125,"height":3.749755859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:849","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1272.90625,"y":1457,"width":5.783603191375732,"height":15},"absoluteRenderBounds":{"x":-1272.90625,"y":1457,"width":5.7835693359375,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1279,"y":1457,"width":20.00012969970703,"height":15},"absoluteRenderBounds":{"x":-1279,"y":1457,"width":20.00012969970703,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:850","name":"Rectangle 88","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:851","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:852","name":"Group 25","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:853","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1230.2498779296875,"y":1457,"width":11.250019073486328,"height":15},"absoluteRenderBounds":{"x":-1230.2498779296875,"y":1457,"width":11.25,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:854","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1239,"y":1457,"width":5.625007152557373,"height":15},"absoluteRenderBounds":{"x":-1239,"y":1457,"width":5.625,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:855","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1226.8125,"y":1459.500244140625,"width":2.8125035762786865,"height":3.7497923374176025},"absoluteRenderBounds":{"x":-1226.8125,"y":1459.500244140625,"width":2.8125,"height":3.749755859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:856","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1232.90625,"y":1457,"width":5.783603191375732,"height":15},"absoluteRenderBounds":{"x":-1232.90625,"y":1457,"width":5.7835693359375,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1239,"y":1457,"width":20.00012969970703,"height":15},"absoluteRenderBounds":{"x":-1239,"y":1457,"width":20.00012969970703,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:857","name":"Rectangle 88","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:858","name":"Design Tools","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:859","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:860","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-1119,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:861","name":"Rectangle 89","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:862","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:863","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-1079,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:864","name":"Rectangle 89","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2201,"y":996,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-2201,"y":996,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"exportSettings":[],"effects":[]},{"id":"1335:8","name":"DO NOT EDIT","type":"TEXT","scrollBehavior":"SCROLLS","rotation":2.9301064068370644,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-3359.0000102636695,"y":-52,"width":6950.692182948143,"height":1952.0269136510833},"absoluteRenderBounds":{"x":-1296.314453125,"y":-104.04297637939453,"width":4824.23779296875,"height":1574.447998046875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","exportSettings":[],"effects":[],"characters":"DO NOT EDIT","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"paragraphSpacing":400,"fontSize":800,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":400,"lineHeightPercent":38.46154022216797,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"layoutVersion":4,"characterStyleOverrides":[201,200,199,198,197,196,199,195,194,193,192],"styleOverrideTable":{"192":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10392309725284576,"g":0.5164550542831421,"b":0.0007901493809185922,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"193":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.01982421800494194,"b":0.9019825458526611,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"194":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0,"b":0,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"195":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.8528879284858704,"b":0.08055012673139572,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"196":{"paragraphSpacing":400,"fontSize":800,"letterSpacing":10,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.7913957834243774,"g":0.45104166865348816,"b":1,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"197":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.2540266215801239,"g":0.8491048216819763,"b":0.3135344982147217,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"198":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5354252457618713,"g":0.24530257284641266,"b":0.763378918170929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"199":{"fontSize":800},"200":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.9333333373069763,"g":0.04601345583796501,"b":0.04601345583796501,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"201":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.6368045806884766,"g":0.40883100032806396,"b":0.926953136920929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"}},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"1335:9","name":"DO NOT EDIT","type":"TEXT","scrollBehavior":"SCROLLS","rotation":0.04331811397151529,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2200.9999592026666,"y":1364,"width":5053.334883023732,"height":725.9568458990998},"absoluteRenderBounds":{"x":-2132.318603515625,"y":1299.0430908203125,"width":4830.6630859375,"height":785.3602294921875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","exportSettings":[],"effects":[],"characters":"DO NOT EDIT","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"paragraphSpacing":400,"fontSize":800,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":400,"lineHeightPercent":38.46154022216797,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"layoutVersion":4,"characterStyleOverrides":[201,200,199,198,197,196,199,195,194,193,192],"styleOverrideTable":{"192":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10392309725284576,"g":0.5164550542831421,"b":0.0007901493809185922,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"193":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.01982421800494194,"b":0.9019825458526611,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"194":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0,"b":0,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"195":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.8528879284858704,"b":0.08055012673139572,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"196":{"paragraphSpacing":400,"fontSize":800,"letterSpacing":10,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.7913957834243774,"g":0.45104166865348816,"b":1,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"197":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.2540266215801239,"g":0.8491048216819763,"b":0.3135344982147217,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"198":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5354252457618713,"g":0.24530257284641266,"b":0.763378918170929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"199":{"fontSize":800},"200":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.9333333373069763,"g":0.04601345583796501,"b":0.04601345583796501,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"201":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.6368045806884766,"g":0.40883100032806396,"b":0.926953136920929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"}},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"1335:11","name":"DO NOT EDIT","type":"TEXT","scrollBehavior":"SCROLLS","rotation":-0.047863896407128396,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2153,"y":-605.9999900593266,"width":5054.599931079487,"height":748.7204790378983},"absoluteRenderBounds":{"x":-2087.5322265625,"y":-666.4064331054688,"width":4832.2890625,"height":807.083740234375},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","exportSettings":[],"effects":[],"characters":"DO NOT EDIT","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"paragraphSpacing":400,"fontSize":800,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":400,"lineHeightPercent":38.46154022216797,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"layoutVersion":4,"characterStyleOverrides":[201,200,199,198,197,196,199,195,194,193,192],"styleOverrideTable":{"192":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10392309725284576,"g":0.5164550542831421,"b":0.0007901493809185922,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"193":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.01982421800494194,"b":0.9019825458526611,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"194":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0,"b":0,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"195":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.8528879284858704,"b":0.08055012673139572,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"196":{"paragraphSpacing":400,"fontSize":800,"letterSpacing":10,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.7913957834243774,"g":0.45104166865348816,"b":1,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"197":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.2540266215801239,"g":0.8491048216819763,"b":0.3135344982147217,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"198":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5354252457618713,"g":0.24530257284641266,"b":0.763378918170929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"199":{"fontSize":800},"200":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.9333333373069763,"g":0.04601345583796501,"b":0.04601345583796501,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"201":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.6368045806884766,"g":0.40883100032806396,"b":0.926953136920929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"}},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"1335:10","name":"DO NOT EDIT","type":"TEXT","scrollBehavior":"SCROLLS","rotation":0.02344490640741333,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-4305.0001333951595,"y":25,"width":5046.578444040607,"height":626.2690572675228},"absoluteRenderBounds":{"x":-4236.24853515625,"y":-41.36850357055664,"width":4822.38134765625,"height":690.2047729492188},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","exportSettings":[],"effects":[],"characters":"DO NOT EDIT","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"paragraphSpacing":400,"fontSize":800,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":400,"lineHeightPercent":38.46154022216797,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"layoutVersion":4,"characterStyleOverrides":[201,200,199,198,197,196,199,195,194,193,192],"styleOverrideTable":{"192":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10392309725284576,"g":0.5164550542831421,"b":0.0007901493809185922,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"193":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.01982421800494194,"b":0.9019825458526611,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"194":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0,"b":0,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"195":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.8528879284858704,"b":0.08055012673139572,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"196":{"paragraphSpacing":400,"fontSize":800,"letterSpacing":10,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.7913957834243774,"g":0.45104166865348816,"b":1,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"197":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.2540266215801239,"g":0.8491048216819763,"b":0.3135344982147217,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"198":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5354252457618713,"g":0.24530257284641266,"b":0.763378918170929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"199":{"fontSize":800},"200":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.9333333373069763,"g":0.04601345583796501,"b":0.04601345583796501,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"201":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.6368045806884766,"g":0.40883100032806396,"b":0.926953136920929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"}},"lineTypes":["NONE"],"lineIndentations":[0]}],"backgroundColor":{"r":0.9607843160629272,"g":0.9607843160629272,"b":0.9607843160629272,"a":1},"prototypeStartNodeID":null,"flowStartingPoints":[],"prototypeDevice":{"type":"NONE","rotation":"NONE"},"exportSettings":[]} \ No newline at end of file diff --git a/test/data/index.ts b/test/data/index.ts index 2740df31..97f50dbb 100644 --- a/test/data/index.ts +++ b/test/data/index.ts @@ -1,10 +1,11 @@ import { GenerateFontResult, IconManifest, ImageManifest } from "../../scripts/types/customTypes.js"; import { readFileSync } from "fs"; import { ComponentSets, DocumentResponse, FigmaNode } from "../../scripts/types/figmaTypes.js"; +import { extractCategoryNames } from "../../scripts/utils/figmaUtils.js"; export const outputDir = "./test/outputs"; -export const figmaDoc: DocumentResponse = JSON.parse(readFileSync("./test/data/figmaDoc.json").toString()); +export const figmaDoc: DocumentResponse = JSON.parse(readFileSync("./test/data/documentResponse.json").toString()); export const iconPage: FigmaNode = JSON.parse(readFileSync("./test/data/iconsPage.json").toString()); export const categoryNodes: FigmaNode[] = JSON.parse(readFileSync("./test/data/categoryNodes.json").toString()); export const singleCategoryNode: FigmaNode = JSON.parse(readFileSync("./test/data/singleCategoryNode.json").toString()); @@ -20,7 +21,7 @@ export const allImageFiles: ImageManifest = new Map( Object.entries(JSON.parse(readFileSync("./test/data/allImageFiles.json").toString())) ); export const hash = readFileSync("./test/data/hash.txt").toString(); -export const categoryNames = categoryNodes.map((category) => category.name.toLowerCase().replace(`\g `, "_")); +export const categoryNames = extractCategoryNames(categoryNodes); export const generatedFontDefinitions: GenerateFontResult = JSON.parse( readFileSync("./test/data/generatedFontResponse.json").toString() ); diff --git a/test/data/manifest.json b/test/data/manifest.json index 701a2362..3382a82a 100644 --- a/test/data/manifest.json +++ b/test/data/manifest.json @@ -1 +1 @@ -{"176:5662":{"name":"Add","searchTerms":["Plus","add","create","request"],"roundPath":"./test/outputs/test-figma/icons/content/add_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/add_sharp.svg","category":"content","roundId":"176:5663","sharpId":"176:5666"},"176:5669":{"name":"Sort","searchTerms":["sort","reorder"],"roundPath":"./test/outputs/test-figma/icons/content/sort_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/sort_sharp.svg","category":"content","roundId":"176:5670","sharpId":"176:5673"},"176:5676":{"name":"Content","searchTerms":["duplicate","copy","clipboard","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/content/content_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/content_sharp.svg","category":"content","roundId":"176:5677","sharpId":"176:5680"},"176:5683":{"name":"Copy File","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/content/copy_file_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/copy_file_sharp.svg","category":"content","roundId":"176:5684","sharpId":"176:5687"},"176:5690":{"name":"Remove Circle Outline","searchTerms":["Minus"],"roundPath":"./test/outputs/test-figma/icons/content/remove_circle_outline_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/remove_circle_outline_sharp.svg","category":"content","roundId":"176:5691","sharpId":"176:5694"},"176:5697":{"name":"Add Circle Outline","searchTerms":["Plus"],"roundPath":"./test/outputs/test-figma/icons/content/add_circle_outline_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/add_circle_outline_sharp.svg","category":"content","roundId":"176:5698","sharpId":"176:5701"},"176:5704":{"name":"Remove Circle","searchTerms":["Minus","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/content/remove_circle_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/remove_circle_sharp.svg","category":"content","roundId":"176:5705","sharpId":"176:5708"},"176:5711":{"name":"Block","searchTerms":["unclaim","cancel","do not","DNE","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/content/block_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/block_sharp.svg","category":"content","roundId":"176:5712","sharpId":"176:5715"},"176:5718":{"name":"Add Circle","searchTerms":["Plus"],"roundPath":"./test/outputs/test-figma/icons/content/add_circle_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/add_circle_sharp.svg","category":"content","roundId":"176:5719","sharpId":"176:5722"},"176:5725":{"name":"Remove","searchTerms":["Minus","remove","delete","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/content/remove_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/remove_sharp.svg","category":"content","roundId":"176:5726","sharpId":"176:5729"},"176:5732":{"name":"Android","searchTerms":["OS"],"roundPath":"./test/outputs/test-figma/icons/content/android_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/android_sharp.svg","category":"content","roundId":"176:5733","sharpId":"176:5736"},"176:5739":{"name":"Add Box","searchTerms":["Plus"],"roundPath":"./test/outputs/test-figma/icons/content/add_box_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/add_box_sharp.svg","category":"content","roundId":"176:5740","sharpId":"176:5743"},"176:5746":{"name":"Remove Box","searchTerms":["Minus"],"roundPath":"./test/outputs/test-figma/icons/content/remove_box_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/remove_box_sharp.svg","category":"content","roundId":"176:5747","sharpId":"176:5750"},"176:5753":{"name":"Push Pin","searchTerms":["pin","save","pushpin","mark","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/content/push_pin_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/push_pin_sharp.svg","category":"content","roundId":"176:5754","sharpId":"176:5757"},"176:5760":{"name":"Send","searchTerms":["chat","message","communication","send","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/content/send_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/send_sharp.svg","category":"content","roundId":"176:5761","sharpId":"176:5764"},"176:5767":{"name":"Backspace","searchTerms":["Delete","clear","remove","backspace","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/content/backspace_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/backspace_sharp.svg","category":"content","roundId":"176:5768","sharpId":"176:5771"},"176:5774":{"name":"Flag","searchTerms":["flag","mark","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/content/flag_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/flag_sharp.svg","category":"content","roundId":"176:5775","sharpId":"176:5778"},"176:5781":{"name":"Save","searchTerms":["file","save"],"roundPath":"./test/outputs/test-figma/icons/content/save_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/save_sharp.svg","category":"content","roundId":"176:5782","sharpId":"176:5785"},"176:5788":{"name":"Reply","searchTerms":["email","e-mail","envelope","message","reply","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/content/reply_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/reply_sharp.svg","category":"content","roundId":"176:5789","sharpId":"176:5792"},"176:5795":{"name":"Redo","searchTerms":["redo","edit","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/content/redo_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/redo_sharp.svg","category":"content","roundId":"176:5796","sharpId":"176:5799"},"176:5802":{"name":"Save Alt","searchTerms":["save","file","import","download","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/content/save_alt_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/save_alt_sharp.svg","category":"content","roundId":"176:5803","sharpId":"176:5806"},"176:5809":{"name":"Undo","searchTerms":["undo","edit","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/content/undo_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/undo_sharp.svg","category":"content","roundId":"176:5810","sharpId":"176:5813"},"176:5816":{"name":"Chart Pie","searchTerms":["report","analytics","chart","pie chart","pie-chart","piechart"],"roundPath":"./test/outputs/test-figma/icons/content/chart_pie_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/chart_pie_sharp.svg","category":"content","roundId":"176:5820","sharpId":"176:5817"},"176:5822":{"name":"Email","searchTerms":["Mail","@","email","e-mail","envelope","message","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/content/email_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/email_sharp.svg","category":"content","roundId":"176:5823","sharpId":"176:5826"},"176:5829":{"name":"Email Outline","searchTerms":["Mail","@","email","e-mail","envelope","message","Workcloud","WC","outline"],"roundPath":"./test/outputs/test-figma/icons/content/email_outline_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/email_outline_sharp.svg","category":"content","roundId":"176:5830","sharpId":"176:5833"},"176:5839":{"name":"Scanner","searchTerms":["mobile"],"roundPath":"./test/outputs/test-figma/icons/hardware/scanner_round.svg","sharpPath":"./test/outputs/test-figma/icons/hardware/scanner_sharp.svg","category":"hardware","roundId":"176:5840","sharpId":"176:5843"},"176:5846":{"name":"Printer","searchTerms":["print","printer","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/hardware/printer_round.svg","sharpPath":"./test/outputs/test-figma/icons/hardware/printer_sharp.svg","category":"hardware","roundId":"176:5847","sharpId":"176:5850"},"176:5853":{"name":"Cast","searchTerms":["Chrome"],"roundPath":"./test/outputs/test-figma/icons/hardware/cast_round.svg","sharpPath":"./test/outputs/test-figma/icons/hardware/cast_sharp.svg","category":"hardware","roundId":"176:5854","sharpId":"176:5857"},"176:5860":{"name":"Cast Connected","searchTerms":["Chrome"],"roundPath":"./test/outputs/test-figma/icons/hardware/cast_connected_round.svg","sharpPath":"./test/outputs/test-figma/icons/hardware/cast_connected_sharp.svg","category":"hardware","roundId":"176:5861","sharpId":"176:5864"},"176:5867":{"name":"Desktop","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/hardware/desktop_round.svg","sharpPath":"./test/outputs/test-figma/icons/hardware/desktop_sharp.svg","category":"hardware","roundId":"176:5868","sharpId":"176:5871"},"176:5874":{"name":"Devices Ecosystem","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/hardware/devices_ecosystem_round.svg","sharpPath":"./test/outputs/test-figma/icons/hardware/devices_ecosystem_sharp.svg","category":"hardware","roundId":"176:5875","sharpId":"176:5878"},"176:5881":{"name":"Device Settings","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/hardware/device_settings_round.svg","sharpPath":"./test/outputs/test-figma/icons/hardware/device_settings_sharp.svg","category":"hardware","roundId":"176:5882","sharpId":"176:5885"},"176:5888":{"name":"Headphones","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/hardware/headphones_round.svg","sharpPath":"./test/outputs/test-figma/icons/hardware/headphones_sharp.svg","category":"hardware","roundId":"176:5889","sharpId":"176:5892"},"176:5895":{"name":"Keyboard","searchTerms":["keyboard","keypad","type","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/hardware/keyboard_round.svg","sharpPath":"./test/outputs/test-figma/icons/hardware/keyboard_sharp.svg","category":"hardware","roundId":"176:5896","sharpId":"176:5899"},"176:5902":{"name":"Laptop","searchTerms":["Computer"],"roundPath":"./test/outputs/test-figma/icons/hardware/laptop_round.svg","sharpPath":"./test/outputs/test-figma/icons/hardware/laptop_sharp.svg","category":"hardware","roundId":"176:5903","sharpId":"176:5906"},"176:5909":{"name":"Memory","searchTerms":["Processor","Microprocessor"],"roundPath":"./test/outputs/test-figma/icons/hardware/memory_round.svg","sharpPath":"./test/outputs/test-figma/icons/hardware/memory_sharp.svg","category":"hardware","roundId":"176:5910","sharpId":"176:5913"},"176:5916":{"name":"Monitor","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/hardware/monitor_round.svg","sharpPath":"./test/outputs/test-figma/icons/hardware/monitor_sharp.svg","category":"hardware","roundId":"176:5917","sharpId":"176:5920"},"176:5923":{"name":"Phone Android","searchTerms":["Mobile"],"roundPath":"./test/outputs/test-figma/icons/hardware/phone_android_round.svg","sharpPath":"./test/outputs/test-figma/icons/hardware/phone_android_sharp.svg","category":"hardware","roundId":"176:5924","sharpId":"176:5927"},"176:5930":{"name":"Phone iPhone","searchTerms":["Mobile"],"roundPath":"./test/outputs/test-figma/icons/hardware/phone_iphone_round.svg","sharpPath":"./test/outputs/test-figma/icons/hardware/phone_iphone_sharp.svg","category":"hardware","roundId":"176:5931","sharpId":"176:5934"},"176:5937":{"name":"Phonelink","searchTerms":["Connected"],"roundPath":"./test/outputs/test-figma/icons/hardware/phonelink_round.svg","sharpPath":"./test/outputs/test-figma/icons/hardware/phonelink_sharp.svg","category":"hardware","roundId":"176:5938","sharpId":"176:5941"},"176:5944":{"name":"Security","searchTerms":["Protect","Protection","Shield"],"roundPath":"./test/outputs/test-figma/icons/hardware/security_round.svg","sharpPath":"./test/outputs/test-figma/icons/hardware/security_sharp.svg","category":"hardware","roundId":"176:5945","sharpId":"176:5948"},"176:5951":{"name":"Video Play","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/hardware/video_play_round.svg","sharpPath":"./test/outputs/test-figma/icons/hardware/video_play_sharp.svg","category":"hardware","roundId":"176:5952","sharpId":"176:5955"},"176:5958":{"name":"Smart Phone","searchTerms":["Mobile","phone","device","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/hardware/smart_phone_round.svg","sharpPath":"./test/outputs/test-figma/icons/hardware/smart_phone_sharp.svg","category":"hardware","roundId":"176:5959","sharpId":"176:5962"},"176:5965":{"name":"Speaker","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/hardware/speaker_round.svg","sharpPath":"./test/outputs/test-figma/icons/hardware/speaker_sharp.svg","category":"hardware","roundId":"176:5966","sharpId":"176:5969"},"176:5972":{"name":"Tablet","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/hardware/tablet_round.svg","sharpPath":"./test/outputs/test-figma/icons/hardware/tablet_sharp.svg","category":"hardware","roundId":"176:5973","sharpId":"176:5976"},"176:5979":{"name":"Tablet Mac","searchTerms":["iPad"],"roundPath":"./test/outputs/test-figma/icons/hardware/tablet_mac_round.svg","sharpPath":"./test/outputs/test-figma/icons/hardware/tablet_mac_sharp.svg","category":"hardware","roundId":"176:5980","sharpId":"176:5983"},"176:5986":{"name":"TV","searchTerms":["Television"],"roundPath":"./test/outputs/test-figma/icons/hardware/tv_round.svg","sharpPath":"./test/outputs/test-figma/icons/hardware/tv_sharp.svg","category":"hardware","roundId":"176:5987","sharpId":"176:5990"},"176:5993":{"name":"Watch","searchTerms":["Smartwatch"],"roundPath":"./test/outputs/test-figma/icons/hardware/watch_round.svg","sharpPath":"./test/outputs/test-figma/icons/hardware/watch_sharp.svg","category":"hardware","roundId":"176:5994","sharpId":"176:5997"},"176:6003":{"name":"Finished Download","searchTerms":["Complete","Success","Done"],"roundPath":"./test/outputs/test-figma/icons/file/finished_download_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/finished_download_sharp.svg","category":"file","roundId":"176:6004","sharpId":"176:6007"},"176:6010":{"name":"Downloading","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/file/downloading_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/downloading_sharp.svg","category":"file","roundId":"176:6011","sharpId":"176:6014"},"176:6017":{"name":"Cloud","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/file/cloud_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/cloud_sharp.svg","category":"file","roundId":"176:6018","sharpId":"176:6021"},"176:6024":{"name":"Cloud Done","searchTerms":["Check","Check Mark","Mark"],"roundPath":"./test/outputs/test-figma/icons/file/cloud_done_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/cloud_done_sharp.svg","category":"file","roundId":"176:6025","sharpId":"176:6028"},"176:6031":{"name":"Cloud Download","searchTerms":["file","download","cloud","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/file/cloud_download_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/cloud_download_sharp.svg","category":"file","roundId":"176:6032","sharpId":"176:6035"},"176:6038":{"name":"Cloud Outline","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/file/cloud_outline_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/cloud_outline_sharp.svg","category":"file","roundId":"176:6039","sharpId":"176:6042"},"176:6045":{"name":"Cloud Upload","searchTerms":["file","upload","cloud","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/file/cloud_upload_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/cloud_upload_sharp.svg","category":"file","roundId":"176:6046","sharpId":"176:6049"},"176:6052":{"name":"Cloud Off","searchTerms":["Offline"],"roundPath":"./test/outputs/test-figma/icons/file/cloud_off_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/cloud_off_sharp.svg","category":"file","roundId":"176:6053","sharpId":"176:6056"},"176:6059":{"name":"Folder","searchTerms":["folder","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/file/folder_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/folder_sharp.svg","category":"file","roundId":"176:6060","sharpId":"176:6063"},"176:6066":{"name":"Create New Folder","searchTerms":["Add"],"roundPath":"./test/outputs/test-figma/icons/file/create_new_folder_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/create_new_folder_sharp.svg","category":"file","roundId":"176:6067","sharpId":"176:6070"},"176:6073":{"name":"Folder Outline","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/file/folder_outline_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/folder_outline_sharp.svg","category":"file","roundId":"176:6074","sharpId":"176:6077"},"176:6080":{"name":"Shared Folder","searchTerms":["Network","Access"],"roundPath":"./test/outputs/test-figma/icons/file/shared_folder_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/shared_folder_sharp.svg","category":"file","roundId":"176:6081","sharpId":"176:6084"},"176:6087":{"name":"Grid View","searchTerms":["2x2"],"roundPath":"./test/outputs/test-figma/icons/file/grid_view_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/grid_view_sharp.svg","category":"file","roundId":"176:6088","sharpId":"176:6095"},"176:6102":{"name":"Upload File","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/file/upload_file_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/upload_file_sharp.svg","category":"file","roundId":"176:6103","sharpId":"176:6106"},"176:6109":{"name":"JPG Attach","searchTerms":["Type","File"],"roundPath":"./test/outputs/test-figma/icons/file/jpg_attach_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/jpg_attach_sharp.svg","category":"file","roundId":"176:6110","sharpId":"176:6114"},"176:6119":{"name":"PDF Attach","searchTerms":["Type","File"],"roundPath":"./test/outputs/test-figma/icons/file/pdf_attach_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/pdf_attach_sharp.svg","category":"file","roundId":"176:6120","sharpId":"176:6124"},"176:6129":{"name":"PNG Attach","searchTerms":["Type","File"],"roundPath":"./test/outputs/test-figma/icons/file/png_attach_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/png_attach_sharp.svg","category":"file","roundId":"176:6130","sharpId":"176:6134"},"176:6139":{"name":"DOC Attach","searchTerms":["Type","File"],"roundPath":"./test/outputs/test-figma/icons/file/doc_attach_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/doc_attach_sharp.svg","category":"file","roundId":"176:6140","sharpId":"176:6144"},"176:6149":{"name":"PPT Attach","searchTerms":["Type","File"],"roundPath":"./test/outputs/test-figma/icons/file/ppt_attach_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/ppt_attach_sharp.svg","category":"file","roundId":"176:6150","sharpId":"176:6154"},"176:6159":{"name":"Open New Off","searchTerms":["Workcloud","WC","file","do not export","export","open in new","open","launch"],"roundPath":"./test/outputs/test-figma/icons/file/open_new_off_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/open_new_off_sharp.svg","category":"file","roundId":"176:6160","sharpId":"176:6162"},"176:6164":{"name":"Page Height","searchTerms":["Workcloud","WC","page height"],"roundPath":"./test/outputs/test-figma/icons/file/page_height_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/page_height_sharp.svg","category":"file","roundId":"176:6165","sharpId":"176:6167"},"176:6169":{"name":"Page Width","searchTerms":["Workcloud","WC","page height"],"roundPath":"./test/outputs/test-figma/icons/file/page_width_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/page_width_sharp.svg","category":"file","roundId":"176:6170","sharpId":"176:6172"},"176:6174":{"name":"Page Rotate","searchTerms":["Workcloud","WC","page rotate"],"roundPath":"./test/outputs/test-figma/icons/file/page_rotate_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/page_rotate_sharp.svg","category":"file","roundId":"176:6175","sharpId":"176:6177"},"176:6179":{"name":"Save File","searchTerms":["Workcloud","WC","file","save"],"roundPath":"./test/outputs/test-figma/icons/file/save_file_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/save_file_sharp.svg","category":"file","roundId":"176:6180","sharpId":"176:6182"},"176:6184":{"name":"Publish","searchTerms":["Workcloud","WC","file","publish"],"roundPath":"./test/outputs/test-figma/icons/file/publish_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/publish_sharp.svg","category":"file","roundId":"176:6185","sharpId":"176:6187"},"176:6189":{"name":"File","searchTerms":["Workcloud","WC","file","note","paper"],"roundPath":"./test/outputs/test-figma/icons/file/file_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/file_sharp.svg","category":"file","roundId":"176:6190","sharpId":"176:6192"},"176:6194":{"name":"Folder File","searchTerms":["Workcloud","WC","project","folder","file"],"roundPath":"./test/outputs/test-figma/icons/file/folder_file_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/folder_file_sharp.svg","category":"file","roundId":"176:6195","sharpId":"176:6197"},"176:6199":{"name":"Maintenance","searchTerms":["Workcloud","WC","maintenance","repair","hammer","wrench","tools"],"roundPath":"./test/outputs/test-figma/icons/file/maintenance_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/maintenance_sharp.svg","category":"file","roundId":"176:6200","sharpId":"176:6202"}} \ No newline at end of file +{"176:5662":{"name":"Add","searchTerms":["Plus","add","create","request"],"roundPath":"./test/outputs/test-figma/icons/content/add_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/add_sharp.svg","category":"content","roundId":"176:5663","sharpId":"176:5666"},"176:5669":{"name":"Sort","searchTerms":["sort","reorder"],"roundPath":"./test/outputs/test-figma/icons/content/sort_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/sort_sharp.svg","category":"content","roundId":"176:5670","sharpId":"176:5673"},"176:5676":{"name":"Content","searchTerms":["duplicate","copy","clipboard","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/content/content_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/content_sharp.svg","category":"content","roundId":"176:5677","sharpId":"176:5680"},"176:5683":{"name":"Copy File","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/content/copy_file_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/copy_file_sharp.svg","category":"content","roundId":"176:5684","sharpId":"176:5687"},"176:5690":{"name":"Remove Circle Outline","searchTerms":["Minus"],"roundPath":"./test/outputs/test-figma/icons/content/remove_circle_outline_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/remove_circle_outline_sharp.svg","category":"content","roundId":"176:5691","sharpId":"176:5694"},"176:5697":{"name":"Add Circle Outline","searchTerms":["Plus"],"roundPath":"./test/outputs/test-figma/icons/content/add_circle_outline_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/add_circle_outline_sharp.svg","category":"content","roundId":"176:5698","sharpId":"176:5701"},"176:5704":{"name":"Remove Circle","searchTerms":["Minus","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/content/remove_circle_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/remove_circle_sharp.svg","category":"content","roundId":"176:5705","sharpId":"176:5708"},"176:5711":{"name":"Block","searchTerms":["unclaim","cancel","do not","DNE","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/content/block_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/block_sharp.svg","category":"content","roundId":"176:5712","sharpId":"176:5715"},"176:5718":{"name":"Add Circle","searchTerms":["Plus"],"roundPath":"./test/outputs/test-figma/icons/content/add_circle_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/add_circle_sharp.svg","category":"content","roundId":"176:5719","sharpId":"176:5722"},"176:5725":{"name":"Remove","searchTerms":["Minus","remove","delete","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/content/remove_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/remove_sharp.svg","category":"content","roundId":"176:5726","sharpId":"176:5729"},"176:5732":{"name":"Android","searchTerms":["OS"],"roundPath":"./test/outputs/test-figma/icons/content/android_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/android_sharp.svg","category":"content","roundId":"176:5733","sharpId":"176:5736"},"176:5739":{"name":"Add Box","searchTerms":["Plus"],"roundPath":"./test/outputs/test-figma/icons/content/add_box_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/add_box_sharp.svg","category":"content","roundId":"176:5740","sharpId":"176:5743"},"176:5746":{"name":"Remove Box","searchTerms":["Minus"],"roundPath":"./test/outputs/test-figma/icons/content/remove_box_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/remove_box_sharp.svg","category":"content","roundId":"176:5747","sharpId":"176:5750"},"176:5753":{"name":"Push Pin","searchTerms":["pin","save","pushpin","mark","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/content/push_pin_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/push_pin_sharp.svg","category":"content","roundId":"176:5754","sharpId":"176:5757"},"176:5760":{"name":"Send","searchTerms":["chat","message","communication","send","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/content/send_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/send_sharp.svg","category":"content","roundId":"176:5761","sharpId":"176:5764"},"176:5767":{"name":"Backspace","searchTerms":["Delete","clear","remove","backspace","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/content/backspace_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/backspace_sharp.svg","category":"content","roundId":"176:5768","sharpId":"176:5771"},"176:5774":{"name":"Flag","searchTerms":["flag","mark","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/content/flag_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/flag_sharp.svg","category":"content","roundId":"176:5775","sharpId":"176:5778"},"176:5781":{"name":"Save","searchTerms":["file","save"],"roundPath":"./test/outputs/test-figma/icons/content/save_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/save_sharp.svg","category":"content","roundId":"176:5782","sharpId":"176:5785"},"176:5788":{"name":"Reply","searchTerms":["email","e-mail","envelope","message","reply","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/content/reply_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/reply_sharp.svg","category":"content","roundId":"176:5789","sharpId":"176:5792"},"176:5795":{"name":"Redo","searchTerms":["redo","edit","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/content/redo_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/redo_sharp.svg","category":"content","roundId":"176:5796","sharpId":"176:5799"},"176:5802":{"name":"Save Alt","searchTerms":["save","file","import","download","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/content/save_alt_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/save_alt_sharp.svg","category":"content","roundId":"176:5803","sharpId":"176:5806"},"176:5809":{"name":"Undo","searchTerms":["undo","edit","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/content/undo_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/undo_sharp.svg","category":"content","roundId":"176:5810","sharpId":"176:5813"},"176:5816":{"name":"Chart Pie","searchTerms":["report","analytics","chart","pie chart","pie-chart","piechart"],"roundPath":"./test/outputs/test-figma/icons/content/chart_pie_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/chart_pie_sharp.svg","category":"content","roundId":"176:5820","sharpId":"176:5817"},"176:5822":{"name":"Email","searchTerms":["Mail","@","email","e-mail","envelope","message","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/content/email_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/email_sharp.svg","category":"content","roundId":"176:5823","sharpId":"176:5826"},"176:5829":{"name":"Email Outline","searchTerms":["Mail","@","email","e-mail","envelope","message","Workcloud","WC","outline"],"roundPath":"./test/outputs/test-figma/icons/content/email_outline_round.svg","sharpPath":"./test/outputs/test-figma/icons/content/email_outline_sharp.svg","category":"content","roundId":"176:5830","sharpId":"176:5833"},"176:5839":{"name":"Scanner","searchTerms":["mobile"],"roundPath":"./test/outputs/test-figma/icons/hard_ware/scanner_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/scanner_sharp.svg","category":"hard_ware","roundId":"176:5840","sharpId":"176:5843"},"176:5846":{"name":"Printer","searchTerms":["print","printer","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/hard_ware/printer_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/printer_sharp.svg","category":"hard_ware","roundId":"176:5847","sharpId":"176:5850"},"176:5853":{"name":"Cast","searchTerms":["Chrome"],"roundPath":"./test/outputs/test-figma/icons/hard_ware/cast_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/cast_sharp.svg","category":"hard_ware","roundId":"176:5854","sharpId":"176:5857"},"176:5860":{"name":"Cast Connected","searchTerms":["Chrome"],"roundPath":"./test/outputs/test-figma/icons/hard_ware/cast_connected_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/cast_connected_sharp.svg","category":"hard_ware","roundId":"176:5861","sharpId":"176:5864"},"176:5867":{"name":"Desktop","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/hard_ware/desktop_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/desktop_sharp.svg","category":"hard_ware","roundId":"176:5868","sharpId":"176:5871"},"176:5874":{"name":"Devices Ecosystem","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/hard_ware/devices_ecosystem_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/devices_ecosystem_sharp.svg","category":"hard_ware","roundId":"176:5875","sharpId":"176:5878"},"176:5881":{"name":"Device Settings","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/hard_ware/device_settings_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/device_settings_sharp.svg","category":"hard_ware","roundId":"176:5882","sharpId":"176:5885"},"176:5888":{"name":"Headphones","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/hard_ware/headphones_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/headphones_sharp.svg","category":"hard_ware","roundId":"176:5889","sharpId":"176:5892"},"176:5895":{"name":"Keyboard","searchTerms":["keyboard","keypad","type","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/hard_ware/keyboard_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/keyboard_sharp.svg","category":"hard_ware","roundId":"176:5896","sharpId":"176:5899"},"176:5902":{"name":"Laptop","searchTerms":["Computer"],"roundPath":"./test/outputs/test-figma/icons/hard_ware/laptop_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/laptop_sharp.svg","category":"hard_ware","roundId":"176:5903","sharpId":"176:5906"},"176:5909":{"name":"Memory","searchTerms":["Processor","Microprocessor"],"roundPath":"./test/outputs/test-figma/icons/hard_ware/memory_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/memory_sharp.svg","category":"hard_ware","roundId":"176:5910","sharpId":"176:5913"},"176:5916":{"name":"Monitor","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/hard_ware/monitor_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/monitor_sharp.svg","category":"hard_ware","roundId":"176:5917","sharpId":"176:5920"},"176:5923":{"name":"Phone Android","searchTerms":["Mobile"],"roundPath":"./test/outputs/test-figma/icons/hard_ware/phone_android_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/phone_android_sharp.svg","category":"hard_ware","roundId":"176:5924","sharpId":"176:5927"},"176:5930":{"name":"Phone iPhone","searchTerms":["Mobile"],"roundPath":"./test/outputs/test-figma/icons/hard_ware/phone_iphone_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/phone_iphone_sharp.svg","category":"hard_ware","roundId":"176:5931","sharpId":"176:5934"},"176:5937":{"name":"Phonelink","searchTerms":["Connected"],"roundPath":"./test/outputs/test-figma/icons/hard_ware/phonelink_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/phonelink_sharp.svg","category":"hard_ware","roundId":"176:5938","sharpId":"176:5941"},"176:5944":{"name":"Security","searchTerms":["Protect","Protection","Shield"],"roundPath":"./test/outputs/test-figma/icons/hard_ware/security_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/security_sharp.svg","category":"hard_ware","roundId":"176:5945","sharpId":"176:5948"},"176:5951":{"name":"Video Play","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/hard_ware/video_play_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/video_play_sharp.svg","category":"hard_ware","roundId":"176:5952","sharpId":"176:5955"},"176:5958":{"name":"Smart Phone","searchTerms":["Mobile","phone","device","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/hard_ware/smart_phone_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/smart_phone_sharp.svg","category":"hard_ware","roundId":"176:5959","sharpId":"176:5962"},"176:5965":{"name":"Speaker","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/hard_ware/speaker_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/speaker_sharp.svg","category":"hard_ware","roundId":"176:5966","sharpId":"176:5969"},"176:5972":{"name":"Tablet","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/hard_ware/tablet_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/tablet_sharp.svg","category":"hard_ware","roundId":"176:5973","sharpId":"176:5976"},"176:5979":{"name":"Tablet Mac","searchTerms":["iPad"],"roundPath":"./test/outputs/test-figma/icons/hard_ware/tablet_mac_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/tablet_mac_sharp.svg","category":"hard_ware","roundId":"176:5980","sharpId":"176:5983"},"176:5986":{"name":"TV","searchTerms":["Television"],"roundPath":"./test/outputs/test-figma/icons/hard_ware/tv_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/tv_sharp.svg","category":"hard_ware","roundId":"176:5987","sharpId":"176:5990"},"176:5993":{"name":"Watch","searchTerms":["Smartwatch"],"roundPath":"./test/outputs/test-figma/icons/hard_ware/watch_round.svg","sharpPath":"./test/outputs/test-figma/icons/hard_ware/watch_sharp.svg","category":"hard_ware","roundId":"176:5994","sharpId":"176:5997"},"176:6003":{"name":"Finished Download","searchTerms":["Complete","Success","Done"],"roundPath":"./test/outputs/test-figma/icons/file/finished_download_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/finished_download_sharp.svg","category":"file","roundId":"176:6004","sharpId":"176:6007"},"176:6010":{"name":"Downloading","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/file/downloading_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/downloading_sharp.svg","category":"file","roundId":"176:6011","sharpId":"176:6014"},"176:6017":{"name":"Cloud","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/file/cloud_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/cloud_sharp.svg","category":"file","roundId":"176:6018","sharpId":"176:6021"},"176:6024":{"name":"Cloud Done","searchTerms":["Check","Check Mark","Mark"],"roundPath":"./test/outputs/test-figma/icons/file/cloud_done_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/cloud_done_sharp.svg","category":"file","roundId":"176:6025","sharpId":"176:6028"},"176:6031":{"name":"Cloud Download","searchTerms":["file","download","cloud","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/file/cloud_download_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/cloud_download_sharp.svg","category":"file","roundId":"176:6032","sharpId":"176:6035"},"176:6038":{"name":"Cloud Outline","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/file/cloud_outline_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/cloud_outline_sharp.svg","category":"file","roundId":"176:6039","sharpId":"176:6042"},"176:6045":{"name":"Cloud Upload","searchTerms":["file","upload","cloud","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/file/cloud_upload_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/cloud_upload_sharp.svg","category":"file","roundId":"176:6046","sharpId":"176:6049"},"176:6052":{"name":"Cloud Off","searchTerms":["Offline"],"roundPath":"./test/outputs/test-figma/icons/file/cloud_off_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/cloud_off_sharp.svg","category":"file","roundId":"176:6053","sharpId":"176:6056"},"176:6059":{"name":"Folder","searchTerms":["folder","Workcloud","WC"],"roundPath":"./test/outputs/test-figma/icons/file/folder_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/folder_sharp.svg","category":"file","roundId":"176:6060","sharpId":"176:6063"},"176:6066":{"name":"Create New Folder","searchTerms":["Add"],"roundPath":"./test/outputs/test-figma/icons/file/create_new_folder_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/create_new_folder_sharp.svg","category":"file","roundId":"176:6067","sharpId":"176:6070"},"176:6073":{"name":"Folder Outline","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/file/folder_outline_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/folder_outline_sharp.svg","category":"file","roundId":"176:6074","sharpId":"176:6077"},"176:6080":{"name":"Shared Folder","searchTerms":["Network","Access"],"roundPath":"./test/outputs/test-figma/icons/file/shared_folder_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/shared_folder_sharp.svg","category":"file","roundId":"176:6081","sharpId":"176:6084"},"176:6087":{"name":"Grid View","searchTerms":["2x2"],"roundPath":"./test/outputs/test-figma/icons/file/grid_view_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/grid_view_sharp.svg","category":"file","roundId":"176:6088","sharpId":"176:6095"},"176:6102":{"name":"Upload File","searchTerms":[""],"roundPath":"./test/outputs/test-figma/icons/file/upload_file_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/upload_file_sharp.svg","category":"file","roundId":"176:6103","sharpId":"176:6106"},"176:6109":{"name":"JPG Attach","searchTerms":["Type","File"],"roundPath":"./test/outputs/test-figma/icons/file/jpg_attach_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/jpg_attach_sharp.svg","category":"file","roundId":"176:6110","sharpId":"176:6114"},"176:6119":{"name":"PDF Attach","searchTerms":["Type","File"],"roundPath":"./test/outputs/test-figma/icons/file/pdf_attach_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/pdf_attach_sharp.svg","category":"file","roundId":"176:6120","sharpId":"176:6124"},"176:6129":{"name":"PNG Attach","searchTerms":["Type","File"],"roundPath":"./test/outputs/test-figma/icons/file/png_attach_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/png_attach_sharp.svg","category":"file","roundId":"176:6130","sharpId":"176:6134"},"176:6139":{"name":"DOC Attach","searchTerms":["Type","File"],"roundPath":"./test/outputs/test-figma/icons/file/doc_attach_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/doc_attach_sharp.svg","category":"file","roundId":"176:6140","sharpId":"176:6144"},"176:6149":{"name":"PPT Attach","searchTerms":["Type","File"],"roundPath":"./test/outputs/test-figma/icons/file/ppt_attach_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/ppt_attach_sharp.svg","category":"file","roundId":"176:6150","sharpId":"176:6154"},"176:6159":{"name":"Open New Off","searchTerms":["Workcloud","WC","file","do not export","export","open in new","open","launch"],"roundPath":"./test/outputs/test-figma/icons/file/open_new_off_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/open_new_off_sharp.svg","category":"file","roundId":"176:6160","sharpId":"176:6162"},"176:6164":{"name":"Page Height","searchTerms":["Workcloud","WC","page height"],"roundPath":"./test/outputs/test-figma/icons/file/page_height_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/page_height_sharp.svg","category":"file","roundId":"176:6165","sharpId":"176:6167"},"176:6169":{"name":"Page Width","searchTerms":["Workcloud","WC","page height"],"roundPath":"./test/outputs/test-figma/icons/file/page_width_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/page_width_sharp.svg","category":"file","roundId":"176:6170","sharpId":"176:6172"},"176:6174":{"name":"Page Rotate","searchTerms":["Workcloud","WC","page rotate"],"roundPath":"./test/outputs/test-figma/icons/file/page_rotate_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/page_rotate_sharp.svg","category":"file","roundId":"176:6175","sharpId":"176:6177"},"176:6179":{"name":"Save File","searchTerms":["Workcloud","WC","file","save"],"roundPath":"./test/outputs/test-figma/icons/file/save_file_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/save_file_sharp.svg","category":"file","roundId":"176:6180","sharpId":"176:6182"},"176:6184":{"name":"Publish","searchTerms":["Workcloud","WC","file","publish"],"roundPath":"./test/outputs/test-figma/icons/file/publish_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/publish_sharp.svg","category":"file","roundId":"176:6185","sharpId":"176:6187"},"176:6189":{"name":"File","searchTerms":["Workcloud","WC","file","note","paper"],"roundPath":"./test/outputs/test-figma/icons/file/file_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/file_sharp.svg","category":"file","roundId":"176:6190","sharpId":"176:6192"},"176:6194":{"name":"Folder File","searchTerms":["Workcloud","WC","project","folder","file"],"roundPath":"./test/outputs/test-figma/icons/file/folder_file_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/folder_file_sharp.svg","category":"file","roundId":"176:6195","sharpId":"176:6197"},"176:6199":{"name":"Maintenance","searchTerms":["Workcloud","WC","maintenance","repair","hammer","wrench","tools"],"roundPath":"./test/outputs/test-figma/icons/file/maintenance_round.svg","sharpPath":"./test/outputs/test-figma/icons/file/maintenance_sharp.svg","category":"file","roundId":"176:6200","sharpId":"176:6202"}} \ No newline at end of file diff --git a/test/data/singleCategoryNode.json b/test/data/singleCategoryNode.json index 6c192246..3fef9f73 100644 --- a/test/data/singleCategoryNode.json +++ b/test/data/singleCategoryNode.json @@ -1,465 +1 @@ -{ - "id": "176:5659", - "name": "Content", - "children": [ - { - "id": "176:5660", - "name": "Content", - "type": "TEXT" - }, - { - "id": "176:5661", - "name": "Line", - "type": "RECTANGLE", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -161, "y": -304, "width": 1552, "height": 1 }, - "absoluteRenderBounds": { "x": -161, "y": -304, "width": 1552, "height": 1 }, - "constraints": { "vertical": "TOP", "horizontal": "CENTER" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.8784313797950745, "g": 0.8901960849761963, "b": 0.9137254953384399, "a": 1 } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:4" }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5662", - "name": "Add", - "type": "COMPONENT_SET", - "children": [ - { - "id": "176:5663", - "name": "Style=Round", - "type": "COMPONENT", - "children": [ - { - "id": "176:5664", - "name": "Bounds", - "type": "VECTOR" - }, - { - "id": "176:5665", - "name": "Vector", - "type": "VECTOR" - } - ] - }, - { - "id": "176:5666", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5667", - "name": "Bounds", - "type": "VECTOR" - }, - { - "id": "176:5668", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": -92, "y": -210, "width": 14, "height": 14 }, - "absoluteRenderBounds": { "x": -92, "y": -210, "width": 14, "height": 14 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.11372549086809158, "g": 0.11764705926179886, "b": 0.13725490868091583, "a": 1 } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ] - } - ] - }, - { - "id": "176:5669", - "name": "Sort", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5670", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5671", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1143, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5672", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { "type": "VARIABLE_ALIAS", "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1144.5, "y": -212, "width": 20.68938636779785, "height": 18 }, - "absoluteRenderBounds": { "x": 1144.5, "y": -212, "width": 20.6893310546875, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.11372549086809158, "g": 0.11764705926179886, "b": 0.13725490868091583, "a": 1 }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null, "2": null, "3": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 1143, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1143, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5673", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5674", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1183, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5675", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "boundVariables": { - "fills": [ - { "type": "VARIABLE_ALIAS", "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" } - ] - }, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 1184.5, "y": -212, "width": 20.68938636779785, "height": 18 }, - "absoluteRenderBounds": { "x": 1184.5, "y": -212, "width": 20.6893310546875, "height": 18 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.11372549086809158, "g": 0.11764705926179886, "b": 0.13725490868091583, "a": 1 }, - "boundVariables": { - "color": { - "type": "VARIABLE_ALIAS", - "id": "VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151" - } - } - } - ], - "fillOverrideTable": { "1": null, "2": null, "3": null }, - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "176:625" }, - "exportSettings": [], - "effects": [], - "rectangleCornerRadii": [0, 0, 0, 0], - "cornerSmoothing": 0 - } - ], - "absoluteBoundingBox": { "x": 1183, "y": -215, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 1183, "y": -215, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 1119, "y": -239, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 1119, "y": -239, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - }, - { - "id": "176:5676", - "name": "Content", - "type": "COMPONENT_SET", - "scrollBehavior": "SCROLLS", - "componentPropertyDefinitions": { - "Style": { "type": "VARIANT", "defaultValue": "Round", "variantOptions": ["Round", "Sharp"] } - }, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5677", - "name": "Style=Round", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "rotation": -1.224648970167536e-16, - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5678", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 663, "y": 24.999999999999996, "width": 24, "height": 24.000000000000004 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5679", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "rotation": 1.224648970167536e-16, - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 665, "y": 26, "width": 19, "height": 22 }, - "absoluteRenderBounds": { "x": 665, "y": 26, "width": 19, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.11372549086809158, "g": 0.11764705926179886, "b": 0.13725490868091583, "a": 1 } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 663, "y": 24.999999999999996, "width": 24, "height": 24.000000000000004 }, - "absoluteRenderBounds": { "x": 663, "y": 24.999999999999996, "width": 24, "height": 24.000000000000004 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5680", - "name": "Style=Sharp", - "type": "COMPONENT", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "children": [ - { - "id": "176:5681", - "name": "Bounds", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 703, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": null, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "exportSettings": [], - "effects": [] - }, - { - "id": "176:5682", - "name": "Vector", - "type": "VECTOR", - "scrollBehavior": "SCROLLS", - "blendMode": "PASS_THROUGH", - "absoluteBoundingBox": { "x": 705, "y": 26, "width": 19, "height": 22 }, - "absoluteRenderBounds": { "x": 705, "y": 26, "width": 19, "height": 22 }, - "constraints": { "vertical": "SCALE", "horizontal": "SCALE" }, - "fills": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.11372549086809158, "g": 0.11764705926179886, "b": 0.13725490868091583, "a": 1 } - } - ], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "styles": { "fill": "1:5" }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 703, "y": 25, "width": 24, "height": 24 }, - "absoluteRenderBounds": { "x": 703, "y": 25, "width": 24, "height": 24 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutAlign": "INHERIT", - "layoutGrow": 0, - "layoutSizingHorizontal": "FIXED", - "layoutSizingVertical": "FIXED", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [], - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "exportSettings": [], - "effects": [] - } - ], - "absoluteBoundingBox": { "x": 639, "y": 1, "width": 112, "height": 72 }, - "absoluteRenderBounds": { "x": 639, "y": 1, "width": 112, "height": 72 }, - "constraints": { "vertical": "TOP", "horizontal": "LEFT" }, - "layoutSizingHorizontal": "HUG", - "layoutSizingVertical": "HUG", - "clipsContent": true, - "background": [], - "fills": [], - "strokes": [ - { - "blendMode": "NORMAL", - "type": "SOLID", - "color": { "r": 0.48235294222831726, "g": 0.3803921639919281, "b": 1, "a": 1 } - } - ], - "cornerRadius": 5, - "cornerSmoothing": 0, - "strokeWeight": 1, - "strokeAlign": "INSIDE", - "backgroundColor": { "r": 0, "g": 0, "b": 0, "a": 0 }, - "layoutMode": "HORIZONTAL", - "itemSpacing": 16, - "paddingLeft": 24, - "paddingRight": 24, - "paddingTop": 24, - "paddingBottom": 24, - "layoutWrap": "NO_WRAP", - "strokeDashes": [10, 5], - "exportSettings": [{ "suffix": "", "format": "SVG", "constraint": { "type": "SCALE", "value": 1 } }], - "effects": [] - } - ] -} +{"id":"176:5659","name":"Content","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5660","name":"Content","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-161,"y":-352,"width":88,"height":32},"absoluteRenderBounds":{"x":-159.67999267578125,"y":-344.0400085449219,"width":85.08937072753906,"height":17.3280029296875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"exportSettings":[],"effects":[],"characters":"Content","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"176:5661","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-161,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":-161,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"exportSettings":[],"effects":[]},{"id":"176:5662","name":"Add","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5663","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5664","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5665","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-132,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-132,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5666","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5667","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5668","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-92,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-92,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-161,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5669","name":"Sort","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5670","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5671","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5672","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1144.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1144.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5673","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5674","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5675","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1184.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1184.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1119,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5676","name":"Content","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5677","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","rotation":-1.224648970167536e-16,"blendMode":"PASS_THROUGH","children":[{"id":"176:5678","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5679","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":1.224648970167536e-16,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":665,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":665,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5680","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5681","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5682","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":705,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":705,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5683","name":"Copy File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5684","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5685","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5686","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":345,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":345,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5687","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5688","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5689","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":385,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":385,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5690","name":"Remove Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5691","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5692","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5693","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":345,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":345,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5694","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5695","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5696","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":385,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":385,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5697","name":"Add Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5698","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5699","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5700","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5701","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5702","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5703","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5704","name":"Remove Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5705","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5706","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5707","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":665,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":665,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5708","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5709","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5710","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":705,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":705,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5711","name":"Block","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5712","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5713","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5714","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5715","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5716","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5717","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5718","name":"Add Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5719","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5720","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5721","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":505,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":505,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5722","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5723","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5724","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":545,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":545,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5725","name":"Remove","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5726","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5727","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5728","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":28,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":28,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5729","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5730","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5731","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":68,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":68,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5732","name":"Android","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5733","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5734","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5735","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":506,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":506,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5736","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5737","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5738","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":546,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":546,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5739","name":"Add Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5740","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5741","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5742","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5743","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5744","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5745","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":866,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5746","name":"Remove Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5747","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5748","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5749","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":986,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":986,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5750","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5751","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5752","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1026,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":1026,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":959,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5753","name":"Push Pin","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5754","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5755","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5756","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":28,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":28,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5757","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5758","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5759","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":68,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":68,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5760","name":"Send","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5761","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5762","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5763","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":-91.48487854003906,"width":19.457500457763672,"height":16.96976089477539},"absoluteRenderBounds":{"x":185,"y":-91.48487854003906,"width":19.457504272460938,"height":16.969757080078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5764","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5765","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5766","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":-92,"width":21,"height":18},"absoluteRenderBounds":{"x":225,"y":-92,"width":21,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5767","name":"Backspace","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5768","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5769","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5770","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343.2049865722656,"y":-92,"width":23.795000076293945,"height":18},"absoluteRenderBounds":{"x":343.2049865722656,"y":-92,"width":23.795013427734375,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5771","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5772","name":"Backspace","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5773","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-92,"width":24,"height":18},"absoluteRenderBounds":{"x":383,"y":-92,"width":24,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5774","name":"Flag","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5775","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5776","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5777","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":508,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":508,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5778","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5779","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5780","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":548,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":548,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5781","name":"Save","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5782","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5783","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5784","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":666,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":666,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5785","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5786","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5787","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":706,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":706,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5788","name":"Reply","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5789","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5790","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5791","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592500686645508,"height":13.594012260437012},"absoluteRenderBounds":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592529296875,"height":13.594009399414062},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5792","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5793","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5794","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1026,"y":-90,"width":18,"height":15},"absoluteRenderBounds":{"x":1026,"y":-90,"width":18,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":959,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5795","name":"Redo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5796","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5797","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5798","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1144.9423828125,"y":-87,"width":20.05765724182129,"height":8},"absoluteRenderBounds":{"x":1144.9423828125,"y":-87,"width":20.0576171875,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5799","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5800","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5801","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1184.5400390625,"y":-88,"width":20.459999084472656,"height":9},"absoluteRenderBounds":{"x":1184.5400390625,"y":-88,"width":20.4599609375,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1119,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5802","name":"Save Alt","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5803","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5804","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5805","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5806","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5807","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5808","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":866,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5809","name":"Undo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5810","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5811","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5812","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1305,"y":-87,"width":20.067657470703125,"height":8},"absoluteRenderBounds":{"x":1305,"y":-87,"width":20.067626953125,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1303,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5813","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5814","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5815","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1345,"y":-88,"width":20.469999313354492,"height":9},"absoluteRenderBounds":{"x":1345,"y":-88,"width":20.469970703125,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1279,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1279,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5816","name":"Chart Pie","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5817","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5818","name":"Rectangle 1756","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5819","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":862,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":862,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":860,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5820","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5821","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":826,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":824,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":824,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:5822","name":"Email","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5823","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5824","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5825","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-135,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-135,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5826","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5827","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5828","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-95,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-95,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-161,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:5829","name":"Email Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5830","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5831","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5832","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":25,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":25,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5833","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5834","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5835","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":65,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":65,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-257,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-257,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"exportSettings":[],"effects":[]} \ No newline at end of file diff --git a/test/integration/fetchIcons.test.ts b/test/integration/fetchIcons.test.ts index 84722e68..10deab20 100644 --- a/test/integration/fetchIcons.test.ts +++ b/test/integration/fetchIcons.test.ts @@ -6,6 +6,8 @@ import { zdsIntegrationOutputDir } from "../data/constants.js"; import { existsSync, readFileSync, rmSync } from "fs"; import { IconManifest } from "../../scripts/types/customTypes.js"; import { checkFontsExist, checkIconsExist } from "../utils.js"; +import { createRequire } from "module"; +const require = createRequire(import.meta.url); describe("fetchIcons", () => { before(async () => { diff --git a/test/regenerateTestFiles.ts b/test/regenerateTestFiles.ts new file mode 100644 index 00000000..9efe16e9 --- /dev/null +++ b/test/regenerateTestFiles.ts @@ -0,0 +1,77 @@ +import { rmSync, rmdirSync, writeFileSync } from "fs"; +import * as dotenv from "dotenv"; +import { getFigmaDocument, getImageFiles } from "../scripts/utils/api.js"; +import { + testFileId, + testFontsOutputDir, + testIconPageName, + testIconsOutputDir, + testOutputDir, +} from "./data/constants.js"; +import { + extractCategoryNames, + extractCategoryNodes, + extractIconSets, + findIconPage, +} from "../scripts/utils/figmaUtils.js"; +import { generateIconManifest } from "../scripts/generators/generateIconManifest.js"; +import { ComponentSets } from "../scripts/types/figmaTypes.js"; +import { generateFonts } from "../scripts/generators/generateFonts.js"; +import { saveSVGs } from "../scripts/utils/saveSvgs.js"; +import { optimizeSVGs } from "../scripts/utils/optimizeSvgs.js"; + +async function main() { + const tempOutputDir = `${testOutputDir}/temp`; + dotenv.config({ + path: ".env.test.local", + }); + + process.env["NODE_TLS_REJECT_UNAUTHORIZED"] = "0"; + + if (process.env.FIGMA_ACCESS_TOKEN != undefined) { + const response = await getFigmaDocument(testFileId, process.env.FIGMA_ACCESS_TOKEN); + writeFile(response, "documentResponse.json"); + writeFile(response.componentSets, "componentSets.json"); + + const componentSet: ComponentSets = new Map(Object.entries(response.componentSets)); + + const iconPage = findIconPage(response.document, testIconPageName); + writeFile(iconPage, "iconsPage.json"); + + const categories = extractCategoryNodes(iconPage); + writeFile(categories, "categoryNodes.json"); + + writeFile(categories[0], "singleCategoryNode.json"); + + const iconNodes = extractIconSets(categories[0]); + writeFile(iconNodes, "iconNodes.json"); + + const manifest = generateIconManifest(categories, componentSet, testIconsOutputDir, true); + writeFile(Object.fromEntries(manifest), "manifest.json"); + + const allImageFiles = await getImageFiles(manifest, testFileId, process.env.FIGMA_ACCESS_TOKEN); + writeFile(Object.fromEntries(allImageFiles), "allImageFiles.json"); + + /// Create simple array of category names + const categoryNames = extractCategoryNames(categories); + + await saveSVGs(allImageFiles, testIconsOutputDir, categoryNames); + console.log("✅ - Saved new SVGs"); + + await optimizeSVGs(testIconsOutputDir, tempOutputDir, categoryNames); + console.log("✅ - Optimized SVGs"); + + const generateFontResult = await generateFonts(tempOutputDir, testFontsOutputDir, "zeta-icons"); + writeFile(generateFontResult, "generatedFontResponse.json"); + + rmSync(testOutputDir, { recursive: true }); + } else { + throw new Error("FIGMA_ACCESS_TOKEN is not defined"); + } +} + +function writeFile(contents: Object, name: string) { + writeFileSync(`./test/data/${name}`, JSON.stringify(contents)); +} + +main(); diff --git a/test/unit/figmaUtils.test.ts b/test/unit/figmaUtils.test.ts index 9b818ea3..d3b754c4 100644 --- a/test/unit/figmaUtils.test.ts +++ b/test/unit/figmaUtils.test.ts @@ -16,12 +16,12 @@ import { iconPage, singleCategoryNode, } from "../data/index.js"; +import { testIconPageName } from "../data/constants.js"; describe("figmaUtils", () => { describe("findIconPage", () => { it("should find the correct page with the given page name", () => { - const iconPageName = "Icons"; - const result = findIconPage(figmaDoc.document, iconPageName); + const result = findIconPage(figmaDoc.document, testIconPageName); assert.deepEqual(result, iconPage); });