diff --git a/ROADMAP.md b/ROADMAP.md index 43b0f43..ce938e8 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -1,6 +1,6 @@ -# Inkfinite vNext / Version 2 +# Inkfinite native document roadmap -Status: implementation in progress; V2-01 through V2-20 are complete +Status: V2-01 through V2-20 and V2-22 are complete; V2-23 and V2-21 remain This is the product and architecture contract for vNext. [TODO.md](TODO.md) is the implementation queue. @@ -17,16 +17,14 @@ the CLI and a bundled `SKILL.md`; MCP and UI automation are not part of vNext. ## Success criteria -- Rust owns the durable model, migrations, validation, CRDT state, file I/O, +- Rust owns the durable model, schema-version validation, CRDT state, file I/O, history, and queries. TypeScript owns low-latency interaction and rendering. - Every completed human or agent edit becomes one validated transaction and one Automerge change. Two offline replicas converge after exchanging changes. -- V2 files survive interrupted writes and expose stable JSON and SVG projections +- Native `.inkfinite` files survive interrupted writes and expose stable JSON and SVG projections for inspection. -- V1 compatibility remains temporary development scaffolding through the final - release-evidence run. Before vNext ships, remove its import paths, fixtures, - scripts, tests, and current documentation after converting any useful coverage - to v2-native fixtures. +- Native fixtures and release evidence cover successful, invalid, rendering, + performance, persistence, recovery, and export cases. - The desktop app, file-mode CLI, and live CLI use the same engine. Stale or invalid mutations cannot partly modify a document. - A user and a fresh Codex session can co-design a wireframe in the offline @@ -44,7 +42,7 @@ the CLI and a bundled `SKILL.md`; MCP and UI automation are not part of vNext. - The Cargo and pnpm workspaces contain the Rust core, generated TypeScript bindings, Canvas 2D renderer, shared Svelte editor, web app, and Tauri desktop app. -- Rust owns the v2 model, Automerge-backed transaction engine, schemas, desktop +- Rust owns the native model, Automerge-backed transaction engine, schemas, desktop sessions, file persistence, recovery, and typed Tauri commands. The desktop frontend keeps a read-only mirror; the web app retains its Dexie adapter. - `@inkfinite/runtime` and `@inkfinite/input-dom` own framework-neutral editor @@ -66,9 +64,9 @@ the CLI and a bundled `SKILL.md`; MCP and UI automation are not part of vNext. - The desktop owns an authenticated, versioned local IPC server. The CLI can inspect open sessions, query the same materialized records as file mode, and request frontend focus without a TCP listener or background daemon. -- [TODO.md](TODO.md) starts the remaining work at V2-22: compatibility removal, - collaborative desktop QA, and final release verification. V2-20's bundled - agent skill and clean fixture run are complete. +- [TODO.md](TODO.md) starts the remaining work at V2-23: collaborative desktop + QA and final release verification. V2-20's bundled agent skill, V2-22's native + cleanup, and the clean fixture run are complete. ## Architecture @@ -85,7 +83,7 @@ Tauri document service ───── local socket ───── Rust CLI └──────────── shared Rust crates ───────────┘ model · CRDT · transactions validation · queries · files - migrations · SVG · protocol + schema validation · SVG · protocol TypeScript editor runtime camera · tools · selection · gesture previews · Canvas 2D @@ -108,7 +106,7 @@ TypeScript editor runtime ### Ownership boundary -Rust owns document records, Automerge changes and heads, format migrations, +Rust owns document records, Automerge changes and heads, format-version checks, transaction validation and application, undo/redo, persistence and recovery, permissions and provenance, queries, CLI behavior, and live IPC. @@ -135,7 +133,7 @@ Business logic must not depend on Tauri, Svelte, CLI parsing, or a transport. ## CRDT and file decisions -Automerge is the v2 CRDT. The V2-02 architecture gate proved cross-language +Automerge is the document CRDT. The V2-02 architecture gate proved cross-language round trips, offline convergence, deterministic hierarchy repair, sync, undo, compaction, and the 10,000-shape workload. Production code depends on Inkfinite-owned document, patch, and sync interfaces rather than Automerge @@ -147,7 +145,7 @@ The recorded dependency baseline is Rust 1.89, Automerge Rust 0.10.0, and 0.61 ms median Canvas frame and a 0.34 ms median linear hit test against budgets of 8 ms and 1 ms. The linear path remains; a spatial index and second durable scene bitmap did not justify their complexity. The complete performance record -is in [`fixtures/v2/performance/v2-11.json`](fixtures/v2/performance/v2-11.json). +is in [`fixtures/native/performance/rendering-budget.json`](fixtures/native/performance/rendering-budget.json). One Inkfinite transaction maps to one Automerge change. Causal heads, rather than a scalar revision, are the concurrency token. A local sequence number may @@ -155,15 +153,11 @@ be displayed, but callers use inspected heads and operation preconditions. Remote changes are merged into a fork, materialized, repaired by deterministic rules where specified, and validated before the session adopts them. -The canonical v2 file is Automerge's compact binary form with the `.inkfinite` -extension. `.inkfinite.json` is a stable snapshot export, not a CRDT round-trip -format. The development build still accepts the frozen v1 envelope so the -architecture baselines remain reproducible. V2-22 replaces useful predecessor -coverage with native fixtures and removes that unreleased compatibility surface -before collaborative QA and the final release matrix. -[docs/v2-file-format.md](docs/v2-file-format.md) defines the current file -behavior. The CLI supplies JSON inspection for repositories and CI and produces -deterministic SVG. +The canonical file is Automerge's compact binary form with the `.inkfinite` +extension. JSON is a deterministic inspection projection, not a second file +format or CRDT round-trip. [docs/file-format.md](docs/file-format.md) defines +the current file behavior. The CLI supplies JSON inspection for repositories and +CI and produces deterministic SVG. ## Document contract @@ -204,8 +198,8 @@ Page are neither rendered nor hit-tested. Locked shapes cannot be selected or changed. New pages always have one default layer. - Deleting a non-empty layer requires an explicit destination layer or explicit - deletion of its contents. Imports backfill one default layer without changing - visual order. + deletion of its contents. A page repaired without a layer gains one default + layer without changing visual order. Concurrent merge repairs must be deterministic. Missing parents move to a stable recovery layer, bindings to missing shapes are removed, duplicate child @@ -364,7 +358,7 @@ The stable boundary is a document opened or created through a public desktop or CLI entry point, changed through the transaction engine, persisted, reopened, and compared by materialized snapshot and Automerge heads. -Required coverage includes serialization, migrations, merge convergence, +Required coverage includes serialization, schema validation, merge convergence, deterministic repairs, referential integrity, transaction inversion, actor-scoped undo, precondition conflicts, locked/hidden layers, active-layer insertion, atomic-write failures, IPC framing/authentication, CLI JSON, tool state machines, @@ -405,16 +399,15 @@ render parity, proposal UX, recovery prompts, and permission failures. Milestones 1 through 7 are complete. [TODO.md](TODO.md) owns ticket-level status, acceptance criteria, and dependency order. The remaining path is: -1. Replace useful predecessor coverage and collapse to the native model (V2-22). -2. Run the human-and-Codex desktop wireframing sequence (V2-23). -3. Run the final release matrix against that native candidate (V2-21). +1. Run the human-and-Codex desktop wireframing sequence (V2-23). +2. Run the final release matrix against the native candidate (V2-21). ## Deferred milestones -- Adapt the standalone browser's Dexie adapter to the v2 Rust/CRDT authority - after the desktop contracts and file format stabilize. Its migration must - backfill every existing board with a default layer and preserve shape order. - Keep the static web build green while desktop behavior changes. +- Add a browser-side native-file bridge only if a future product decision needs + standalone web documents to leave IndexedDB. The current web adapter stores + the same shared editor records locally and does not define another document + contract. - Add hosted sync relay, identity, invitations, permissions, and ephemeral presence after local peer sync is correct and threat-modeled. - Consider WebGL, OffscreenCanvas, third-party shape plugins, Figma import, @@ -424,9 +417,9 @@ acceptance criteria, and dependency order. The remaining path is: ## Boundaries -- Follow existing patterns, preserve predecessor fixtures until V2-22 replaces - their useful coverage, run affected tests, and keep Git read-only unless - repository instructions change. +- Follow existing patterns, keep native fixtures close to the behavior they + exercise, run affected tests, and keep Git read-only unless repository + instructions change. - Ask before adding production dependencies, changing a published format or protocol, broadening authentication or network exposure, or deleting user data. - Never expose a public control server, accept invalid partial writes, hand-edit @@ -442,9 +435,9 @@ acceptance criteria, and dependency order. The remaining path is: intervening local and remote changes, not only linear histories. - Local IPC authentication and framing must remain safe under malformed, oversized, replayed, and cross-user requests. -- Removing v1 compatibility must not discard useful rendering, invalid-input, - persistence, recovery, or performance coverage; V2-22 replaces that coverage - before deleting its source fixtures. +- Native-model cleanup must not discard useful rendering, invalid-input, + persistence, recovery, or performance coverage; V2-22 preserves that coverage + in native fixtures and focused tests. [am-repo]: https://github.com/automerge/automerge [am-rust]: https://docs.rs/automerge/latest/automerge/ diff --git a/TODO.md b/TODO.md index 9239da8..052596a 100644 --- a/TODO.md +++ b/TODO.md @@ -1,4 +1,4 @@ -# Inkfinite vNext tickets +# Inkfinite implementation tickets These tickets implement [ROADMAP.md](ROADMAP.md). @@ -7,13 +7,13 @@ changes. ## Milestone 1: Architecture gate -Exit when the v1 baseline is reproducible and the CRDT decision has measured +Exit when the initial baseline is reproducible and the CRDT decision has measured evidence. -### V2-01: Freeze compatibility fixtures and baselines +### V2-01: Freeze baseline fixtures and measurements -Captured representative v1 web and desktop documents, invalid documents, rendering -examples, and a generated 10,000-shape board before the model changes. +Captured representative web and desktop documents, invalid documents, rendering +examples, and a generated 10,000-shape board before the durable model changes. ### V2-02: Prove the CRDT boundary @@ -22,17 +22,17 @@ Inkfinite-owned interface. Compare Yjs/Yrs only if Automerge misses a gate. ## Milestone 2: Rust document authority -Exit when Rust can import, edit, merge, validate, persist, and expose the v2 +Exit when Rust can create, edit, merge, validate, persist, and expose the current document independently of Tauri and Svelte. ### V2-03: Scaffold the vNext project structure Created the target Cargo and pnpm workspace layout as a compileable shell -before moving behavior or defining the v2 model. +before moving behavior or defining the current model. ### V2-04: Define the Rust document and protocol contracts -Added typed v2 records, project-owned CRDT traits, and protocol records without UI, +Added typed document records, project-owned CRDT traits, and protocol records without UI, Tauri, transport, or CLI parsing dependencies. ### V2-05: Implement validated CRDT transactions @@ -46,10 +46,10 @@ warnings. Generates document, transaction, and protocol bindings from Rust and prove the Rust and TypeScript shape registries agree. -### V2-07: Import v1 and persist v2 safely +### V2-07: Persist documents safely -Import `.inkfinite.json`, persist canonical `.inkfinite` CRDT -files, export stable JSON snapshots, and recover from interrupted writes. +Persist canonical `.inkfinite` CRDT files, export stable JSON projections, and +recover from interrupted writes. ## Milestone 3: Desktop vertical slice @@ -126,91 +126,19 @@ offline app replicas converge after reconnecting. ### V2-17: Add authenticated local IPC -Implemented: Host a versioned local-socket server in Tauri and connect the CLI +Hosts a versioned local-socket server in Tauri and connect the CLI for status, inspect, query, and focus. -Blocked by: V2-08, V2-15 - -Acceptance criteria: - -- [x] Unix-domain sockets and Windows named pipes use per-user names, a protected - per-install/session token, length-prefix framing, versions, and size limits. -- [x] The server exposes no TCP/HTTP listener and stops with the Tauri process. -- [x] Read-only app commands return the same protocol records and query results as - file mode; focus emits a small frontend notification. -- [x] Tests reject wrong tokens, oversized/truncated frames, unsupported versions, - malformed JSON, replayed request IDs, and unavailable app sessions. - -Verification: - -```sh -cargo test -p inkfinite-core ipc:: -cargo test -p inkfinite-cli -p desktop -``` - ### V2-18: Add reviewable agent proposals and explicit apply -What to build: Let the live CLI propose a transaction for ghost-preview review or +Lets the live CLI propose a transaction for ghost-preview review or apply it only with explicit authorization. -Blocked by: V2-09, V2-16, V2-17 - -Acceptance criteria: - -- [x] `app propose` validates without committing and previews geometry plus - created, changed, and deleted IDs in the desktop UI. -- [x] Reject changes nothing; full accept commits once; partial accept builds a - new transaction and revalidates it against current heads. -- [x] Intervening local or remote edits produce a refreshed preview or a clear - conflict, never a stale silent commit. -- [x] `app apply` requires explicit authorization conveyed through protocol state, - not a UI convention, and creates normal history/provenance. -- [x] Proposal limits, timeout/expiry, permissions, and malformed operations have - integration and accessibility tests. - -Verification: - -- Run end-to-end propose/reject/accept/partial/stale/direct-apply flows and compare - persisted documents after reopen. - -Implemented with Rust proposal storage and revalidation, authenticated IPC/Tauri -commands, CLI subcommands, desktop ghost previews, explicit one-time apply grants, -and integration/accessibility coverage. - ### V2-19: Sync two offline replicas -What to build: Wire the selected CRDT sync protocol through a transport-neutral +What to build: Wired the selected CRDT sync protocol through a transport-neutral peer layer and prove desktop-to-desktop convergence. -Implemented: Added a trusted, transport-neutral Automerge peer envelope with -bounded retry and quarantine state. Document files persist per-peer checkpoints -beside the recovery data, and the session and Tauri boundaries expose connect, -disconnect, send, and receive operations without adding a hosted service. - -Blocked by: V2-07, V2-08, V2-17 - -Acceptance criteria: - -- [x] Two trusted app instances exchange only missing changes, reconnect after - offline edits, and converge to the same materialized snapshot and heads. -- [x] Concurrent shape edits, hierarchy moves, layer changes, text edits, - deletions, and undo trigger the specified merge or deterministic repair. -- [x] Duplicate, delayed, and retried messages are harmless; corrupt or invalid - merged state is quarantined without replacing the open valid session. -- [x] Peer state, actor IDs, compaction, and recovery survive restart without - resending unbounded history. -- [x] The transport boundary does not assume hosted accounts, a public relay, or - durable presence. - -Verification: - -- Run fixed-schedule and property-based two-replica tests with reordered, - duplicated, delayed, disconnected, restarted, and corrupted message cases. - -Verification completed with Rust peer-envelope, quarantine, reorder, and -property tests; session-level offline/restart tests; and desktop TypeScript -contract and adapter tests. - ## Milestone 8: Agent and release readiness Exit when a clean installation supports a complete human-and-agent wireframing @@ -245,53 +173,12 @@ Verification: used the real CLI framing and an authenticated Unix-socket fixture server; no UI automation or canonical-file byte edits were used. -### V2-22: Collapse to one native Inkfinite model +### V2-22: Collapse to one native Inkfinite model — complete -What to build: Treat the current document model and file flow as Inkfinite's -only model. The earlier implementation never shipped, so remove the temporary -predecessor/current split in full: its files, import and migration paths, -adapters, names, branches, scripts, package commands, tests, fixtures, and -documentation. Keep explicit file, schema, and protocol version fields where -they validate persisted or exchanged data or allow future evolution; they must -not preserve an implementation of the unreleased predecessor. - -Blocked by: V2-20 - -Acceptance criteria: - -- [ ] Remove the predecessor fixtures, generators, baseline tooling, imports, - migrations, adapters, compatibility-only tests, scripts, package commands, - and documentation. -- [ ] Web, desktop, CLI, Rust, and shared TypeScript code expose one native model - and one supported file flow. There are no user-facing format choices or - internal branches for the unreleased implementation. -- [ ] Remove predecessor-only types, fields, metadata, aliases, and terminology. - Rename retained code and fixtures by their current purpose instead of - preserving `v1`, `v2`, `legacy`, `compatibility`, `migration`, or similar - transition-oriented names. -- [ ] Replace useful rendering, performance, invalid-input, persistence, - recovery, and import/export coverage with native fixtures before deleting - its predecessor source. The replacement tests must exercise the same - observable failure and recovery cases. -- [ ] Before removing the import path, run the real predecessor-document corpus - once, record the results, and convert representative successful, invalid, - and recovery cases into native fixtures. Keep backup and rollback evidence - with the release records rather than retaining compatibility code. -- [ ] Update ROADMAP.md and current documentation to describe the native model - and supported file flow directly, without presenting the codebase as a - compatibility bridge between product generations. -- [ ] Repository searches find no remaining code or first-party artifact tied to - the predecessor/current split. Third-party dependency metadata, historical - release notes, and intentional version fields are allowed only when they - do not retain predecessor behavior or terminology in Inkfinite-owned APIs. -- [ ] The native release verification matrix passes after the cleanup. - -Verification: - -- Run the native release verification matrix after cleanup. Search tracked - source, tests, fixtures, scripts, package manifests, generated artifacts, and - current documentation for predecessor types and transition-oriented terms; - review every match rather than relying on a fixed list of file removals. +The current document model and file flow are the only supported +Inkfinite model. Removed the temporary predecessor/current split, retained only +explicit file, schema, and protocol version fields, and converted useful +coverage to native fixtures and tests. ### V2-23: Complete a human-and-Codex desktop wireframing session @@ -322,8 +209,7 @@ Acceptance criteria: Codex re-inspects the result before continuing. - [ ] The user makes an intervening canvas edit while a later proposal is open. Accepting the stale proposal produces a refreshed review or a clear - conflict; it never commits silently against old heads or loses the human - edit. + conflict; it never commits silently against old heads or loses the human edit. - [ ] Codex completes the wireframe with reviewed proposals while respecting locked layers, `agent_editable`, and semantic selectors. The user can also continue editing with normal desktop tools between proposals. @@ -342,10 +228,6 @@ Verification: clean Codex environment, disable networking, and complete the sequence above without UI automation. Attach the command transcript and artifacts to the release evidence. -- Use [tldraw offline](https://tldraw.dev/blog/tldraw-offline) only as a product - frame of reference: local files and trusted local agents. Inkfinite agents must - continue through validated transactions and authenticated local IPC; they do - not execute arbitrary code in the canvas or replace an open file externally. ### V2-21: Run the vNext release matrix @@ -397,5 +279,6 @@ pnpm --filter @inkfinite/desktop check ## Frontier -V2-22 is the current frontier. Replace useful predecessor coverage and collapse -the repository to one native Inkfinite model. +V2-22 is complete. + +The remaining work is the collaborative desktop session and the final release matrix. diff --git a/apps/desktop/src-tauri/src/files.rs b/apps/desktop/src-tauri/src/files.rs index a60eb97..8b4547f 100644 --- a/apps/desktop/src-tauri/src/files.rs +++ b/apps/desktop/src-tauri/src/files.rs @@ -23,7 +23,7 @@ pub fn read_directory(directory: String, pattern: Option) -> Result, path: String, actor_id: String) -> Result { lock_service(&state)? diff --git a/apps/desktop/src/lib/fileops.ts b/apps/desktop/src/lib/fileops.ts index db68976..e71f532 100644 --- a/apps/desktop/src/lib/fileops.ts +++ b/apps/desktop/src/lib/fileops.ts @@ -29,7 +29,7 @@ export function createDesktopFileOps(): DesktopFileOps { const result = await open({ multiple: false, directory: false, - filters: [{ name: "Inkfinite Files", extensions: ["inkfinite", "inkfinite.json", "json"] }], + filters: [{ name: "Inkfinite Files", extensions: ["inkfinite"] }], }); return result; @@ -37,8 +37,8 @@ export function createDesktopFileOps(): DesktopFileOps { async function showSaveDialog(defaultName?: string): Promise { const result = await save({ - defaultPath: defaultName || "Untitled.inkfinite.json", - filters: [{ name: "Inkfinite Files", extensions: ["inkfinite", "inkfinite.json"] }], + defaultPath: defaultName || "Untitled.inkfinite", + filters: [{ name: "Inkfinite Files", extensions: ["inkfinite"] }], }); return result; @@ -94,7 +94,7 @@ export function createDesktopFileOps(): DesktopFileOps { } async function readDirectory(directory: string, pattern?: string): Promise { - const entries = await invoke("read_directory", { directory, pattern: pattern || "*.inkfinite.json" }); + const entries = await invoke("read_directory", { directory, pattern: pattern || "*.inkfinite" }); return entries.map((e) => ({ path: e.path, name: e.name, isDir: e.is_dir })); } diff --git a/apps/desktop/src/lib/persistence/desktop-session.test.ts b/apps/desktop/src/lib/persistence/desktop-session.test.ts index e95123c..b5499de 100644 --- a/apps/desktop/src/lib/persistence/desktop-session.test.ts +++ b/apps/desktop/src/lib/persistence/desktop-session.test.ts @@ -1,424 +1,388 @@ -import type { DesktopFileOps, FileHandle } from "@inkfinite/core"; -import type { - ApplyAuthorization, - ChangeHash, - DocumentSnapshot, - Proposal, - TransactionDraft, -} from "@inkfinite/bindings"; -import { beforeEach, describe, expect, it } from "vitest"; +import type { DesktopFileOps, FileHandle } from '@inkfinite/core'; +import type { ApplyAuthorization, ChangeHash, DocumentSnapshot, Proposal, TransactionDraft } from '@inkfinite/bindings'; +import { beforeEach, describe, expect, it } from 'vitest'; import { - createDesktopSessionRepo, - type SessionApi, - type SessionCommit, - type SessionOpened, - type SessionSaved, - type SessionStatus, -} from "$lib/persistence/desktop-session"; - -type FakeSession = { - status: SessionStatus; - undo: DocumentSnapshot[]; - redo: DocumentSnapshot[]; -}; - -function createSnapshot(documentId: string, pageName = "Page 1", heads: ChangeHash[] = ["head:0"]): DocumentSnapshot { - const pageId = `page:${documentId}:1`; - const layerId = `layer:${documentId}:1`; - return { - format: "inkfinite", - format_version: 2, - document_id: documentId, - heads, - document: { - pages: { - [pageId]: { id: pageId, name: pageName, layer_ids: [layerId], version: 1 }, - }, - page_ids: [pageId], - layers: { - [layerId]: { - id: layerId, - page_id: pageId, - name: "Default", - shape_ids: [], - visible: true, - locked: false, - opacity: 1, - version: 1, - }, - }, - shapes: {}, - bindings: {}, - assets: {}, - }, - }; + createDesktopSessionRepo, + type SessionApi, + type SessionCommit, + type SessionOpened, + type SessionSaved, + type SessionStatus +} from '$lib/persistence/desktop-session'; + +type FakeSession = { status: SessionStatus; undo: DocumentSnapshot[]; redo: DocumentSnapshot[] }; + +function createSnapshot(documentId: string, pageName = 'Page 1', heads: ChangeHash[] = ['head:0']): DocumentSnapshot { + const pageId = `page:${documentId}:1`; + const layerId = `layer:${documentId}:1`; + return { + format: 'inkfinite', + format_version: 2, + document_id: documentId, + heads, + document: { + pages: { [pageId]: { id: pageId, name: pageName, layer_ids: [layerId], version: 1 } }, + page_ids: [pageId], + layers: { + [layerId]: { + id: layerId, + page_id: pageId, + name: 'Default', + shape_ids: [], + visible: true, + locked: false, + opacity: 1, + version: 1 + } + }, + shapes: {}, + bindings: {}, + assets: {} + } + }; } function createFakeSessionApi() { - const files = new Map(); - const sessions = new Map(); - let sessionNumber = 0; - let headNumber = 0; - - function statusFor(sessionId: string, session: FakeSession): SessionStatus { - return { - ...session.status, - snapshot: structuredClone(session.status.snapshot), - }; - } - - function commitResult(transaction: TransactionDraft, snapshot: DocumentSnapshot): SessionCommit["commit"] { - return { - transaction_id: transaction.id, - heads: snapshot.heads, - patch: { created: [], changed: [], deleted: [] }, - affected_ids: [], - affected_regions: [], - inverse: { actor_id: transaction.actor_id, operations: [] }, - warnings: [], - }; - } - - const api = { - async createDocument(args: Parameters[0]): Promise { - const sessionId = `session:${++sessionNumber}`; - const snapshot = createSnapshot(args.document_id, args.page_name || "Page 1"); - const status: SessionStatus = { - session_id: sessionId, - path: args.path, - actor_id: args.actor_id, - snapshot, - dirty: false, - lock_held: true, - recovery_available: false, - can_undo: false, - can_redo: false, - sync: { status: "disabled" }, - }; - sessions.set(sessionId, { status, undo: [], redo: [] }); - files.set(args.path, structuredClone(snapshot)); - return { session_id: sessionId, status: statusFor(sessionId, sessions.get(sessionId)!) }; - }, - - async openDocument(args: Parameters[0]): Promise { - const stored = files.get(args.path); - if (!stored) throw new Error(`Missing fake document: ${args.path}`); - const sessionId = `session:${++sessionNumber}`; - const status: SessionStatus = { - session_id: sessionId, - path: args.path, - actor_id: args.actor_id, - snapshot: structuredClone(stored), - dirty: false, - lock_held: true, - recovery_available: false, - can_undo: false, - can_redo: false, - sync: { status: "disabled" }, - }; - sessions.set(sessionId, { status, undo: [], redo: [] }); - return { session_id: sessionId, status: statusFor(sessionId, sessions.get(sessionId)!) }; - }, - - async snapshot(args: Parameters[0]) { - const session = sessions.get(args.session_id); - if (!session) throw new Error("Missing fake session"); - return statusFor(args.session_id, session); - }, - - async commit(args: Parameters[0]): Promise { - const session = sessions.get(args.session_id); - if (!session) throw new Error("Missing fake session"); - const next = structuredClone(session.status.snapshot); - for (const operation of args.transaction.operations) { - if (operation.type === "rename_page") { - const page = next.document.pages[operation.page_id]; - if (page) { - page.name = operation.name; - page.version += 1; - } - } - } - session.undo.push(structuredClone(session.status.snapshot)); - session.redo = []; - next.heads = [`head:${++headNumber}`]; - session.status = { - ...session.status, - snapshot: next, - dirty: true, - can_undo: true, - can_redo: false, - }; - return { - commit: commitResult(args.transaction, next), - status: statusFor(args.session_id, session), - }; - }, - - async propose(_args: Parameters[0]): Promise { - throw new Error("Proposals are not part of this fake session"); - }, - - async acceptProposal(_args: Parameters[0]): Promise { - throw new Error("Proposals are not part of this fake session"); - }, - - async rejectProposal(_args: Parameters[0]): Promise { - throw new Error("Proposals are not part of this fake session"); - }, - - async authorizeApply(_args: Parameters[0]): Promise { - throw new Error("Apply authorization is not part of this fake session"); - }, - - async undo(args: Parameters[0]): Promise { - const session = sessions.get(args.session_id); - const previous = session?.undo.pop(); - if (!session || !previous) throw new Error("No fake undo history"); - session.redo.push(structuredClone(session.status.snapshot)); - previous.heads = [`head:${++headNumber}`]; - session.status = { - ...session.status, - snapshot: previous, - dirty: true, - can_undo: session.undo.length > 0, - can_redo: true, - }; - return { - commit: commitResult( - { id: "transaction:undo", actor_id: args.actor_id } as TransactionDraft, - previous, - ), - status: statusFor(args.session_id, session), - }; - }, - - async redo(args: Parameters[0]): Promise { - const session = sessions.get(args.session_id); - const next = session?.redo.pop(); - if (!session || !next) throw new Error("No fake redo history"); - session.undo.push(structuredClone(session.status.snapshot)); - next.heads = [`head:${++headNumber}`]; - session.status = { - ...session.status, - snapshot: next, - dirty: true, - can_undo: true, - can_redo: session.redo.length > 0, - }; - return { - commit: commitResult( - { id: "transaction:redo", actor_id: args.actor_id } as TransactionDraft, - next, - ), - status: statusFor(args.session_id, session), - }; - }, - - async save(args: Parameters[0]): Promise { - const session = sessions.get(args.session_id); - if (!session) throw new Error("Missing fake session"); - files.set(session.status.path, structuredClone(session.status.snapshot)); - session.status = { ...session.status, dirty: false }; - return { - save: { path: session.status.path, heads: session.status.snapshot.heads }, - status: statusFor(args.session_id, session), - }; - }, - - async saveAs(args: Parameters[0]): Promise { - const session = sessions.get(args.session_id); - if (!session) throw new Error("Missing fake session"); - files.set(args.path, structuredClone(session.status.snapshot)); - session.status = { ...session.status, path: args.path, dirty: false }; - return { - save: { path: args.path, heads: session.status.snapshot.heads }, - status: statusFor(args.session_id, session), - }; - }, - - async query(args: Parameters[0]) { - const session = sessions.get(args.session_id); - if (!session) throw new Error("Missing fake session"); - return { heads: session.status.snapshot.heads, records: [], bounds: {} }; - }, - - async validate(args: Parameters[0]) { - const session = sessions.get(args.session_id); - if (!session) throw new Error("Missing fake session"); - return statusFor(args.session_id, session); - }, - - async syncConnect(args: Parameters[0]) { - const session = sessions.get(args.session_id); - if (!session) throw new Error("Missing fake session"); - session.status = { - ...session.status, - sync: { - status: "enabled", - peers: [ - { - peer_id: args.peer_id, - pending_messages: 0, - shared_heads: [], - quarantine: null, - }, - ], - warning: null, - }, - }; - return statusFor(args.session_id, session); - }, - - async syncDisconnect(args: Parameters[0]) { - const session = sessions.get(args.session_id); - if (!session) throw new Error("Missing fake session"); - session.status = { ...session.status, sync: { status: "disabled" } }; - return statusFor(args.session_id, session); - }, - - async syncNext(_args: Parameters[0]) { - return null; - }, - - async syncReceive(_args: Parameters[0]): Promise { - throw new Error("Sync receive is not part of this fake session"); - }, - - async close(args: Parameters[0]) { - sessions.delete(args.session_id); - }, - } satisfies SessionApi; - - return { api, files }; + const files = new Map(); + const sessions = new Map(); + let sessionNumber = 0; + let headNumber = 0; + + function statusFor(sessionId: string, session: FakeSession): SessionStatus { + return { ...session.status, snapshot: structuredClone(session.status.snapshot) }; + } + + function commitResult(transaction: TransactionDraft, snapshot: DocumentSnapshot): SessionCommit['commit'] { + return { + transaction_id: transaction.id, + heads: snapshot.heads, + patch: { created: [], changed: [], deleted: [] }, + affected_ids: [], + affected_regions: [], + inverse: { actor_id: transaction.actor_id, operations: [] }, + warnings: [] + }; + } + + const api = { + async createDocument(args: Parameters[0]): Promise { + const sessionId = `session:${++sessionNumber}`; + const snapshot = createSnapshot(args.document_id, args.page_name || 'Page 1'); + const status: SessionStatus = { + session_id: sessionId, + path: args.path, + actor_id: args.actor_id, + snapshot, + dirty: false, + lock_held: true, + recovery_available: false, + can_undo: false, + can_redo: false, + sync: { status: 'disabled' } + }; + sessions.set(sessionId, { status, undo: [], redo: [] }); + files.set(args.path, structuredClone(snapshot)); + return { session_id: sessionId, status: statusFor(sessionId, sessions.get(sessionId)!) }; + }, + + async openDocument(args: Parameters[0]): Promise { + const stored = files.get(args.path); + if (!stored) throw new Error(`Missing fake document: ${args.path}`); + const sessionId = `session:${++sessionNumber}`; + const status: SessionStatus = { + session_id: sessionId, + path: args.path, + actor_id: args.actor_id, + snapshot: structuredClone(stored), + dirty: false, + lock_held: true, + recovery_available: false, + can_undo: false, + can_redo: false, + sync: { status: 'disabled' } + }; + sessions.set(sessionId, { status, undo: [], redo: [] }); + return { session_id: sessionId, status: statusFor(sessionId, sessions.get(sessionId)!) }; + }, + + async snapshot(args: Parameters[0]) { + const session = sessions.get(args.session_id); + if (!session) throw new Error('Missing fake session'); + return statusFor(args.session_id, session); + }, + + async commit(args: Parameters[0]): Promise { + const session = sessions.get(args.session_id); + if (!session) throw new Error('Missing fake session'); + const next = structuredClone(session.status.snapshot); + for (const operation of args.transaction.operations) { + if (operation.type === 'rename_page') { + const page = next.document.pages[operation.page_id]; + if (page) { + page.name = operation.name; + page.version += 1; + } + } + } + session.undo.push(structuredClone(session.status.snapshot)); + session.redo = []; + next.heads = [`head:${++headNumber}`]; + session.status = { ...session.status, snapshot: next, dirty: true, can_undo: true, can_redo: false }; + return { commit: commitResult(args.transaction, next), status: statusFor(args.session_id, session) }; + }, + + async propose(_args: Parameters[0]): Promise { + throw new Error('Proposals are not part of this fake session'); + }, + + async acceptProposal(_args: Parameters[0]): Promise { + throw new Error('Proposals are not part of this fake session'); + }, + + async rejectProposal(_args: Parameters[0]): Promise { + throw new Error('Proposals are not part of this fake session'); + }, + + async authorizeApply(_args: Parameters[0]): Promise { + throw new Error('Apply authorization is not part of this fake session'); + }, + + async undo(args: Parameters[0]): Promise { + const session = sessions.get(args.session_id); + const previous = session?.undo.pop(); + if (!session || !previous) throw new Error('No fake undo history'); + session.redo.push(structuredClone(session.status.snapshot)); + previous.heads = [`head:${++headNumber}`]; + session.status = { + ...session.status, + snapshot: previous, + dirty: true, + can_undo: session.undo.length > 0, + can_redo: true + }; + return { + commit: commitResult({ id: 'transaction:undo', actor_id: args.actor_id } as TransactionDraft, previous), + status: statusFor(args.session_id, session) + }; + }, + + async redo(args: Parameters[0]): Promise { + const session = sessions.get(args.session_id); + const next = session?.redo.pop(); + if (!session || !next) throw new Error('No fake redo history'); + session.undo.push(structuredClone(session.status.snapshot)); + next.heads = [`head:${++headNumber}`]; + session.status = { + ...session.status, + snapshot: next, + dirty: true, + can_undo: true, + can_redo: session.redo.length > 0 + }; + return { + commit: commitResult({ id: 'transaction:redo', actor_id: args.actor_id } as TransactionDraft, next), + status: statusFor(args.session_id, session) + }; + }, + + async save(args: Parameters[0]): Promise { + const session = sessions.get(args.session_id); + if (!session) throw new Error('Missing fake session'); + files.set(session.status.path, structuredClone(session.status.snapshot)); + session.status = { ...session.status, dirty: false }; + return { + save: { path: session.status.path, heads: session.status.snapshot.heads }, + status: statusFor(args.session_id, session) + }; + }, + + async saveAs(args: Parameters[0]): Promise { + const session = sessions.get(args.session_id); + if (!session) throw new Error('Missing fake session'); + files.set(args.path, structuredClone(session.status.snapshot)); + session.status = { ...session.status, path: args.path, dirty: false }; + return { + save: { path: args.path, heads: session.status.snapshot.heads }, + status: statusFor(args.session_id, session) + }; + }, + + async query(args: Parameters[0]) { + const session = sessions.get(args.session_id); + if (!session) throw new Error('Missing fake session'); + return { heads: session.status.snapshot.heads, records: [], bounds: {} }; + }, + + async validate(args: Parameters[0]) { + const session = sessions.get(args.session_id); + if (!session) throw new Error('Missing fake session'); + return statusFor(args.session_id, session); + }, + + async syncConnect(args: Parameters[0]) { + const session = sessions.get(args.session_id); + if (!session) throw new Error('Missing fake session'); + session.status = { + ...session.status, + sync: { + status: 'enabled', + peers: [{ peer_id: args.peer_id, pending_messages: 0, shared_heads: [], quarantine: null }], + warning: null + } + }; + return statusFor(args.session_id, session); + }, + + async syncDisconnect(args: Parameters[0]) { + const session = sessions.get(args.session_id); + if (!session) throw new Error('Missing fake session'); + session.status = { ...session.status, sync: { status: 'disabled' } }; + return statusFor(args.session_id, session); + }, + + async syncNext(_args: Parameters[0]) { + return null; + }, + + async syncReceive(_args: Parameters[0]): Promise { + throw new Error('Sync receive is not part of this fake session'); + }, + + async close(args: Parameters[0]) { + sessions.delete(args.session_id); + } + } satisfies SessionApi; + + return { api, files }; } function createFakeFileOps() { - const recent: FileHandle[] = []; - let workspace: string | null = null; - let openPath: string | null = null; - let savePath: string | null = null; - let entries: Array<{ path: string; name: string; isDir: boolean }> = []; - - const ops: DesktopFileOps = { - async showOpenDialog() { - return openPath; - }, - async showSaveDialog() { - return savePath; - }, - async getRecentFiles() { - return [...recent]; - }, - async addRecentFile(handle) { - recent.splice(0, recent.length, handle, ...recent.filter((item) => item.path !== handle.path)); - }, - async removeRecentFile(path) { - const index = recent.findIndex((item) => item.path === path); - if (index >= 0) recent.splice(index, 1); - }, - async clearRecentFiles() { - recent.splice(0, recent.length); - }, - async getWorkspaceDir() { - return workspace; - }, - async setWorkspaceDir(path) { - workspace = path; - }, - async pickWorkspaceDir() { - workspace = "/workspace"; - return workspace; - }, - async readDirectory(directory, pattern) { - const suffix = pattern?.replace("*", "") ?? ""; - return entries.filter((entry) => entry.path.startsWith(directory) && (!suffix || entry.name.includes(suffix))); - }, - async renameFile() {}, - async deleteFile(path) { - entries = entries.filter((entry) => entry.path !== path); - }, - }; - - return { - ops, - recent, - setWorkspace(path: string | null) { - workspace = path; - }, - setOpenPath(path: string | null) { - openPath = path; - }, - setSavePath(path: string | null) { - savePath = path; - }, - setEntries(next: typeof entries) { - entries = next; - }, - }; + const recent: FileHandle[] = []; + let workspace: string | null = null; + let openPath: string | null = null; + let savePath: string | null = null; + let entries: Array<{ path: string; name: string; isDir: boolean }> = []; + + const ops: DesktopFileOps = { + async showOpenDialog() { + return openPath; + }, + async showSaveDialog() { + return savePath; + }, + async getRecentFiles() { + return [...recent]; + }, + async addRecentFile(handle) { + recent.splice(0, recent.length, handle, ...recent.filter((item) => item.path !== handle.path)); + }, + async removeRecentFile(path) { + const index = recent.findIndex((item) => item.path === path); + if (index >= 0) recent.splice(index, 1); + }, + async clearRecentFiles() { + recent.splice(0, recent.length); + }, + async getWorkspaceDir() { + return workspace; + }, + async setWorkspaceDir(path) { + workspace = path; + }, + async pickWorkspaceDir() { + workspace = '/workspace'; + return workspace; + }, + async readDirectory(directory, pattern) { + const suffix = pattern?.replace('*', '') ?? ''; + return entries.filter( + (entry) => entry.path.startsWith(directory) && (!suffix || entry.name.includes(suffix)) + ); + }, + async renameFile() {}, + async deleteFile(path) { + entries = entries.filter((entry) => entry.path !== path); + } + }; + + return { + ops, + recent, + setWorkspace(path: string | null) { + workspace = path; + }, + setOpenPath(path: string | null) { + openPath = path; + }, + setSavePath(path: string | null) { + savePath = path; + }, + setEntries(next: typeof entries) { + entries = next; + } + }; } -describe("Rust-backed desktop session repository", () => { - let fileOps: ReturnType; - let session: ReturnType; - - beforeEach(() => { - fileOps = createFakeFileOps(); - session = createFakeSessionApi(); - }); - - it("opens, edits, saves, reopens, undoes, and redoes through typed sessions", async () => { - fileOps.setSavePath("/tmp/board.inkfinite"); - const repo = createDesktopSessionRepo(fileOps.ops, { api: session.api }); - const boardId = await repo.createBoard("Board One"); - const pageId = Object.keys((await repo.loadDoc(boardId)).pages)[0]; - expect((await repo.validate()).snapshot.document_id).toBe(boardId); - expect( - (await repo.query({ - id: null, - name: null, - role: null, - tag: null, - shape_kind: null, - page_id: null, - layer_id: null, - parent_id: null, - bounds: null, - })).records, - ).toEqual([]); - - await repo.applyDocPatch(boardId, { - upserts: { pages: [{ id: pageId, name: "Renamed", shapeIds: [] }] }, - }); - expect((await repo.loadDoc(boardId)).pages[pageId].name).toBe("Renamed"); - expect(repo.getSessionStatus()?.dirty).toBe(false); - - await repo.undo(); - expect((await repo.loadDoc(boardId)).pages[pageId].name).toBe("Page 1"); - await repo.redo(); - expect((await repo.loadDoc(boardId)).pages[pageId].name).toBe("Renamed"); - - await repo.closeSession(); - const boards = await repo.listBoards(); - await repo.openBoard(boards[0].id); - expect((await repo.loadDoc(boards[0].id)).pages[pageId].name).toBe("Renamed"); - await repo.closeSession(); - const reopened = await repo.loadDoc(boards[0].id); - expect(reopened.pages[pageId].name).toBe("Renamed"); - }); - - it("lists canonical and legacy paths without reading document bytes in the frontend", async () => { - fileOps.setWorkspace("/workspace"); - fileOps.setEntries([ - { path: "/workspace/alpha.inkfinite", name: "alpha.inkfinite", isDir: false }, - { path: "/workspace/beta.inkfinite.json", name: "beta.inkfinite.json", isDir: false }, - { path: "/workspace/assets", name: "assets", isDir: true }, - ]); - const repo = createDesktopSessionRepo(fileOps.ops, { api: session.api }); - - const boards = await repo.listBoards(); - - expect(boards.map((board) => board.name)).toEqual(["alpha", "beta"]); - expect(boards.every((board) => board.id.startsWith("path:"))).toBe(true); - }); +describe('Rust-backed desktop session repository', () => { + let fileOps: ReturnType; + let session: ReturnType; + + beforeEach(() => { + fileOps = createFakeFileOps(); + session = createFakeSessionApi(); + }); + + it('opens, edits, saves, reopens, undoes, and redoes through typed sessions', async () => { + fileOps.setSavePath('/tmp/board.inkfinite'); + const repo = createDesktopSessionRepo(fileOps.ops, { api: session.api }); + const boardId = await repo.createBoard('Board One'); + const pageId = Object.keys((await repo.loadDoc(boardId)).pages)[0]; + expect((await repo.validate()).snapshot.document_id).toBe(boardId); + expect( + ( + await repo.query({ + id: null, + name: null, + role: null, + tag: null, + shape_kind: null, + page_id: null, + layer_id: null, + parent_id: null, + bounds: null + }) + ).records + ).toEqual([]); + + await repo.applyDocPatch(boardId, { upserts: { pages: [{ id: pageId, name: 'Renamed', shapeIds: [] }] } }); + expect((await repo.loadDoc(boardId)).pages[pageId].name).toBe('Renamed'); + expect(repo.getSessionStatus()?.dirty).toBe(false); + + await repo.undo(); + expect((await repo.loadDoc(boardId)).pages[pageId].name).toBe('Page 1'); + await repo.redo(); + expect((await repo.loadDoc(boardId)).pages[pageId].name).toBe('Renamed'); + + await repo.closeSession(); + const boards = await repo.listBoards(); + await repo.openBoard(boards[0].id); + expect((await repo.loadDoc(boards[0].id)).pages[pageId].name).toBe('Renamed'); + await repo.closeSession(); + const reopened = await repo.loadDoc(boards[0].id); + expect(reopened.pages[pageId].name).toBe('Renamed'); + }); + + it('lists native document paths without reading document bytes in the frontend', async () => { + fileOps.setWorkspace('/workspace'); + fileOps.setEntries([ + { path: '/workspace/alpha.inkfinite', name: 'alpha.inkfinite', isDir: false }, + { path: '/workspace/assets', name: 'assets', isDir: true } + ]); + const repo = createDesktopSessionRepo(fileOps.ops, { api: session.api }); + + const boards = await repo.listBoards(); + + expect(boards.map((board) => board.name)).toEqual(['alpha']); + expect(boards.every((board) => board.id.startsWith('path:'))).toBe(true); + }); }); diff --git a/apps/desktop/src/lib/persistence/desktop-session.ts b/apps/desktop/src/lib/persistence/desktop-session.ts index 23b1ee7..8f7de03 100644 --- a/apps/desktop/src/lib/persistence/desktop-session.ts +++ b/apps/desktop/src/lib/persistence/desktop-session.ts @@ -7,16 +7,16 @@ import type { DocPatch, FileHandle, LoadedDoc, - LayerRecord as LegacyLayerRecord, - PageRecord as LegacyPageRecord, - BindingRecord as LegacyBindingRecord, + LayerRecord as EditorLayerRecord, + PageRecord as EditorPageRecord, + BindingRecord as EditorBindingRecord, PersistenceSink, PersistentDocRepo, - ShapeRecord as LegacyShapeRecord + ShapeRecord as EditorShapeRecord } from '@inkfinite/core'; import { createId } from '@inkfinite/core'; import type { - BindingRecord as V2BindingRecord, + BindingRecord as SnapshotBindingRecord, ApplyAuthorization, ChangeHash, CommitResult, @@ -62,9 +62,7 @@ export type SyncPeerStatus = { export type SyncQuarantine = { sequence: number; reason: string }; /** Session-level synchronization state. */ -export type SyncState = - | { status: 'disabled' } - | { status: 'enabled'; peers: SyncPeerStatus[]; warning: string | null }; +export type SyncState = { status: 'disabled' } | { status: 'enabled'; peers: SyncPeerStatus[]; warning: string | null }; /** Transport-neutral Automerge envelope exchanged by trusted peers. */ export type SyncMessage = { @@ -189,8 +187,8 @@ export type DesktopSessionRepo = PersistentDocRepo & { /** * Creates the desktop repository adapter. Document bytes cross the Tauri - * command boundary only; this adapter keeps the renderer's legacy mirror in - * memory until the backend returns a committed snapshot. + * command boundary only; this adapter keeps the editor projection in memory + * until the backend returns a committed snapshot. */ export function createDesktopSessionRepo(fileOps: DesktopFileOps, opts: { api?: SessionApi } = {}): DesktopSessionRepo { const api = opts.api ?? createSessionApi(); @@ -365,10 +363,7 @@ export function createDesktopSessionRepo(fileOps: DesktopFileOps, opts: { api?: await ensureBoardLoaded(boardId); if (!currentStatus || !currentFile || !currentBoard) throw new Error('No board loaded'); const nextName = name.trim() || 'Untitled Board'; - const nextPath = joinPath( - parentPath(currentFile.path), - `${safeFileStem(nextName)}${canonicalExtension(currentFile.path)}` - ); + const nextPath = joinPath(parentPath(currentFile.path), `${safeFileStem(nextName)}.inkfinite`); const saved = await api.saveAs({ session_id: currentStatus.session_id, path: nextPath, @@ -637,16 +632,9 @@ export function isDesktopSessionRepo(repo: PersistentDocRepo): repo is DesktopSe } async function listDocumentEntries(fileOps: DesktopFileOps, directory: string) { - const [canonical, legacy] = await Promise.all([ - fileOps.readDirectory(directory, '*.inkfinite'), - fileOps.readDirectory(directory, '*.inkfinite.json') - ]); - const canonicalPaths = new Set(canonical.map((entry) => entry.path)); + const entries = await fileOps.readDirectory(directory, '*.inkfinite'); const seen = new Set(); - return [...canonical, ...legacy].filter((entry) => { - if (entry.path.endsWith('.inkfinite.json') && canonicalPaths.has(entry.path.slice(0, -5))) { - return false; - } + return entries.filter((entry) => { if (seen.has(entry.path)) return false; seen.add(entry.path); return true; @@ -654,10 +642,10 @@ async function listDocumentEntries(fileOps: DesktopFileOps, directory: string) { } function loadedDocFromSnapshot(snapshot: DocumentSnapshot): LoadedDoc { - const pages: Record = {}; - const layers: Record = {}; - const shapes: Record = {}; - const bindings: Record = {}; + const pages: Record = {}; + const layers: Record = {}; + const shapes: Record = {}; + const bindings: Record = {}; const shapeOrder: Record = {}; for (const pageId of snapshot.document.page_ids) { @@ -710,13 +698,13 @@ function flattenShape( shapeId: string, groupId: string | undefined, flattened: string[], - shapes: Record + shapes: Record ) { const shape = snapshot.document.shapes[shapeId]; if (!shape) return; if (shape.kind !== 'container') { flattened.push(shape.id); - shapes[shape.id] = { ...legacyShapeFromV2(shape, pageId, groupId), layerId }; + shapes[shape.id] = { ...editorShapeFromSnapshot(shape, pageId, groupId), layerId }; } for (const childId of shape.child_ids) { flattenShape( @@ -731,7 +719,7 @@ function flattenShape( } } -function legacyShapeFromV2(shape: ShapeRecord, pageId: string, groupId?: string): LegacyShapeRecord { +function editorShapeFromSnapshot(shape: ShapeRecord, pageId: string, groupId?: string): EditorShapeRecord { const properties = { ...(shape.properties as Record) }; if ('width' in properties) { properties.w = properties.width; @@ -752,7 +740,7 @@ function legacyShapeFromV2(shape: ShapeRecord, pageId: string, groupId?: string) } return { id: shape.id, - type: shape.kind as LegacyShapeRecord['type'], + type: shape.kind as EditorShapeRecord['type'], pageId, x: shape.transform.translation.x, y: shape.transform.translation.y, @@ -761,8 +749,8 @@ function legacyShapeFromV2(shape: ShapeRecord, pageId: string, groupId?: string) ...(shape.style.fill_opacity !== null ? { fillOpacity: shape.style.fill_opacity } : {}), ...(shape.style.stroke_opacity !== null ? { strokeOpacity: shape.style.stroke_opacity } : {}), ...(groupId ? { groupId } : {}), - props: properties as LegacyShapeRecord['props'] - } as LegacyShapeRecord; + props: properties as EditorShapeRecord['props'] + } as EditorShapeRecord; } function applyPatch(doc: LoadedDoc, patch: DocPatch): LoadedDoc { @@ -798,11 +786,11 @@ function documentFromLoadedDoc(doc: LoadedDoc, current: DocumentSnapshot, actor: } const layerIds = page.layerIds?.length ? page.layerIds : currentPage.layer_ids; for (const layerId of layerIds) { - const legacyLayer = doc.layers?.[layerId]; + const editorLayer = doc.layers?.[layerId]; const currentLayer = current.document.layers[layerId]; - if (!legacyLayer && !currentLayer) continue; + if (!editorLayer && !currentLayer) continue; const layerShapeIds = - legacyLayer?.shapeIds ?? page.shapeIds.filter((id) => doc.shapes[id]?.layerId === layerId); + editorLayer?.shapeIds ?? page.shapeIds.filter((id) => doc.shapes[id]?.layerId === layerId); const roots: string[] = []; for (const shapeId of layerShapeIds) { const shape = doc.shapes[shapeId]; @@ -820,11 +808,11 @@ function documentFromLoadedDoc(doc: LoadedDoc, current: DocumentSnapshot, actor: layers[layerId] = { id: layerId, page_id: pageId, - name: legacyLayer?.name ?? currentLayer?.name ?? 'Layer', + name: editorLayer?.name ?? currentLayer?.name ?? 'Layer', shape_ids: roots, - visible: legacyLayer?.visible ?? currentLayer?.visible ?? true, - locked: legacyLayer?.locked ?? currentLayer?.locked ?? false, - opacity: legacyLayer?.opacity ?? currentLayer?.opacity ?? 1, + visible: editorLayer?.visible ?? currentLayer?.visible ?? true, + locked: editorLayer?.locked ?? currentLayer?.locked ?? false, + opacity: editorLayer?.opacity ?? currentLayer?.opacity ?? 1, version: currentLayer?.version ?? 1 }; } @@ -839,7 +827,7 @@ function documentFromLoadedDoc(doc: LoadedDoc, current: DocumentSnapshot, actor: const location = shapePages.get(shape.id); if (!location) continue; const existing = current.document.shapes[shape.id]; - shapes[shape.id] = shapeFromLegacy(shape, location, existing, actor); + shapes[shape.id] = shapeFromEditor(shape, location, existing, actor); } for (const [groupId, childIds] of groupChildren) { const location = shapePages.get(childIds[0]); @@ -859,7 +847,7 @@ function documentFromLoadedDoc(doc: LoadedDoc, current: DocumentSnapshot, actor: }; } - const bindings: Record = {}; + const bindings: Record = {}; for (const binding of Object.values(doc.bindings)) { bindings[binding.id] = { id: binding.id, @@ -881,8 +869,8 @@ function documentFromLoadedDoc(doc: LoadedDoc, current: DocumentSnapshot, actor: }; } -function shapeFromLegacy( - shape: LegacyShapeRecord, +function shapeFromEditor( + shape: EditorShapeRecord, location: { pageId: string; layerId: string }, existing: ShapeRecord | undefined, actor: string @@ -988,17 +976,13 @@ function fileName(path: string): string { } function fileStem(name: string): string { - return name.replace(/\.inkfinite(?:\.json)?$/i, ''); + return name.replace(/\.inkfinite$/i, ''); } function safeFileStem(name: string): string { return name.replace(/[\\/:*?"<>|]/g, '-').trim() || 'Untitled'; } -function canonicalExtension(path: string): string { - return path.endsWith('.inkfinite.json') ? '.inkfinite.json' : '.inkfinite'; -} - function parentPath(path: string): string { const separator = Math.max(path.lastIndexOf('/'), path.lastIndexOf('\\')); return separator < 0 ? '.' : path.slice(0, separator); diff --git a/apps/desktop/src/lib/persistence/desktop.ts b/apps/desktop/src/lib/persistence/desktop.ts deleted file mode 100644 index 87e4be4..0000000 --- a/apps/desktop/src/lib/persistence/desktop.ts +++ /dev/null @@ -1,19 +0,0 @@ -/** - * Compatibility exports for desktop consumers. - * - * The desktop implementation is Rust-owned. Keep the historical module path - * available while routing every caller to the session-backed adapter. - */ -export { - createDesktopSessionRepo as createDesktopDocRepo, - isDesktopSessionRepo as isDesktopRepo, -} from "./desktop-session"; -export type { DesktopSessionRepo as DesktopDocRepo } from "./desktop-session"; - -import type { FileHandle, PersistentDocRepo } from "@inkfinite/core"; -import { isDesktopSessionRepo } from "./desktop-session"; - -/** Returns the path currently held by a Rust-backed desktop session. */ -export function getCurrentFile(repo: PersistentDocRepo): FileHandle | null { - return isDesktopSessionRepo(repo) ? repo.getCurrentFile() : null; -} diff --git a/apps/web/package.json b/apps/web/package.json index 0b42d2d..143440f 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -1,45 +1,49 @@ { - "name": "@inkfinite/web", - "private": true, - "version": "0.0.1", - "type": "module", - "scripts": { - "dev": "vite dev", - "build": "vite build", - "preview": "vite preview", - "prepare": "svelte-kit sync || echo ''", - "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", - "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", - "lint": "eslint . && prettier --check .", - "test:unit": "vitest", - "test": "npm run test:unit -- --run", - "format": "prettier --write ." - }, - "dependencies": { "dexie": "^4.2.1", "@inkfinite/core": "workspace:*", "@inkfinite/ui": "workspace:*" }, - "devDependencies": { - "@eslint/compat": "^1.4.0", - "@eslint/js": "^9.39.1", - "@sveltejs/adapter-static": "^3.0.10", - "@sveltejs/kit": "^2.49.1", - "@sveltejs/vite-plugin-svelte": "^6.2.1", - "@types/node": "^24", - "@vitest/browser-playwright": "^4.0.15", - "@inkfinite/runtime": "workspace:*", - "eslint": "^9.39.1", - "eslint-config-prettier": "^10.1.8", - "eslint-plugin-svelte": "^3.13.1", - "fake-indexeddb": "^6.0.0", - "globals": "^16.5.0", - "playwright": "^1.57.0", - "prettier": "^3.7.4", - "prettier-plugin-svelte": "^3.4.0", - "svelte": "^5.45.6", - "svelte-check": "^4.3.4", - "typescript": "^5.9.3", - "typescript-eslint": "^8.48.1", - "vite": "^7.2.6", - "vite-plugin-devtools-json": "^1.0.0", - "vitest": "^4.0.15", - "vitest-browser-svelte": "^2.0.1" - } + "name": "@inkfinite/web", + "private": true, + "version": "0.0.1", + "type": "module", + "scripts": { + "dev": "vite dev", + "build": "vite build", + "preview": "vite preview", + "prepare": "svelte-kit sync || echo ''", + "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", + "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", + "lint": "eslint . && prettier --check .", + "test:unit": "vitest", + "test": "npm run test:unit -- --run", + "format": "prettier --write ." + }, + "dependencies": { + "dexie": "^4.2.1", + "@inkfinite/core": "workspace:*", + "@inkfinite/ui": "workspace:*" + }, + "devDependencies": { + "@eslint/compat": "^1.4.0", + "@eslint/js": "^9.39.1", + "@sveltejs/adapter-static": "^3.0.10", + "@sveltejs/kit": "^2.49.1", + "@sveltejs/vite-plugin-svelte": "^6.2.1", + "@types/node": "^24", + "@vitest/browser-playwright": "^4.0.15", + "@inkfinite/runtime": "workspace:*", + "eslint": "^9.39.1", + "eslint-config-prettier": "^10.1.8", + "eslint-plugin-svelte": "^3.13.1", + "fake-indexeddb": "^6.0.0", + "globals": "^16.5.0", + "playwright": "^1.57.0", + "prettier": "^3.7.4", + "prettier-plugin-svelte": "^3.4.0", + "svelte": "^5.45.6", + "svelte-check": "^4.3.4", + "typescript": "^5.9.3", + "typescript-eslint": "^8.48.1", + "vite": "^7.2.6", + "vite-plugin-devtools-json": "^1.0.0", + "vitest": "^4.0.15", + "vitest-browser-svelte": "^2.0.1" + } } diff --git a/apps/web/src/dexie-repository.test.ts b/apps/web/src/dexie-repository.test.ts index 923a133..c23ef03 100644 --- a/apps/web/src/dexie-repository.test.ts +++ b/apps/web/src/dexie-repository.test.ts @@ -1,5 +1,5 @@ import "fake-indexeddb/auto"; -import { InkfiniteDB, runMigrations } from "$lib/persistence/database"; +import { InkfiniteDB } from "$lib/persistence/database"; import { createDexieDocRepo, createPersistenceSink } from "$lib/persistence/repository"; import { CreateShapeCommand, @@ -216,75 +216,6 @@ describe("History persistence sink", () => { }); }); -describe("runMigrations", () => { - it("backfills timestamps and default page/order", async () => { - const db = new Dexie(`migrations-test-${Math.random().toString(36).slice(2)}`); - db.version(1).stores({ - boards: "id, name, createdAt, updatedAt", - pages: "[boardId+id], boardId, updatedAt", - shapes: "[boardId+id], boardId, type, updatedAt", - bindings: "[boardId+id], boardId, type, updatedAt", - meta: "key", - migrations: "id, appliedAt", - }); - openDbs.push(db); - await db.open(); - await db.table("boards").add({ id: "board:legacy", name: "Legacy Board" }); - - await db.transaction("rw", db.tables, async (tx) => { - await runMigrations(tx); - }); - - const board = await db.table("boards").get("board:legacy"); - expect(board?.createdAt).toBeTypeOf("number"); - expect(board?.updatedAt).toBeTypeOf("number"); - - const pages = await db.table("pages").where("boardId").equals("board:legacy").toArray(); - expect(pages).toHaveLength(1); - - const pageOrder = await db.table("meta").get(`page-order:board:legacy`); - expect(pageOrder?.value).toEqual([pages[0]!.id]); - - const shapeOrder = await db.table("meta").get(`shape-order:board:legacy`); - expect(shapeOrder?.value).toEqual({ [pages[0]!.id]: [] }); - - const migrations = await db.table("migrations").toArray(); - expect(migrations.map((row) => row.id)).toContain("MIG-0001"); - expect(migrations.map((row) => row.id)).toContain("MIG-0002"); - }); - - it("does not re-apply already applied migrations", async () => { - const db = new Dexie(`migrations-repeat-${Math.random().toString(36).slice(2)}`); - db.version(1).stores({ - boards: "id, name, createdAt, updatedAt", - pages: "[boardId+id], boardId, updatedAt", - shapes: "[boardId+id], boardId, type, updatedAt", - bindings: "[boardId+id], boardId, type, updatedAt", - meta: "key", - migrations: "id, appliedAt", - }); - openDbs.push(db); - await db.open(); - await db.table("boards").add({ id: "board:legacy-two", name: "Legacy", createdAt: 1, updatedAt: 1 }); - - await db.transaction("rw", db.tables, async (tx) => { - await runMigrations(tx); - }); - - const migrationsAfterFirstRun = await db.table("migrations").toArray(); - - await db.table("pages").clear(); - await db.table("meta").clear(); - - await db.transaction("rw", db.tables, async (tx) => { - await runMigrations(tx); - }); - - const migrationsAfterSecondRun = await db.table("migrations").toArray(); - expect(migrationsAfterSecondRun).toHaveLength(migrationsAfterFirstRun.length); - }); -}); - async function createStoreWithSink(repo: ReturnType, boardId: string) { const sink = createPersistenceSink(repo, { debounceMs: 10 }); const applySpy = vi.spyOn(repo, "applyDocPatch"); diff --git a/apps/web/src/lib/persistence/database.ts b/apps/web/src/lib/persistence/database.ts index fcbe890..cebf6b8 100644 --- a/apps/web/src/lib/persistence/database.ts +++ b/apps/web/src/lib/persistence/database.ts @@ -1,18 +1,10 @@ -import { type BoardMeta, PageRecord as PageOps, type Timestamp } from "@inkfinite/core"; -import Dexie, { type Transaction } from "dexie"; -import type { BindingRow, MetaRow, MigrationRow, PageRow, ShapeRow } from "./repository"; +import type { BoardMeta } from "@inkfinite/core"; +import Dexie from "dexie"; +import type { BindingRow, MetaRow, PageRow, ShapeRow } from "./repository"; /** Default IndexedDB database name for the static web application. */ export const DB_NAME = "inkfinite"; -type Migration = { id: string; apply(tx: Transaction): Promise }; - -const PAGE_ORDER_META_PREFIX = "page-order:"; -const SHAPE_ORDER_META_PREFIX = "shape-order:"; - -const pageOrderKey = (boardId: string) => `${PAGE_ORDER_META_PREFIX}${boardId}`; -const shapeOrderKey = (boardId: string) => `${SHAPE_ORDER_META_PREFIX}${boardId}`; - /** * Dexie database owned by the static web application's persistence adapter. */ @@ -22,88 +14,16 @@ export class InkfiniteDB extends Dexie { shapes!: Dexie.Table; bindings!: Dexie.Table; meta!: Dexie.Table; - migrations!: Dexie.Table; constructor(name = DB_NAME) { super(name); - this.version(1).stores({ + this.version(2).stores({ boards: "id, name, createdAt, updatedAt", pages: "[boardId+id], boardId, updatedAt", shapes: "[boardId+id], boardId, type, updatedAt", bindings: "[boardId+id], boardId, type, updatedAt", meta: "key", - migrations: "id, appliedAt", - }).upgrade(async (tx) => { - await runMigrations(tx); }); } } - -const MIGRATIONS: Migration[] = [{ - id: "MIG-0001", - async apply(tx) { - const boards = tx.table("boards"); - const rows = await boards.toArray(); - const timestamp = Date.now(); - - for (const row of rows) { - const patch: Partial = {}; - if (!row.createdAt) { - patch.createdAt = timestamp; - } - if (!row.updatedAt) { - patch.updatedAt = timestamp; - } - - if (Object.keys(patch).length > 0) { - await boards.update(row.id, patch); - } - } - }, -}, { - id: "MIG-0002", - async apply(tx) { - const boards = tx.table("boards"); - const pages = tx.table("pages"); - const meta = tx.table("meta"); - const rows = await boards.toArray(); - const timestamp = Date.now(); - - for (const row of rows) { - const pageCount = await pages.where("boardId").equals(row.id).count(); - if (pageCount > 0) { - continue; - } - - const defaultPage = PageOps.create("Page 1"); - await pages.add({ ...defaultPage, boardId: row.id, updatedAt: timestamp }); - await meta.put({ key: pageOrderKey(row.id), value: [defaultPage.id] }); - await meta.put({ key: shapeOrderKey(row.id), value: { [defaultPage.id]: [...defaultPage.shapeIds] } }); - await boards.update(row.id, { updatedAt: timestamp }); - } - }, -}]; - -/** - * Known migration IDs for tracking pending migrations in the inspector. - */ -export const KNOWN_MIGRATION_IDS = MIGRATIONS.map((m) => m.id); - -/** - * Run pending logical migrations during schema upgrades - */ -export async function runMigrations(tx: Transaction): Promise { - const migrations = tx.table("migrations"); - const applied = await migrations.toArray(); - const appliedIds = new Set(applied.map((row) => row.id)); - - for (const migration of MIGRATIONS) { - if (appliedIds.has(migration.id)) { - continue; - } - - await migration.apply(tx); - await migrations.put({ id: migration.id, appliedAt: Date.now() as Timestamp }); - } -} diff --git a/apps/web/src/lib/persistence/dexie.ts b/apps/web/src/lib/persistence/dexie.ts index 3ef865a..a77438b 100644 --- a/apps/web/src/lib/persistence/dexie.ts +++ b/apps/web/src/lib/persistence/dexie.ts @@ -2,7 +2,7 @@ import { type DocPatch, type PersistenceSink, type PersistentDocRepo } from '@in import { createStatusStore } from '@inkfinite/ui/editor'; import type { EditorPlatformAdapter, EditorPlatformSession } from '@inkfinite/ui/editor'; import { liveQuery } from 'dexie'; -import { InkfiniteDB, KNOWN_MIGRATION_IDS } from './database'; +import { InkfiniteDB } from './database'; import { createDexieDocRepo, createPersistenceSink, getBoardInspectorData } from './repository'; import type { PersistenceSinkOptions } from './repository'; @@ -83,7 +83,7 @@ export function createDexieSession( repo, sink: trackedSink, status, - inspectBoard: (boardId) => getBoardInspectorData(database, boardId, KNOWN_MIGRATION_IDS), + inspectBoard: (boardId) => getBoardInspectorData(database, boardId), setActiveBoard(boardId) { if (activeBoardId === boardId) return; subscription?.unsubscribe(); diff --git a/apps/web/src/lib/persistence/repository.ts b/apps/web/src/lib/persistence/repository.ts index 06b2c65..b6b8853 100644 --- a/apps/web/src/lib/persistence/repository.ts +++ b/apps/web/src/lib/persistence/repository.ts @@ -2,7 +2,6 @@ import { BindingRecord as BindingOps, BoardStatsOps, createId, - getPendingMigrations, LayerRecord as LayerOps, PageRecord as PageOps, ShapeRecord as ShapeOps @@ -18,7 +17,6 @@ import type { Document, LoadedDoc, LayerRecord, - MigrationInfo, PageRecord, PersistenceSink, PersistentDocRepo, @@ -40,9 +38,6 @@ export type BindingRow = BindingRecord & { boardId: string; updatedAt: Timestamp /** Key-value metadata stored alongside document rows. */ export type MetaRow = { key: string; value: unknown }; -/** Record of a completed IndexedDB data migration. */ -export type MigrationRow = { id: string; appliedAt: Timestamp }; - /** Debounce configuration for the web persistence sink. */ export type PersistenceSinkOptions = { debounceMs?: number }; @@ -565,28 +560,8 @@ export async function getSchemaInfo(database: Dexie): Promise { return { declaredVersion: database.verno, installedVersion: database.verno }; } -/** - * Fetch applied migrations from the migrations table. - */ -export async function getAppliedMigrations(database: DexieLike): Promise { - const migrations = database.table('migrations'); - return migrations.orderBy('appliedAt').toArray(); -} - -/** - * Fetch complete inspector data for a board including stats, schema, and migrations. - */ -export async function getBoardInspectorData( - database: Dexie, - boardId: string, - knownMigrationIds: string[] -): Promise { - const [stats, schema, migrations] = await Promise.all([ - getBoardStats(database, boardId), - getSchemaInfo(database), - getAppliedMigrations(database) - ]); - - const pendingMigrations = getPendingMigrations(knownMigrationIds, migrations); - return { storageType: 'IndexedDB (Dexie)', stats, schema, migrations, pendingMigrations }; +/** Fetch complete inspector data for a board. */ +export async function getBoardInspectorData(database: Dexie, boardId: string): Promise { + const [stats, schema] = await Promise.all([getBoardStats(database, boardId), getSchemaInfo(database)]); + return { storageType: 'IndexedDB (Dexie)', stats, schema }; } diff --git a/apps/web/src/lib/tests/components/FileBrowser.svelte.test.ts b/apps/web/src/lib/tests/components/FileBrowser.svelte.test.ts index 8e6290d..10470f9 100644 --- a/apps/web/src/lib/tests/components/FileBrowser.svelte.test.ts +++ b/apps/web/src/lib/tests/components/FileBrowser.svelte.test.ts @@ -149,9 +149,7 @@ describe("FileBrowser", () => { const fetchInspectorData = vi.fn().mockResolvedValue({ storageType: "IndexedDB (Dexie)", stats: { pageCount: 2, shapeCount: 10, bindingCount: 3, docSizeBytes: 2048, lastUpdated: 3000 }, - schema: { declaredVersion: 1, installedVersion: 1 }, - migrations: [{ id: "MIG-0001", appliedAt: 1000 }, { id: "MIG-0002", appliedAt: 2000 }], - pendingMigrations: [], + schema: { declaredVersion: 2, installedVersion: 2 }, }); render(FileBrowser, { vm, open: true, fetchInspectorData }); @@ -170,9 +168,7 @@ describe("FileBrowser", () => { const fetchInspectorData = vi.fn().mockResolvedValue({ storageType: "IndexedDB (Dexie)", stats: { pageCount: 2, shapeCount: 10, bindingCount: 3, docSizeBytes: 2048, lastUpdated: 3000 }, - schema: { declaredVersion: 1, installedVersion: 1 }, - migrations: [], - pendingMigrations: [], + schema: { declaredVersion: 2, installedVersion: 2 }, }); render(FileBrowser, { vm, open: true, fetchInspectorData }); @@ -195,9 +191,7 @@ describe("FileBrowser", () => { const fetchInspectorData = vi.fn().mockResolvedValue({ storageType: "IndexedDB (Dexie)", stats: { pageCount: 2, shapeCount: 10, bindingCount: 3, docSizeBytes: 2048, lastUpdated: 3000 }, - schema: { declaredVersion: 1, installedVersion: 1 }, - migrations: [], - pendingMigrations: [], + schema: { declaredVersion: 2, installedVersion: 2 }, }); render(FileBrowser, { vm, open: true, fetchInspectorData }); @@ -212,52 +206,6 @@ describe("FileBrowser", () => { await expect.element(page.getByText("Installed Version:")).toBeVisible(); }); - it("should display migrations in inspector", async () => { - const boards = createMockBoards(); - const vm = createMockVM(boards); - const fetchInspectorData = vi.fn().mockResolvedValue({ - storageType: "IndexedDB (Dexie)", - stats: { pageCount: 2, shapeCount: 10, bindingCount: 3, docSizeBytes: 2048, lastUpdated: 3000 }, - schema: { declaredVersion: 1, installedVersion: 1 }, - migrations: [{ id: "MIG-0001", appliedAt: 1000 }, { id: "MIG-0002", appliedAt: 2000 }], - pendingMigrations: [], - }); - - render(FileBrowser, { vm, open: true, fetchInspectorData }); - - const inspectButtons = page.getByLabelText(/inspect board/i); - const buttons = inspectButtons.all(); - const firstButton = buttons[0]; - await firstButton.click(); - - await expect.element(page.getByText("Migrations")).toBeVisible(); - await expect.element(page.getByText("MIG-0001")).toBeVisible(); - await expect.element(page.getByText("MIG-0002")).toBeVisible(); - }); - - it("should show pending migrations warning when present", async () => { - const boards = createMockBoards(); - const vm = createMockVM(boards); - const fetchInspectorData = vi.fn().mockResolvedValue({ - storageType: "IndexedDB (Dexie)", - stats: { pageCount: 2, shapeCount: 10, bindingCount: 3, docSizeBytes: 2048, lastUpdated: 3000 }, - schema: { declaredVersion: 1, installedVersion: 1 }, - migrations: [{ id: "MIG-0001", appliedAt: 1000 }], - pendingMigrations: ["MIG-0002", "MIG-0003"], - }); - - render(FileBrowser, { vm, open: true, fetchInspectorData }); - - const inspectButtons = page.getByLabelText(/inspect board/i); - const buttons = inspectButtons.all(); - const firstButton = buttons[0]; - await firstButton.click(); - - await expect.element(page.getByText(/Pending Migrations:/i)).toBeVisible(); - await expect.element(page.getByText("MIG-0002")).toBeVisible(); - await expect.element(page.getByText("MIG-0003")).toBeVisible(); - }); - it("should show error when inspector data fetch fails", async () => { const boards = createMockBoards(); const vm = createMockVM(boards); diff --git a/apps/web/src/v1-compatibility.test.ts b/apps/web/src/v1-compatibility.test.ts deleted file mode 100644 index ab6e9b8..0000000 --- a/apps/web/src/v1-compatibility.test.ts +++ /dev/null @@ -1,161 +0,0 @@ -import "fake-indexeddb/auto"; -import { InkfiniteDB } from "$lib/persistence/database"; -import { createDexieDocRepo } from "$lib/persistence/repository"; -import { - type BoardExport, - DeleteShapesCommand, - type DesktopFileData, - type EditorState, - hitTestPoint, - parseDesktopFile, - type ShapeRecord as Shape, - stencils, - Store, - UpdateShapeCommand, - validateDoc, -} from "@inkfinite/core"; -import Dexie from "dexie"; -import { readFileSync } from "node:fs"; -import { dirname, resolve } from "node:path"; -import { fileURLToPath } from "node:url"; -import { afterEach, describe, expect, it } from "vitest"; - -const repositoryRoot = resolve(dirname(fileURLToPath(import.meta.url)), "../../.."); -const openDatabases: Dexie[] = []; - -function readFixture(relativePath: string): T { - return JSON.parse(readFileSync(resolve(repositoryRoot, "fixtures/v1", relativePath), "utf8")) as T; -} - -afterEach(async () => { - await Promise.all(openDatabases.map((database) => database.delete())); - openDatabases.length = 0; -}); - -describe("frozen v1 compatibility fixtures", () => { - it("covers every shape kind, pages, bindings, groups, Markdown, stencils, and persisted order", () => { - const fixture = readFixture("desktop/all-features.inkfinite.json"); - const manifest = readFixture< - { coverage: { shapeTypes: string[]; stencilIds: string[]; groupIds: string[]; bindingIds: string[] } } - >("manifest.json"); - - expect(validateDoc(fixture.doc)).toEqual({ ok: true }); - expect([...new Set(Object.values(fixture.doc.shapes).map((shape) => shape.type))].sort()).toEqual( - [...manifest.coverage.shapeTypes].sort(), - ); - expect([...new Set(Object.values(fixture.doc.shapes).flatMap((shape) => shape.groupId ?? []))].sort()).toEqual( - [...manifest.coverage.groupIds].sort(), - ); - expect(Object.keys(fixture.doc.bindings).sort()).toEqual([...manifest.coverage.bindingIds].sort()); - expect(Object.values(fixture.doc.shapes).find((shape) => shape.type === "markdown")?.props).toMatchObject({ - md: expect.stringContaining("Frozen Markdown"), - w: 360, - h: 240, - }); - expect(fixture.order.pageIds).toEqual(["page:ordering", "page:fixtures"]); - for (const page of Object.values(fixture.doc.pages)) { - expect(fixture.order.shapeOrder?.[page.id]).toEqual(page.shapeIds); - } - - stencils.registerBuiltinStencils(); - const builtInStencilIds = new Set(stencils.registry.getAll().map((stencil) => stencil.id)); - expect(manifest.coverage.stencilIds.every((id) => builtInStencilIds.has(id))).toBe(true); - expect(stencils.registry.get("ui:card")?.spawn({ x: 20, y: 30 }).map((shape) => shape.type)).toEqual([ - "rect", - "line", - ]); - }); - - it("imports and exports the complete web fixture without semantic or ordering drift", async () => { - const fixture = readFixture("web/all-features.web.json"); - const database = new InkfiniteDB(`v1-fixture-${crypto.randomUUID()}`); - openDatabases.push(database); - const repo = createDexieDocRepo(database); - - const boardId = await repo.importBoard(fixture); - await repo.openBoard(boardId); - const exported = await repo.exportBoard(boardId); - - expect(exported.doc).toEqual(fixture.doc); - expect(exported.order).toEqual(fixture.order); - expect(exported.board).toMatchObject({ id: fixture.board.id, name: fixture.board.name }); - }); - - it("opens and serializes the desktop fixture without losing document order", () => { - const source = readFileSync(resolve(repositoryRoot, "fixtures/v1/desktop/all-features.inkfinite.json"), "utf8"); - const parsed = parseDesktopFile(source); - const reopened = parseDesktopFile(JSON.stringify(parsed, null, 2)); - - expect(reopened).toEqual(parsed); - expect(reopened.order.shapeOrder).toEqual( - Object.fromEntries(Object.values(reopened.doc.pages).map((page) => [page.id, page.shapeIds])), - ); - }); - - it("keeps invalid fixtures invalid instead of repairing them into the baseline", () => { - const malformed = readFileSync( - resolve(repositoryRoot, "fixtures/v1/invalid/malformed-json.inkfinite.json"), - "utf8", - ); - expect(() => parseDesktopFile(malformed)).toThrow(SyntaxError); - - const missingFields = readFileSync( - resolve(repositoryRoot, "fixtures/v1/invalid/missing-envelope-fields.json"), - "utf8", - ); - expect(() => parseDesktopFile(missingFields)).toThrow("missing required fields"); - - for (const fixtureName of ["dangling-references.inkfinite.json", "duplicate-order.inkfinite.json"]) { - const fixture = readFixture(`invalid/${fixtureName}`); - const result = validateDoc(fixture.doc); - expect(result.ok).toBe(false); - if (!result.ok) expect(result.errors.length).toBeGreaterThan(0); - } - }); - - it("preserves hit-test priority from persisted shape ordering", () => { - const fixture = readFixture("desktop/all-features.inkfinite.json"); - const state: EditorState = { - doc: fixture.doc, - ui: { currentPageId: "page:ordering", selectionIds: [], toolId: "select" }, - camera: { x: 0, y: 0, zoom: 1 }, - }; - - expect(hitTestPoint(state, { x: 190, y: 190 })).toBe("shape:ordering-front"); - expect(hitTestPoint(state, { x: 159, y: 159 })).toBe("shape:ordering-middle"); - expect(hitTestPoint(state, { x: 110, y: 110 })).toBe("shape:ordering-back"); - expect(hitTestPoint(state, { x: 500, y: 500 })).toBeNull(); - }); - - it("replays and undoes the frozen history-relevant edits", () => { - const fixture = readFixture< - { - initialState: EditorState; - edits: Array<{ kind: string; shapeId: string; patch?: Partial & { props?: Record } }>; - expectedAfterUndoAll: { shapeId: string; x: number; y: number; fill: string }; - } - >("history/history-edits.json"); - const store = new Store(fixture.initialState); - - for (const edit of fixture.edits) { - const current = store.getState().doc.shapes[edit.shapeId]; - expect(current).toBeDefined(); - if (edit.kind === "delete-shape") { - store.executeCommand(new DeleteShapesCommand([current], current.pageId)); - continue; - } - const patch = edit.patch ?? {}; - const next = { ...current, ...patch, props: { ...current.props, ...(patch.props ?? {}) } } as Shape; - store.executeCommand(new UpdateShapeCommand(current.id, current, next)); - } - - expect(store.getState().doc.shapes[fixture.expectedAfterUndoAll.shapeId]).toBeUndefined(); - expect(store.undo()).toBe(true); - expect(store.undo()).toBe(true); - expect(store.undo()).toBe(true); - - const restored = store.getState().doc.shapes[fixture.expectedAfterUndoAll.shapeId]; - expect(restored).toMatchObject({ x: fixture.expectedAfterUndoAll.x, y: fixture.expectedAfterUndoAll.y }); - expect(restored.type === "rect" ? restored.props.fill : undefined).toBe(fixture.expectedAfterUndoAll.fill); - }); -}); diff --git a/crates/inkfinite-cli/src/bin/generate-bindings.rs b/crates/inkfinite-cli/src/bin/generate-bindings.rs index 52778ec..00fdc97 100644 --- a/crates/inkfinite-cli/src/bin/generate-bindings.rs +++ b/crates/inkfinite-cli/src/bin/generate-bindings.rs @@ -94,7 +94,7 @@ fn artifacts() -> Result, Box> { insert_schema::(&mut artifacts, "schemas/protocol-response.schema.json")?; insert_schema::(&mut artifacts, "schemas/protocol-error.schema.json")?; - artifacts.insert(PathBuf::from("fixtures/v2/shape-registry.json"), fixture_json()?); + artifacts.insert(PathBuf::from("fixtures/native/shape-registry.json"), fixture_json()?); artifacts.insert(PathBuf::from("packages/bindings/src/model.ts"), model_bindings()); artifacts.insert( PathBuf::from("packages/bindings/src/transaction.ts"), @@ -314,7 +314,7 @@ fn fixture_shape() -> inkfinite_core::ShapeRecord { actor_id: ActorId::from("actor:fixture"), origin: Origin::System, timestamp: Timestamp(1_700_000_000_000), - source: Some("v2-06".into()), + source: Some("native-fixture".into()), }, }, style: ShapeStyle { opacity: Opacity::OPAQUE, fill_opacity: None, stroke_opacity: None }, @@ -328,7 +328,7 @@ fn fixture_transaction() -> TransactionDraft { actor_id: ActorId::from("actor:fixture"), origin: Origin::System, base_heads: vec![ChangeHash::from("head:fixture")], - description: "V2-06 shared binding fixture".into(), + description: "Native shared binding fixture".into(), operations: vec![Operation::PatchShape { shape_id: ShapeId::from("shape:fixture"), patch: ShapePatch { diff --git a/crates/inkfinite-cli/tests/cli.rs b/crates/inkfinite-cli/tests/cli.rs index f8117de..8b692ea 100644 --- a/crates/inkfinite-cli/tests/cli.rs +++ b/crates/inkfinite-cli/tests/cli.rs @@ -709,7 +709,7 @@ fn live_propose_accept_partial_and_authorized_apply_round_trip_through_cli() { id: TransactionId("transaction:proposal".into()), actor_id: actor.clone(), origin: Origin::Agent, - base_heads: snapshot.heads.clone(), + base_heads: snapshot.heads, description: "preview a page rename".into(), operations: vec![Operation::RenamePage { page_id: page_id.clone(), @@ -726,9 +726,9 @@ fn live_propose_accept_partial_and_authorized_apply_round_trip_through_cli() { let mut service = SessionService::new(); let opened = service.open(&document_path, actor.clone()).unwrap(); - let session_id = opened.session_id.clone(); + let session_id = opened.session_id; let authorization = service.authorize_apply(&session_id).unwrap(); - let authorization_token = authorization.token.clone(); + let authorization_token = authorization.token; let previous_discovery = ipc::read_discovery(&ipc::discovery_path()).ok(); let discovery = DiscoveryRecord { diff --git a/crates/inkfinite-core/src/crdt/tests.rs b/crates/inkfinite-core/src/crdt/tests.rs index 64a1665..f2a5730 100644 --- a/crates/inkfinite-core/src/crdt/tests.rs +++ b/crates/inkfinite-core/src/crdt/tests.rs @@ -84,7 +84,7 @@ fn changes_and_transport_independent_sync_converge() { } #[test] -#[ignore = "large production benchmark; run explicitly for V2 performance verification"] +#[ignore = "large production benchmark; run explicitly for performance verification"] fn ten_thousand_shape_projection_round_trips() { let mut document = empty_document(); for index in 0_u32..10_000 { diff --git a/crates/inkfinite-core/src/file/migration.rs b/crates/inkfinite-core/src/file/migration.rs deleted file mode 100644 index de6d56a..0000000 --- a/crates/inkfinite-core/src/file/migration.rs +++ /dev/null @@ -1,670 +0,0 @@ -//! Migration from the frozen v1 desktop/web JSON envelope to the v2 model. - -use std::collections::{BTreeMap, BTreeSet}; - -use crate::engine::{TransactionEngine, validate_document}; -use crate::{ - ActorId, BindingAnchor, BindingId, BindingKind, BindingRecord, Document, DocumentId, LayerId, LayerRecord, Opacity, - Origin, PageId, PageRecord, Provenance, RecordVersion, SemanticMetadata, ShapeId, ShapeKind, ShapeParent, - ShapeProperties, ShapeRecord, ShapeStyle, Timestamp, Transform, Vec2, builtin_shape_kinds, - validate_shape_properties, -}; -use serde::Deserialize; -use serde_json::{Map, Value}; - -use super::FileError; - -/// A normalized v2 document produced by importing a v1 JSON file. -#[derive(Clone, Debug)] -pub struct ImportedV1 { - /// The v1 board ID used as the v2 document ID. - pub document_id: DocumentId, - /// Board name retained for callers that display migration information. - pub board_name: String, - /// Original v1 creation timestamp. - pub created_at: Timestamp, - /// Original v1 update timestamp. - pub updated_at: Timestamp, - /// Normalized v2 records. - pub document: Document, -} - -impl ImportedV1 { - /// Consumes the import result and returns its normalized document. - #[must_use] - pub fn into_document(self) -> Document { - self.document - } - - /// Creates a Rust-owned transaction engine from the imported document. - /// - /// # Errors - /// - /// Returns an error when the actor ID is empty or the normalized document - /// cannot be encoded by the CRDT adapter. - pub fn into_engine(self, actor_id: ActorId) -> Result { - if actor_id.as_str().trim().is_empty() { - return Err(invalid_v1("import actor ID must not be empty")); - } - Ok(TransactionEngine::create(self.document_id, actor_id, self.document)?) - } -} - -/// Parses and migrates a frozen v1 JSON envelope. -/// -/// The importer does not repair malformed input. It validates ownership and -/// ordering, creates one stable default layer per page, and returns a typed -/// error before any destination file can be touched. -/// -/// # Errors -/// -/// Returns [`FileError::Json`] for malformed JSON, [`FileError::UnsupportedFormat`] -/// for a recognized newer envelope, or [`FileError::InvalidV1`] for invalid v1 -/// records and references. -#[allow(clippy::needless_pass_by_value)] -pub fn import_v1_json(input: &str, actor_id: ActorId) -> Result { - if actor_id.as_str().trim().is_empty() { - return Err(invalid_v1("import actor ID must not be empty")); - } - let value: Value = serde_json::from_str(input)?; - reject_newer_format(&value)?; - let envelope: LegacyEnvelope = - serde_json::from_value(value).map_err(|error| invalid_v1(format!("invalid envelope: {error}")))?; - migrate(envelope, &actor_id) -} - -/// Alias for [`import_v1_json`] for callers that prefer parser terminology. -/// -/// # Errors -/// -/// Returns the same typed import, format, and JSON errors as -/// [`import_v1_json`]. -pub fn parse_v1_json(input: &str, actor_id: ActorId) -> Result { - import_v1_json(input, actor_id) -} - -#[derive(Debug, Deserialize)] -#[serde(rename_all = "camelCase")] -struct LegacyEnvelope { - board: LegacyBoard, - doc: LegacyDocument, - order: LegacyOrder, -} - -#[derive(Debug, Deserialize)] -#[serde(rename_all = "camelCase")] -struct LegacyBoard { - id: String, - name: String, - created_at: i64, - updated_at: i64, -} - -#[derive(Debug, Deserialize)] -struct LegacyDocument { - pages: BTreeMap, - shapes: BTreeMap, - bindings: BTreeMap, -} - -#[derive(Debug, Deserialize)] -#[serde(rename_all = "camelCase")] -struct LegacyPage { - id: String, - name: String, - shape_ids: Vec, -} - -#[derive(Debug, Deserialize)] -#[serde(rename_all = "camelCase")] -struct LegacyShape { - id: String, - #[serde(rename = "type")] - shape_type: String, - page_id: String, - x: f64, - y: f64, - rot: f64, - #[serde(default)] - opacity: Option, - #[serde(default)] - fill_opacity: Option, - #[serde(default)] - stroke_opacity: Option, - #[serde(default)] - group_id: Option, - props: Map, -} - -#[derive(Debug, Deserialize)] -#[serde(rename_all = "camelCase")] -struct LegacyBinding { - id: String, - #[serde(rename = "type")] - binding_type: String, - from_shape_id: String, - to_shape_id: String, - handle: String, - anchor: LegacyAnchor, -} - -#[derive(Debug, Deserialize)] -#[serde(rename_all = "lowercase", tag = "kind")] -enum LegacyAnchor { - Center, - Edge { nx: f64, ny: f64 }, -} - -#[derive(Debug, Deserialize)] -#[serde(rename_all = "camelCase")] -struct LegacyOrder { - page_ids: Vec, - #[serde(default)] - shape_order: Option>>, -} - -#[derive(Clone)] -struct GroupInfo { - page_id: PageId, - shape_ids: Vec, - positions: Vec, -} - -#[allow(clippy::too_many_lines)] -fn migrate(envelope: LegacyEnvelope, actor_id: &ActorId) -> Result { - let LegacyEnvelope { board, doc, order } = envelope; - if board.id.trim().is_empty() { - return Err(invalid_v1("board.id must not be empty")); - } - if doc.pages.is_empty() { - return Err(invalid_v1("doc.pages must contain at least one page")); - } - - let document_id = DocumentId::from(board.id.clone()); - let page_ids = validate_page_order(&doc.pages, &order)?; - let ordered_shapes = validate_shape_order(&doc, &order, &page_ids)?; - validate_shape_keys(&doc.shapes)?; - validate_binding_keys(&doc.bindings)?; - - let timestamp = Timestamp(board.updated_at); - let mut groups = BTreeMap::::new(); - let mut seen_shapes = BTreeSet::new(); - for page_id in &page_ids { - let shape_ids = ordered_shapes - .get(page_id) - .ok_or_else(|| invalid_v1(format!("missing order for page {page_id}")))?; - for (position, shape_id) in shape_ids.iter().enumerate() { - if !seen_shapes.insert(shape_id.clone()) { - return Err(invalid_v1(format!( - "shape {shape_id} appears more than once in persisted order" - ))); - } - let legacy_shape = doc - .shapes - .get(shape_id) - .ok_or_else(|| invalid_v1(format!("page {page_id} refers to missing shape {shape_id}")))?; - if legacy_shape.page_id != page_id.as_str() { - return Err(invalid_v1(format!( - "shape {shape_id} belongs to page {}, not {page_id}", - legacy_shape.page_id - ))); - } - if let Some(group_id) = legacy_shape.group_id.as_deref() { - if group_id.trim().is_empty() { - return Err(invalid_v1(format!("shape {shape_id} has an empty groupId"))); - } - let group = groups.entry(group_id.to_owned()).or_insert_with(|| GroupInfo { - page_id: page_id.clone(), - shape_ids: Vec::new(), - positions: Vec::new(), - }); - if group.page_id != *page_id { - return Err(invalid_v1(format!("group {group_id} spans multiple pages"))); - } - group.shape_ids.push(ShapeId::from(shape_id.as_str())); - group.positions.push(position); - } - } - } - if seen_shapes.len() != doc.shapes.len() { - let missing = doc - .shapes - .keys() - .find(|shape_id| !seen_shapes.contains(*shape_id)) - .cloned() - .unwrap_or_else(|| "".into()); - return Err(invalid_v1(format!( - "shape {missing} is not present in any persisted page order" - ))); - } - for group_id in groups.keys() { - if doc.shapes.contains_key(group_id) { - return Err(invalid_v1(format!("group ID {group_id} collides with a shape ID"))); - } - } - - let container_groups: BTreeSet = groups - .iter() - .filter(|(_, group)| group.shape_ids.len() > 1 && is_contiguous(&group.positions)) - .map(|(group_id, _)| group_id.clone()) - .collect(); - - let mut pages = BTreeMap::new(); - let mut layers = BTreeMap::new(); - for page_id in &page_ids { - let legacy_page = doc - .pages - .get(page_id.as_str()) - .ok_or_else(|| invalid_v1(format!("page order refers to missing page {page_id}")))?; - let layer_id = default_layer_id(page_id); - let shape_ids = ordered_shapes - .get(page_id) - .ok_or_else(|| invalid_v1(format!("missing order for page {page_id}")))?; - let mut layer_shape_ids = Vec::new(); - let mut added_groups = BTreeSet::new(); - for shape_id in shape_ids { - let group_id = doc.shapes.get(shape_id).and_then(|shape| shape.group_id.as_deref()); - if let Some(group_id) = group_id - && container_groups.contains(group_id) - { - if added_groups.insert(group_id.to_owned()) { - layer_shape_ids.push(ShapeId::from(group_id)); - } - } else { - layer_shape_ids.push(ShapeId::from(shape_id.as_str())); - } - } - pages.insert( - page_id.clone(), - PageRecord { - id: page_id.clone(), - name: checked_name(&legacy_page.name, "page", page_id.as_str())?, - layer_ids: vec![layer_id.clone()], - version: RecordVersion(1), - }, - ); - layers.insert( - layer_id.clone(), - LayerRecord { - id: layer_id, - page_id: page_id.clone(), - name: "Default".into(), - shape_ids: layer_shape_ids, - visible: true, - locked: false, - opacity: Opacity::OPAQUE, - version: RecordVersion(1), - }, - ); - } - - let mut shapes = BTreeMap::new(); - for page_id in &page_ids { - let layer_id = default_layer_id(page_id); - for shape_id in ordered_shapes - .get(page_id) - .ok_or_else(|| invalid_v1(format!("missing order for page {page_id}")))? - { - let legacy_shape = doc - .shapes - .get(shape_id) - .ok_or_else(|| invalid_v1(format!("page {page_id} refers to missing shape {shape_id}")))?; - let kind = checked_shape_kind(legacy_shape)?; - let group_parent = legacy_shape - .group_id - .as_deref() - .filter(|group_id| container_groups.contains(*group_id)) - .map_or_else( - || ShapeParent::Layer(layer_id.clone()), - |group_id| ShapeParent::Shape(ShapeId::from(group_id)), - ); - let mut properties = migrate_properties(&kind, &legacy_shape.props)?; - if let Some(group_id) = legacy_shape - .group_id - .as_deref() - .filter(|group_id| !container_groups.contains(*group_id)) - { - properties.insert("legacy_group_id".into(), Value::String(group_id.into())); - } - let style = migrate_style(legacy_shape, &kind, shape_id)?; - let shape = ShapeRecord { - id: ShapeId::from(shape_id.as_str()), - kind: ShapeKind::from(kind), - parent: group_parent, - transform: Transform { - translation: Vec2 { x: legacy_shape.x, y: legacy_shape.y }, - rotation: legacy_shape.rot, - scale_x: 1.0, - scale_y: 1.0, - }, - child_ids: Vec::new(), - layout: None, - properties, - metadata: imported_metadata(actor_id, timestamp, None), - style, - version: RecordVersion(1), - }; - shapes.insert(ShapeId::from(shape_id.as_str()), shape); - } - } - - for (group_id, group) in &groups { - if !container_groups.contains(group_id) { - continue; - } - let layer_id = default_layer_id(&group.page_id); - let container_id = ShapeId::from(group_id.as_str()); - shapes.insert( - container_id.clone(), - ShapeRecord { - id: container_id, - kind: ShapeKind::from("container"), - parent: ShapeParent::Layer(layer_id), - transform: identity_transform(), - child_ids: group.shape_ids.clone(), - layout: Some(crate::ContainerLayout::Free), - properties: ShapeProperties::new(), - metadata: imported_metadata(actor_id, timestamp, Some(group_id.clone())), - style: ShapeStyle { opacity: Opacity::OPAQUE, fill_opacity: None, stroke_opacity: None }, - version: RecordVersion(1), - }, - ); - } - - let mut bindings = BTreeMap::new(); - for (binding_key, legacy_binding) in &doc.bindings { - if legacy_binding.id != *binding_key { - return Err(invalid_v1(format!( - "binding map key {binding_key} does not match id {}", - legacy_binding.id - ))); - } - if legacy_binding.id.trim().is_empty() - || legacy_binding.binding_type.trim().is_empty() - || legacy_binding.from_shape_id.trim().is_empty() - || legacy_binding.to_shape_id.trim().is_empty() - || legacy_binding.handle.trim().is_empty() - { - return Err(invalid_v1(format!("binding {binding_key} has an empty field"))); - } - let anchor = match &legacy_binding.anchor { - LegacyAnchor::Center => BindingAnchor::Center, - LegacyAnchor::Edge { nx, ny } => { - if !nx.is_finite() || !ny.is_finite() || !(-1.0..=1.0).contains(nx) || !(-1.0..=1.0).contains(ny) { - return Err(invalid_v1(format!("binding {binding_key} has an invalid edge anchor"))); - } - BindingAnchor::Edge { x: *nx, y: *ny } - } - }; - let source_shape_id = ShapeId::from(legacy_binding.from_shape_id.as_str()); - let target_shape_id = ShapeId::from(legacy_binding.to_shape_id.as_str()); - if !shapes.contains_key(&source_shape_id) { - return Err(invalid_v1(format!( - "binding {binding_key} refers to missing source shape {}", - legacy_binding.from_shape_id - ))); - } - if shapes[&source_shape_id].kind.as_str() != crate::ARROW_KIND { - return Err(invalid_v1(format!( - "binding {binding_key} source shape {} is not an arrow", - legacy_binding.from_shape_id - ))); - } - if !shapes.contains_key(&target_shape_id) { - return Err(invalid_v1(format!( - "binding {binding_key} refers to missing target shape {}", - legacy_binding.to_shape_id - ))); - } - bindings.insert( - BindingId::from(binding_key.as_str()), - BindingRecord { - id: BindingId::from(binding_key.as_str()), - kind: BindingKind::from(legacy_binding.binding_type.clone()), - source_shape_id, - target_shape_id, - source_handle: legacy_binding.handle.clone(), - anchor, - version: RecordVersion(1), - }, - ); - } - - let document = Document { pages, page_ids, layers, shapes, bindings, assets: BTreeMap::new() }; - validate_document(&document)?; - Ok(ImportedV1 { - document_id, - board_name: board.name, - created_at: Timestamp(board.created_at), - updated_at: timestamp, - document, - }) -} - -fn validate_page_order(pages: &BTreeMap, order: &LegacyOrder) -> Result, FileError> { - let page_ids: Vec = order.page_ids.iter().map(|id| PageId::from(id.clone())).collect(); - ensure_unique(&page_ids, "page")?; - if page_ids.len() != pages.len() || page_ids.iter().any(|page_id| !pages.contains_key(page_id.as_str())) { - return Err(invalid_v1("order.pageIds must contain every page exactly once")); - } - for (key, page) in pages { - if key != &page.id { - return Err(invalid_v1(format!("page map key {key} does not match id {}", page.id))); - } - if page.id.trim().is_empty() { - return Err(invalid_v1("page IDs must not be empty")); - } - } - if let Some(shape_order) = &order.shape_order { - for page_id in shape_order.keys() { - if !pages.contains_key(page_id) { - return Err(invalid_v1(format!("shapeOrder contains unknown page {page_id}"))); - } - } - } - Ok(page_ids) -} - -fn validate_shape_order( - document: &LegacyDocument, order: &LegacyOrder, page_ids: &[PageId], -) -> Result>, FileError> { - let mut result = BTreeMap::new(); - for page_id in page_ids { - let page = document - .pages - .get(page_id.as_str()) - .ok_or_else(|| invalid_v1(format!("page order refers to missing page {page_id}")))?; - let page_shape_ids = page.shape_ids.clone(); - ensure_unique_strings(&page_shape_ids, "shape")?; - let shape_ids = order - .shape_order - .as_ref() - .and_then(|shape_order| shape_order.get(page_id.as_str())) - .cloned() - .unwrap_or(page_shape_ids.clone()); - ensure_unique_strings(&shape_ids, "shape")?; - let expected: BTreeSet<_> = page_shape_ids.iter().collect(); - let actual: BTreeSet<_> = shape_ids.iter().collect(); - if expected != actual { - return Err(invalid_v1(format!( - "shape order for page {page_id} does not match page.shapeIds" - ))); - } - result.insert(page_id.clone(), shape_ids); - } - Ok(result) -} - -fn validate_shape_keys(shapes: &BTreeMap) -> Result<(), FileError> { - for (key, shape) in shapes { - if key != &shape.id { - return Err(invalid_v1(format!( - "shape map key {key} does not match id {}", - shape.id - ))); - } - if shape.id.trim().is_empty() || shape.page_id.trim().is_empty() { - return Err(invalid_v1(format!("shape {key} has an empty ID or pageId"))); - } - if !shape.x.is_finite() || !shape.y.is_finite() || !shape.rot.is_finite() { - return Err(invalid_v1(format!("shape {key} has a non-finite transform"))); - } - } - Ok(()) -} - -fn validate_binding_keys(bindings: &BTreeMap) -> Result<(), FileError> { - for (key, binding) in bindings { - if key != &binding.id { - return Err(invalid_v1(format!( - "binding map key {key} does not match id {}", - binding.id - ))); - } - } - Ok(()) -} - -fn checked_shape_kind(shape: &LegacyShape) -> Result { - if !builtin_shape_kinds().contains(&shape.shape_type.as_str()) { - return Err(FileError::UnsupportedShapeKind { kind: shape.shape_type.clone(), shape_id: shape.id.clone() }); - } - Ok(shape.shape_type.clone()) -} - -fn migrate_properties(kind: &str, properties: &Map) -> Result { - let mut result: ShapeProperties = properties.clone().into_iter().collect(); - for (legacy_name, v2_name) in [("w", "width"), ("h", "height")] { - if let Some(value) = result.remove(legacy_name) { - if result.contains_key(v2_name) { - return Err(invalid_v1(format!( - "shape properties contain both {legacy_name} and {v2_name}" - ))); - } - result.insert(v2_name.into(), value); - } - } - validate_shape_properties(kind, &result) - .map_err(|error| invalid_v1(format!("shape kind {kind} properties: {error}")))?; - Ok(result) -} - -fn migrate_style(shape: &LegacyShape, kind: &str, shape_id: &str) -> Result { - let opacity = migrate_opacity(shape.opacity, "opacity", shape_id)?.unwrap_or(Opacity::OPAQUE); - let fill_opacity = migrate_opacity(shape.fill_opacity, "fillOpacity", shape_id)?; - let mut style = ShapeStyle { - opacity, - fill_opacity, - stroke_opacity: migrate_opacity(shape.stroke_opacity, "strokeOpacity", shape_id)?, - }; - if kind == "stroke" - && style.stroke_opacity.is_none() - && let Some(opacity) = shape - .props - .get("style") - .and_then(Value::as_object) - .and_then(|style| style.get("opacity")) - { - let value = opacity - .as_f64() - .ok_or_else(|| invalid_v1(format!("stroke {shape_id} style.opacity must be a number")))?; - let value = value - .to_string() - .parse::() - .map_err(|_| invalid_v1(format!("stroke {shape_id} style.opacity is out of range")))?; - style.stroke_opacity = - Some(Opacity::new(value).map_err(|error| invalid_v1(format!("stroke {shape_id} style.opacity: {error}")))?); - } - Ok(style) -} - -fn migrate_opacity(value: Option, field: &str, shape_id: &str) -> Result, FileError> { - value - .map(|value| Opacity::new(value).map_err(|error| invalid_v1(format!("shape {shape_id} {field}: {error}")))) - .transpose() -} - -fn imported_metadata(actor_id: &ActorId, timestamp: Timestamp, name: Option) -> SemanticMetadata { - SemanticMetadata { - name, - role: None, - description: None, - tags: Vec::new(), - locked: false, - agent_editable: true, - provenance: Provenance { - actor_id: actor_id.clone(), - origin: Origin::Import, - timestamp, - source: Some("v1-import".into()), - }, - } -} - -fn identity_transform() -> Transform { - Transform { translation: Vec2 { x: 0.0, y: 0.0 }, rotation: 0.0, scale_x: 1.0, scale_y: 1.0 } -} - -fn default_layer_id(page_id: &PageId) -> LayerId { - LayerId::new(format!("layer:{}:default", page_id.as_str())) -} - -fn is_contiguous(positions: &[usize]) -> bool { - positions - .first() - .zip(positions.last()) - .is_some_and(|(first, last)| last - first + 1 == positions.len()) -} - -fn checked_name(name: &str, kind: &str, id: &str) -> Result { - if name.trim().is_empty() { - return Err(invalid_v1(format!("{kind} {id} has an empty name"))); - } - Ok(name.to_owned()) -} - -fn ensure_unique(values: &[T], kind: &str) -> Result<(), FileError> -where - T: Ord + std::fmt::Display, -{ - let mut seen = BTreeSet::new(); - for value in values { - if !seen.insert(value) { - return Err(invalid_v1(format!("{kind} {value} appears more than once"))); - } - } - Ok(()) -} - -fn ensure_unique_strings(values: &[String], kind: &str) -> Result<(), FileError> { - let mut seen = BTreeSet::new(); - for value in values { - if !seen.insert(value) { - return Err(invalid_v1(format!("{kind} {value} appears more than once"))); - } - } - Ok(()) -} - -fn reject_newer_format(value: &Value) -> Result<(), FileError> { - let Some(object) = value.as_object() else { - return Err(invalid_v1("v1 envelope must be a JSON object")); - }; - let Some(format) = object.get("format") else { - return Ok(()); - }; - let format = format.as_str().ok_or_else(|| invalid_v1("format must be a string"))?; - let version_value = object - .get("format_version") - .or_else(|| object.get("formatVersion")) - .or_else(|| object.get("version")); - let version = version_value - .and_then(Value::as_u64) - .and_then(|value| u32::try_from(value).ok()) - .unwrap_or(0); - Err(FileError::UnsupportedFormat { format: format.to_owned(), version }) -} - -fn invalid_v1(message: impl Into) -> FileError { - FileError::InvalidV1(message.into()) -} diff --git a/crates/inkfinite-core/src/file/mod.rs b/crates/inkfinite-core/src/file/mod.rs index 7798c38..39ba764 100644 --- a/crates/inkfinite-core/src/file/mod.rs +++ b/crates/inkfinite-core/src/file/mod.rs @@ -1,9 +1,8 @@ #![forbid(unsafe_code)] -//! Import, migration, and durable file boundary for Inkfinite documents. +//! Durable file boundary for Inkfinite documents. //! -//! The file boundary accepts the frozen v1 JSON envelope, creates a normalized -//! v2 document, and persists the Rust-owned CRDT as compact Automerge bytes. +//! The file boundary persists the Rust-owned CRDT as compact Automerge bytes. //! Snapshot JSON is an inspection/export format; it does not contain the CRDT //! history needed to reproduce a canonical `.inkfinite` file. @@ -13,23 +12,23 @@ use crate::engine::EngineError; use crate::sync::SyncError; use thiserror::Error; -/// Recoverable failure at the import, persistence, or recovery boundary. +/// Recoverable failure at the validation, persistence, or recovery boundary. #[derive(Debug, Error)] pub enum FileError { - /// The input was valid JSON but not a valid frozen v1 envelope. - #[error("invalid v1 document: {0}")] - InvalidV1(String), + /// The input was not a valid canonical document or document-related value. + #[error("invalid document: {0}")] + InvalidDocument(String), /// JSON could not be parsed or serialized. #[error("JSON error: {0}")] Json(#[from] serde_json::Error), /// A recognized format version is newer than this implementation supports. #[error("unsupported document format {format:?} version {version}")] UnsupportedFormat { format: String, version: u32 }, - /// A v1 shape kind has no v2 registry entry. - #[error("unsupported v1 shape kind {kind:?} for shape {shape_id}")] + /// A shape kind has no registry entry. + #[error("unsupported shape kind {kind:?} for shape {shape_id}")] UnsupportedShapeKind { kind: String, shape_id: String }, /// A source and destination path were the same file. - #[error("refusing to import a file over itself: {path}")] + #[error("refusing to overwrite a file with itself: {path}")] SamePath { path: PathBuf }, /// Another cooperating writer owns the document lock. #[error("document is locked by another writer: {path}")] @@ -65,16 +64,14 @@ pub enum FileError { AlreadyExists { path: PathBuf }, } -mod migration; mod persistence; pub use crate::DocumentSnapshot; pub use crate::crdt::CrdtDocument; pub use crate::engine::{CommitResult, TransactionDraft, TransactionEngine}; -pub use migration::{ImportedV1, import_v1_json, parse_v1_json}; pub use persistence::{ - DocumentFile, PersistenceOptions, SaveResult, export_snapshot_json, import_v1_file, import_v1_file_with_options, - read_v1_file, recovery_path_for, sync_state_path_for, write_snapshot_json, + DocumentFile, PersistenceOptions, SaveResult, export_snapshot_json, recovery_path_for, sync_state_path_for, + write_snapshot_json, }; #[cfg(test)] diff --git a/crates/inkfinite-core/src/file/persistence.rs b/crates/inkfinite-core/src/file/persistence.rs index b8f8d3f..7222b86 100644 --- a/crates/inkfinite-core/src/file/persistence.rs +++ b/crates/inkfinite-core/src/file/persistence.rs @@ -14,7 +14,7 @@ use crate::sync::{MAX_SYNC_PEERS, PeerSync, PeerSyncStatus, PersistedPeerSync, S use crate::{ActorId, ChangeHash, Document, DocumentId, DocumentSnapshot}; use serde::{Deserialize, Serialize}; -use super::{FileError, ImportedV1, import_v1_json}; +use super::FileError; const RECOVERY_FORMAT: &str = "inkfinite.recovery"; const RECOVERY_VERSION: u32 = 1; @@ -234,28 +234,6 @@ impl DocumentFile { Ok(session) } - /// Imports a v1 file into a newly persisted canonical destination. - /// - /// # Errors - /// - /// Returns [`FileError`] when migration or canonical persistence fails. - pub fn import_v1( - source: impl AsRef, destination: impl AsRef, actor_id: ActorId, - ) -> Result { - import_v1_file(source, destination, actor_id) - } - - /// Imports a v1 file with explicit recovery settings. - /// - /// # Errors - /// - /// Returns [`FileError`] when migration or canonical persistence fails. - pub fn import_v1_with_options( - source: impl AsRef, destination: impl AsRef, actor_id: ActorId, options: PersistenceOptions, - ) -> Result { - import_v1_file_with_options(source, destination, actor_id, options) - } - /// Recovers the newest interrupted save associated with the path. /// /// Recovery loads the compact base snapshot, applies its bounded change @@ -586,7 +564,7 @@ impl DocumentFile { Ok(self.engine.commit(transaction)?) } - /// Materializes the current v2 snapshot. + /// Materializes the current document snapshot. /// /// # Errors /// @@ -785,54 +763,6 @@ impl DocumentFile { } } -/// Reads and migrates a v1 JSON file without writing any destination. -/// -/// # Errors -/// -/// Returns [`FileError`] when the source cannot be read, locked, parsed, or -/// migrated. -pub fn read_v1_file(path: impl AsRef, actor_id: ActorId) -> Result { - ensure_actor(&actor_id)?; - let path = absolute_path(path.as_ref())?; - let _lock = AdvisoryLock::acquire(&path)?; - let input = String::from_utf8(read_bytes(&path, "read v1 document")?) - .map_err(|error| FileError::InvalidV1(format!("v1 document is not UTF-8: {error}")))?; - import_v1_json(&input, actor_id) -} - -/// Imports a v1 file and safely writes its canonical v2 representation. -/// -/// # Errors -/// -/// Returns [`FileError`] when the source cannot be migrated or the destination -/// cannot be written safely. -pub fn import_v1_file( - source: impl AsRef, destination: impl AsRef, actor_id: ActorId, -) -> Result { - import_v1_file_with_options(source, destination, actor_id, PersistenceOptions::default()) -} - -/// Imports a v1 file and safely writes its canonical v2 representation with -/// explicit recovery settings. -/// -/// # Errors -/// -/// Returns [`FileError`] when the source cannot be migrated or the destination -/// cannot be written safely. -pub fn import_v1_file_with_options( - source: impl AsRef, destination: impl AsRef, actor_id: ActorId, options: PersistenceOptions, -) -> Result { - ensure_actor(&actor_id)?; - let source = absolute_path(source.as_ref())?; - let destination = absolute_path(destination.as_ref())?; - if paths_equivalent(&source, &destination) { - return Err(FileError::SamePath { path: source }); - } - let imported = read_v1_file(&source, actor_id.clone())?; - let engine = imported.into_engine(actor_id.clone())?; - create_session_from_engine(destination, actor_id, engine, options) -} - /// Loads canonical Automerge bytes into a validated transaction engine. /// /// # Errors @@ -844,9 +774,9 @@ pub fn load_canonical_bytes(bytes: &[u8], actor_id: ActorId) -> Result Result { - let lock = AdvisoryLock::acquire(&path)?; - let baseline_bytes = engine.save()?; - let baseline_heads = engine.snapshot()?.heads; - let mut session = DocumentFile { - path, - actor_id, - engine, - options, - baseline_bytes, - baseline_heads, - pending_recovery: None, - sync_peers: BTreeMap::new(), - sync_state_warning: None, - lock, - }; - session.save()?; - session.load_sync_state(); - Ok(session) -} - fn write_recovery(path: &Path, recovery: &RecoveryFile) -> Result<(), FileError> { let bytes = serde_json::to_vec(recovery)?; atomic_write(path, &bytes).map(|_| ()) @@ -1004,7 +911,7 @@ fn find_recovery_path(document_path: &Path, options: &PersistenceOptions) -> Res fn ensure_actor(actor_id: &ActorId) -> Result<(), FileError> { if actor_id.as_str().trim().is_empty() { - Err(FileError::InvalidV1("actor ID must not be empty".into())) + Err(FileError::InvalidDocument("actor ID must not be empty".into())) } else { Ok(()) } diff --git a/crates/inkfinite-core/src/file/tests.rs b/crates/inkfinite-core/src/file/tests.rs index b43c20a..c7a8d50 100644 --- a/crates/inkfinite-core/src/file/tests.rs +++ b/crates/inkfinite-core/src/file/tests.rs @@ -8,177 +8,24 @@ use crate::proto::{Operation, TransactionId}; use crate::{ ActorId, Document, DocumentId, LayerId, LayerRecord, Opacity, Origin, PageId, PageRecord, RecordVersion, Timestamp, }; -use serde_json::Value; -use super::{DocumentFile, FileError, PersistenceOptions, export_snapshot_json, import_v1_file, import_v1_json}; +use super::{DocumentFile, FileError, PersistenceOptions, export_snapshot_json}; static TEST_COUNTER: AtomicU64 = AtomicU64::new(0); -#[test] -fn imports_all_valid_v1_features_into_normalized_v2_records() { - let input = include_str!("../../../../fixtures/v1/desktop/all-features.inkfinite.json"); - let imported = import_v1_json(input, ActorId::from("actor:test")).expect("fixture imports"); - let source: Value = serde_json::from_str(input).expect("fixture JSON"); - let document = &imported.document; - - let expected_page_ids = source["order"]["pageIds"] - .as_array() - .expect("page order") - .iter() - .map(|id| id.as_str().expect("page ID")) - .collect::>(); - assert_eq!( - document.page_ids.iter().map(crate::PageId::as_str).collect::>(), - expected_page_ids - ); - assert_eq!(document.pages.len(), 2); - assert_eq!(document.layers.len(), 2); - for page in document.pages.values() { - assert_eq!(page.layer_ids.len(), 1); - let layer = &document.layers[&page.layer_ids[0]]; - let flattened = flatten_shape_order(document, &layer.shape_ids); - let expected = source["order"]["shapeOrder"][page.id.as_str()] - .as_array() - .expect("shape order") - .iter() - .map(|id| id.as_str().expect("shape ID")) - .map(str::to_owned) - .collect::>(); - assert_eq!(flattened, expected); - } - - assert!(document.shapes.contains_key(&"shape:stencil-process".into())); - assert!(document.shapes.contains_key(&"shape:arrow".into())); - assert!(document.shapes.contains_key(&"shape:markdown".into())); - assert_eq!(document.shapes.len(), 16); - assert_eq!( - document.shapes[&"shape:stencil-process".into()].properties["width"].as_f64(), - Some(120.0) - ); - assert_eq!( - document.shapes[&"shape:stencil-process".into()].properties["height"].as_f64(), - Some(80.0) - ); - let stroke_opacity = document.shapes[&"shape:stroke".into()] - .style - .stroke_opacity - .expect("stroke opacity") - .get(); - assert!((stroke_opacity - 0.75).abs() < f32::EPSILON); - assert_eq!( - document.shapes[&"shape:text".into()].properties["legacy_group_id"], - Value::from("group:content") - ); - let card_group = &document.shapes[&"group:card".into()]; - assert_eq!( - card_group.child_ids, - vec!["shape:stencil-card".into(), "shape:stencil-card-divider".into()] - ); - assert!(matches!( - document.bindings[&"binding:arrow-start".into()].anchor, - crate::BindingAnchor::Edge { x: 1.0, y: 0.0 } - )); - assert!(matches!( - document.bindings[&"binding:arrow-end".into()].anchor, - crate::BindingAnchor::Center - )); -} - -#[test] -fn imports_web_and_performance_v1_fixtures() { - let web = include_str!("../../../../fixtures/v1/web/all-features.web.json"); - let imported = import_v1_json(web, ActorId::from("actor:web")).expect("web fixture imports"); - assert_eq!(imported.document.page_ids.len(), 2); - assert_eq!(imported.document.layers.len(), 2); - assert_eq!(imported.document.shapes.len(), 16); - - let performance = include_str!("../../../../fixtures/v1/performance/board-10000.inkfinite.json"); - let imported = import_v1_json(performance, ActorId::from("actor:performance")).expect("large fixture imports"); - assert_eq!(imported.document.page_ids, vec![PageId::from("page:10000")]); - assert_eq!(imported.document.shapes.len(), 10_000); - let page = &imported.document.pages[&PageId::from("page:10000")]; - let layer = &imported.document.layers[&page.layer_ids[0]]; - assert_eq!(layer.shape_ids.len(), 10_000); - assert_eq!(flatten_shape_order(&imported.document, &layer.shape_ids).len(), 10_000); -} - -#[test] -fn imports_optional_shape_opacity_without_changing_opaque_defaults() { - let mut source: Value = serde_json::from_str(include_str!( - "../../../../fixtures/v1/desktop/all-features.inkfinite.json" - )) - .expect("fixture JSON"); - source["doc"]["shapes"]["shape:stencil-process"]["opacity"] = Value::from(0.8); - source["doc"]["shapes"]["shape:stencil-process"]["fillOpacity"] = Value::from(0.25); - source["doc"]["shapes"]["shape:stencil-process"]["strokeOpacity"] = Value::from(0.5); - let imported = import_v1_json( - &serde_json::to_string(&source).expect("fixture serializes"), - ActorId::from("actor:test"), - ) - .expect("fixture imports"); - - let styled = &imported.document.shapes[&"shape:stencil-process".into()].style; - assert!((styled.opacity.get() - 0.8).abs() < f32::EPSILON); - assert_eq!(styled.fill_opacity.map(Opacity::get), Some(0.25)); - assert_eq!(styled.stroke_opacity.map(Opacity::get), Some(0.5)); - assert_eq!( - imported.document.shapes[&"shape:ellipse".into()].style.opacity, - Opacity::OPAQUE - ); -} - -#[test] -fn rejects_invalid_and_newer_inputs_before_persistence() { - let actor = ActorId::from("actor:test"); - let invalid_inputs = [ - include_str!("../../../../fixtures/v1/invalid/malformed-json.inkfinite.json"), - include_str!("../../../../fixtures/v1/invalid/missing-envelope-fields.json"), - include_str!("../../../../fixtures/v1/invalid/dangling-references.inkfinite.json"), - include_str!("../../../../fixtures/v1/invalid/duplicate-order.inkfinite.json"), - ]; - for input in invalid_inputs { - assert!( - matches!( - import_v1_json(input, actor.clone()), - Err(FileError::Json(_) | FileError::InvalidV1(_)) - ), - "input should be rejected" - ); - } - assert!(matches!( - import_v1_json(r#"{"format":"inkfinite.document","format_version":3}"#, actor.clone()), - Err(FileError::UnsupportedFormat { version: 3, .. }) - )); - - let temporary = TestDirectory::new(); - let source = temporary.path.join("invalid.inkfinite.json"); - let destination = temporary.path.join("existing.inkfinite"); - fs::write( - &source, - include_str!("../../../../fixtures/v1/invalid/duplicate-order.inkfinite.json"), - ) - .expect("write source"); - fs::write(&destination, b"keep this file").expect("write destination"); - let result = import_v1_file(&source, &destination, actor); - assert!(matches!(result, Err(FileError::InvalidV1(_)))); - assert_eq!(fs::read(&destination).expect("read destination"), b"keep this file"); -} - #[test] fn canonical_sessions_lock_save_reopen_and_export_deterministically() { - let input = include_str!("../../../../fixtures/v1/desktop/all-features.inkfinite.json"); - let imported = import_v1_json(input, ActorId::from("actor:test")).expect("fixture imports"); - let expected_document = imported.document.clone(); + let expected_document = simple_document(); let temporary = TestDirectory::new(); let canonical = temporary.path.join("board.inkfinite"); - let snapshot_json = temporary.path.join("board.inkfinite.json"); + let snapshot_json = temporary.path.join("board.snapshot.json"); let options = PersistenceOptions::with_recovery_directory(temporary.path.join("recovery")); let mut session = DocumentFile::create_with_options( &canonical, - imported.document_id.clone(), + DocumentId::from("document:canonical"), ActorId::from("actor:test"), - imported.document, + expected_document.clone(), options.clone(), ) .expect("create canonical document"); @@ -197,7 +44,7 @@ fn canonical_sessions_lock_save_reopen_and_export_deterministically() { drop(session); let canonical_bytes = fs::read(&canonical).expect("canonical bytes"); - assert!(serde_json::from_slice::(&canonical_bytes).is_err()); + assert!(serde_json::from_slice::(&canonical_bytes).is_err()); let exported: crate::DocumentSnapshot = serde_json::from_str(&fs::read_to_string(&snapshot_json).expect("snapshot JSON")).expect("snapshot parses"); assert_eq!(exported.document, expected_document); @@ -211,13 +58,46 @@ fn canonical_sessions_lock_save_reopen_and_export_deterministically() { ); } +#[test] +fn rejects_invalid_canonical_bytes_without_replacing_the_file() { + let temporary = TestDirectory::new(); + let canonical = temporary.path.join("invalid.inkfinite"); + fs::write(&canonical, b"not an Automerge document").expect("write invalid document"); + + let result = DocumentFile::open(&canonical, ActorId::from("actor:test")); + + assert!(result.is_err()); + assert_eq!( + fs::read(&canonical).expect("read invalid document"), + b"not an Automerge document" + ); +} + +#[test] +fn rejects_empty_actor_before_touching_the_document() { + let temporary = TestDirectory::new(); + let canonical = temporary.path.join("actor.inkfinite"); + let document = simple_document(); + let _session = DocumentFile::create( + &canonical, + DocumentId::from("document:actor"), + ActorId::from("actor:writer"), + document, + ) + .expect("create document"); + + let result = DocumentFile::open(&canonical, ActorId::from(" ")); + + assert!(matches!(result, Err(FileError::InvalidDocument(message)) if message.contains("actor ID"))); +} + #[test] fn recovery_restores_journal_after_canonical_replace_failure() { let temporary = TestDirectory::new(); let canonical = temporary.path.join("board.inkfinite"); let recovery_directory = temporary.path.join("recovery"); let options = PersistenceOptions { - recovery_directory: Some(recovery_directory.clone()), + recovery_directory: Some(recovery_directory), max_journal_entries: 1, max_journal_bytes: 1024 * 1024, }; @@ -253,7 +133,7 @@ fn recovery_restores_journal_after_canonical_replace_failure() { let result = session.save(); assert!(matches!(result, Err(FileError::Io { .. }))); assert!(recovery_path.exists()); - let recovery: Value = + let recovery: serde_json::Value = serde_json::from_slice(&fs::read(&recovery_path).expect("recovery bytes")).expect("recovery JSON"); assert!(recovery["snapshot"].as_array().is_some_and(|bytes| !bytes.is_empty())); assert_eq!(recovery["journal"].as_array().expect("journal").len(), 1); @@ -279,21 +159,6 @@ fn recovery_restores_journal_after_canonical_replace_failure() { ); } -fn flatten_shape_order(document: &Document, shape_ids: &[crate::ShapeId]) -> Vec { - let mut flattened = Vec::new(); - for shape_id in shape_ids { - if let Some(shape) = document.shapes.get(shape_id) { - if shape.kind.as_str() != crate::CONTAINER_KIND { - flattened.push(shape_id.as_str().to_owned()); - } - flattened.extend(flatten_shape_order(document, &shape.child_ids)); - } else { - flattened.push(shape_id.as_str().to_owned()); - } - } - flattened -} - fn simple_document() -> Document { let page_id = PageId::from("page:one"); let layer_id = LayerId::from("layer:one"); @@ -309,9 +174,9 @@ fn simple_document() -> Document { )]), page_ids: vec![page_id.clone()], layers: BTreeMap::from([( - layer_id.clone(), + layer_id, LayerRecord { - id: layer_id, + id: LayerId::from("layer:one"), page_id, name: "Default".into(), shape_ids: Vec::new(), diff --git a/crates/inkfinite-core/src/ipc/mod.rs b/crates/inkfinite-core/src/ipc/mod.rs index 914566c..e536e64 100644 --- a/crates/inkfinite-core/src/ipc/mod.rs +++ b/crates/inkfinite-core/src/ipc/mod.rs @@ -53,7 +53,7 @@ pub struct DiscoveryRecord { pub token: String, } -/// Read-only operation accepted by the V2-17 desktop server. +/// Read-only operation accepted by the desktop server. #[derive(Clone, Debug, PartialEq, Serialize, Deserialize)] #[serde(rename_all = "snake_case", tag = "type")] #[allow(clippy::large_enum_variant)] @@ -124,7 +124,7 @@ pub struct RequestEnvelope { pub request: AppRequest, } -/// Successful result from a V2-17 read-only app command. +/// Successful result from a read-only app command. #[derive(Clone, Debug, PartialEq, Serialize, Deserialize)] #[serde(rename_all = "snake_case", tag = "type", content = "value")] pub enum AppResponse { @@ -487,7 +487,7 @@ pub fn session_protocol_error(error: &SessionError) -> ProtocolError { SessionError::File(file_error) => match file_error { FileError::Locked { .. } => "document_locked", FileError::AlreadyExists { .. } => "document_already_exists", - FileError::InvalidV1(_) + FileError::InvalidDocument(_) | FileError::Json(_) | FileError::UnsupportedFormat { .. } | FileError::UnsupportedShapeKind { .. } diff --git a/crates/inkfinite-core/src/lib.rs b/crates/inkfinite-core/src/lib.rs index ab93d2f..a2edb8d 100644 --- a/crates/inkfinite-core/src/lib.rs +++ b/crates/inkfinite-core/src/lib.rs @@ -20,7 +20,7 @@ use serde_json::Value; use thiserror::Error; use ts_rs::TS; -/// Stable format identifier for an Inkfinite v2 document snapshot. +/// Stable format identifier for an Inkfinite document snapshot. pub const INKFINITE_FORMAT_ID: &str = "inkfinite.document"; /// First version of the Rust-owned Inkfinite document contract. @@ -228,8 +228,6 @@ pub enum Origin { Human, /// Edit proposed or applied by an agent. Agent, - /// Record created while importing another format. - Import, /// Change received from a trusted peer. Sync, /// Deterministic repair or other internal change. @@ -461,7 +459,7 @@ pub struct Provenance { pub origin: Origin, /// Time at which this provenance entry was recorded. pub timestamp: Timestamp, - /// Optional source identifier, such as an imported filename or proposal ID. + /// Optional source identifier, such as an external reference or proposal ID. pub source: Option, } diff --git a/crates/inkfinite-core/src/proto/mod.rs b/crates/inkfinite-core/src/proto/mod.rs index cdc2360..725e247 100644 --- a/crates/inkfinite-core/src/proto/mod.rs +++ b/crates/inkfinite-core/src/proto/mod.rs @@ -450,7 +450,7 @@ pub enum Request { /// Actor that will own the session's local changes. actor_id: ActorId, }, - /// Open a canonical or importable document in a new session. + /// Open a canonical document in a new session. OpenDocument { /// File to open. path: DocumentPath, diff --git a/crates/inkfinite-core/src/render/tests.rs b/crates/inkfinite-core/src/render/tests.rs index 087e198..afc9467 100644 --- a/crates/inkfinite-core/src/render/tests.rs +++ b/crates/inkfinite-core/src/render/tests.rs @@ -1,24 +1,519 @@ #![allow(clippy::float_cmp)] -use std::collections::BTreeSet; +use std::collections::{BTreeMap, BTreeSet}; -use crate::file::import_v1_json; -use crate::{ActorId, ChangeHash, DocumentSnapshot, FormatId, INKFINITE_FORMAT_ID, INKFINITE_FORMAT_VERSION}; +use crate::{ + ActorId, BindingAnchor, BindingId, BindingKind, BindingRecord, ChangeHash, ContainerLayout, Document, DocumentId, + DocumentSnapshot, FormatId, INKFINITE_FORMAT_ID, INKFINITE_FORMAT_VERSION, LayerId, LayerRecord, Opacity, Origin, + PageId, PageRecord, Provenance, RecordVersion, SemanticMetadata, ShapeId, ShapeKind, ShapeParent, ShapeProperties, + ShapeRecord, ShapeStyle, Timestamp, Transform, Vec2, +}; use super::*; fn fixture_snapshot() -> DocumentSnapshot { - let imported = import_v1_json( - include_str!("../../../../fixtures/v1/desktop/all-features.inkfinite.json"), - ActorId::from("actor:render-test"), - ) - .expect("render fixture imports"); DocumentSnapshot { format: FormatId::from(INKFINITE_FORMAT_ID), format_version: INKFINITE_FORMAT_VERSION, - document_id: imported.document_id, + document_id: DocumentId::from("document:native-fixtures"), heads: vec![ChangeHash::from("render-fixture")], - document: imported.document, + document: fixture_document(), + } +} + +fn fixture_document() -> Document { + let fixtures_page = PageId::from("page:fixtures"); + let ordering_page = PageId::from("page:ordering"); + let fixtures_layer = LayerId::from("layer:page:fixtures:default"); + let ordering_layer = LayerId::from("layer:page:ordering:default"); + + let group_card = ShapeId::from("group:card"); + let mut shapes = BTreeMap::new(); + add_shape( + &mut shapes, + shape( + "shape:stencil-sticky", + "rect", + ShapeParent::Layer(fixtures_layer.clone()), + 560.0, + 40.0, + 0.0, + props([ + ("w", serde_json::json!(200)), + ("h", serde_json::json!(200)), + ("fill", serde_json::json!("#fff740")), + ("stroke", serde_json::json!("transparent")), + ("radius", serde_json::json!(0)), + ]), + Vec::new(), + ), + ); + add_shape( + &mut shapes, + shape( + "shape:stencil-process", + "rect", + ShapeParent::Layer(fixtures_layer.clone()), + 40.0, + 40.0, + 0.0, + props([ + ("w", serde_json::json!(120)), + ("h", serde_json::json!(80)), + ("fill", serde_json::json!("#ffffff")), + ("stroke", serde_json::json!("#000000")), + ("radius", serde_json::json!(0)), + ]), + Vec::new(), + ), + ); + add_shape( + &mut shapes, + shape( + "shape:stencil-decision", + "rect", + ShapeParent::Layer(fixtures_layer.clone()), + 220.0, + 40.0, + std::f64::consts::FRAC_PI_4, + props([ + ("w", serde_json::json!(80)), + ("h", serde_json::json!(80)), + ("fill", serde_json::json!("#ffffff")), + ("stroke", serde_json::json!("#000000")), + ("radius", serde_json::json!(0)), + ]), + Vec::new(), + ), + ); + add_shape( + &mut shapes, + shape( + "shape:stencil-terminator", + "rect", + ShapeParent::Layer(fixtures_layer.clone()), + 380.0, + 40.0, + 0.0, + props([ + ("w", serde_json::json!(120)), + ("h", serde_json::json!(60)), + ("fill", serde_json::json!("#ffffff")), + ("stroke", serde_json::json!("#000000")), + ("radius", serde_json::json!(30)), + ]), + Vec::new(), + ), + ); + add_shape( + &mut shapes, + shape( + "shape:stencil-card", + "rect", + ShapeParent::Shape(group_card.clone()), + 40.0, + 220.0, + 0.0, + props([ + ("w", serde_json::json!(300)), + ("h", serde_json::json!(200)), + ("fill", serde_json::json!("#ffffff")), + ("stroke", serde_json::json!("#333333")), + ("radius", serde_json::json!(8)), + ]), + Vec::new(), + ), + ); + add_shape( + &mut shapes, + shape( + "shape:stencil-card-divider", + "line", + ShapeParent::Shape(group_card), + 40.0, + 270.0, + 0.0, + props([ + ("a", serde_json::json!({ "x": 0, "y": 0 })), + ("b", serde_json::json!({ "x": 300, "y": 0 })), + ("stroke", serde_json::json!("#333333")), + ("width", serde_json::json!(1)), + ]), + Vec::new(), + ), + ); + add_shape( + &mut shapes, + shape( + "shape:ellipse", + "ellipse", + ShapeParent::Layer(fixtures_layer.clone()), + 400.0, + 280.0, + 0.0, + props([ + ("w", serde_json::json!(150)), + ("h", serde_json::json!(100)), + ("fill", serde_json::json!("#dbeafe")), + ("stroke", serde_json::json!("#1d4ed8")), + ]), + Vec::new(), + ), + ); + add_shape( + &mut shapes, + shape( + "shape:line", + "line", + ShapeParent::Layer(fixtures_layer.clone()), + 400.0, + 430.0, + 0.0, + props([ + ("a", serde_json::json!({ "x": 0, "y": 0 })), + ("b", serde_json::json!({ "x": 180, "y": 60 })), + ("stroke", serde_json::json!("#334155")), + ("width", serde_json::json!(3)), + ]), + Vec::new(), + ), + ); + add_shape( + &mut shapes, + shape( + "shape:arrow", + "arrow", + ShapeParent::Layer(fixtures_layer.clone()), + 0.0, + 0.0, + 0.0, + props([ + ( + "points", + serde_json::json!([ + { "x": 160, "y": 80 }, + { "x": 350, "y": 160 }, + { "x": 475, "y": 330 } + ]), + ), + ( + "style", + serde_json::json!({ + "stroke": "#7c3aed", + "width": 2, + "headStart": true, + "headEnd": true, + "dash": [8, 4] + }), + ), + ("routing", serde_json::json!({ "kind": "orthogonal" })), + ( + "label", + serde_json::json!({ "text": "bound route", "align": "center", "offset": 12 }), + ), + ]), + Vec::new(), + ), + ); + add_shape( + &mut shapes, + shape( + "shape:text", + "text", + ShapeParent::Layer(fixtures_layer.clone()), + 620.0, + 300.0, + 0.0, + props([ + ("text", serde_json::json!("Inkfinite native fixture")), + ("fontSize", serde_json::json!(18)), + ("fontFamily", serde_json::json!("Inter")), + ("color", serde_json::json!("#111827")), + ("w", serde_json::json!(180)), + ]), + Vec::new(), + ), + ); + add_shape( + &mut shapes, + shape_with_style( + "shape:stroke", + "stroke", + ShapeParent::Layer(fixtures_layer.clone()), + 0.0, + 0.0, + 0.0, + props([ + ( + "points", + serde_json::json!([[620, 390, 0.2], [650, 410, 0.6], [690, 395, 0.9], [730, 430, 0.5]]), + ), + ("style", serde_json::json!({ "color": "#dc2626", "opacity": 0.75 })), + ( + "brush", + serde_json::json!({ + "size": 12, + "thinning": 0.5, + "smoothing": 0.5, + "streamline": 0.5, + "simulatePressure": false + }), + ), + ]), + Vec::new(), + Some(0.75), + ), + ); + add_shape( + &mut shapes, + shape( + "shape:markdown", + "markdown", + ShapeParent::Layer(fixtures_layer.clone()), + 40.0, + 500.0, + 0.0, + props([ + ( + "md", + serde_json::json!( + "# Native Markdown\n\n- **bold** item\n- `code` item\n\n```ts\nconst scale = 1;\n```" + ), + ), + ("w", serde_json::json!(360)), + ("h", serde_json::json!(240)), + ("fontSize", serde_json::json!(16)), + ("fontFamily", serde_json::json!("Inter")), + ("color", serde_json::json!("#0f172a")), + ("bg", serde_json::json!("#f8fafc")), + ("border", serde_json::json!("#94a3b8")), + ]), + Vec::new(), + ), + ); + add_shape( + &mut shapes, + shape( + "shape:ordering-back", + "rect", + ShapeParent::Layer(ordering_layer.clone()), + 100.0, + 100.0, + 0.0, + props([ + ("w", serde_json::json!(180)), + ("h", serde_json::json!(180)), + ("fill", serde_json::json!("#ef4444")), + ("stroke", serde_json::json!("#7f1d1d")), + ("radius", serde_json::json!(0)), + ]), + Vec::new(), + ), + ); + add_shape( + &mut shapes, + shape( + "shape:ordering-middle", + "ellipse", + ShapeParent::Layer(ordering_layer.clone()), + 130.0, + 130.0, + 0.0, + props([ + ("w", serde_json::json!(180)), + ("h", serde_json::json!(180)), + ("fill", serde_json::json!("#22c55e")), + ("stroke", serde_json::json!("#14532d")), + ]), + Vec::new(), + ), + ); + add_shape( + &mut shapes, + shape( + "shape:ordering-front", + "rect", + ShapeParent::Layer(ordering_layer.clone()), + 160.0, + 160.0, + 0.0, + props([ + ("w", serde_json::json!(180)), + ("h", serde_json::json!(180)), + ("fill", serde_json::json!("#3b82f6")), + ("stroke", serde_json::json!("#1e3a8a")), + ("radius", serde_json::json!(16)), + ]), + Vec::new(), + ), + ); + add_shape( + &mut shapes, + shape( + "group:card", + "container", + ShapeParent::Layer(fixtures_layer.clone()), + 0.0, + 0.0, + 0.0, + ShapeProperties::new(), + vec![ + ShapeId::from("shape:stencil-card"), + ShapeId::from("shape:stencil-card-divider"), + ], + ), + ); + + Document { + pages: BTreeMap::from([ + ( + fixtures_page.clone(), + PageRecord { + id: fixtures_page.clone(), + name: "All features".into(), + layer_ids: vec![fixtures_layer.clone()], + version: RecordVersion(1), + }, + ), + ( + ordering_page.clone(), + PageRecord { + id: ordering_page.clone(), + name: "Persisted ordering".into(), + layer_ids: vec![ordering_layer.clone()], + version: RecordVersion(1), + }, + ), + ]), + page_ids: vec![ordering_page, fixtures_page], + layers: BTreeMap::from([ + ( + fixtures_layer.clone(), + LayerRecord { + id: fixtures_layer, + page_id: PageId::from("page:fixtures"), + name: "Default".into(), + shape_ids: vec![ + ShapeId::from("shape:stencil-sticky"), + ShapeId::from("shape:stencil-process"), + ShapeId::from("shape:stencil-decision"), + ShapeId::from("shape:stencil-terminator"), + ShapeId::from("group:card"), + ShapeId::from("shape:ellipse"), + ShapeId::from("shape:line"), + ShapeId::from("shape:arrow"), + ShapeId::from("shape:text"), + ShapeId::from("shape:stroke"), + ShapeId::from("shape:markdown"), + ], + visible: true, + locked: false, + opacity: Opacity::OPAQUE, + version: RecordVersion(1), + }, + ), + ( + ordering_layer.clone(), + LayerRecord { + id: ordering_layer, + page_id: PageId::from("page:ordering"), + name: "Default".into(), + shape_ids: vec![ + ShapeId::from("shape:ordering-back"), + ShapeId::from("shape:ordering-middle"), + ShapeId::from("shape:ordering-front"), + ], + visible: true, + locked: false, + opacity: Opacity::OPAQUE, + version: RecordVersion(1), + }, + ), + ]), + shapes, + bindings: BTreeMap::from([ + ( + BindingId::from("binding:arrow-start"), + BindingRecord { + id: BindingId::from("binding:arrow-start"), + kind: BindingKind::from("arrow-end"), + source_shape_id: ShapeId::from("shape:arrow"), + target_shape_id: ShapeId::from("shape:stencil-process"), + source_handle: "start".into(), + anchor: BindingAnchor::Edge { x: 1.0, y: 0.0 }, + version: RecordVersion(1), + }, + ), + ( + BindingId::from("binding:arrow-end"), + BindingRecord { + id: BindingId::from("binding:arrow-end"), + kind: BindingKind::from("arrow-end"), + source_shape_id: ShapeId::from("shape:arrow"), + target_shape_id: ShapeId::from("shape:ellipse"), + source_handle: "end".into(), + anchor: BindingAnchor::Center, + version: RecordVersion(1), + }, + ), + ]), + assets: BTreeMap::new(), + } +} + +fn props(entries: [(&str, serde_json::Value); N]) -> ShapeProperties { + entries.into_iter().map(|(key, value)| (key.into(), value)).collect() +} + +fn add_shape(shapes: &mut BTreeMap, shape: ShapeRecord) { + shapes.insert(shape.id.clone(), shape); +} + +#[allow(clippy::too_many_arguments)] +fn shape( + id: &str, kind: &str, parent: ShapeParent, x: f64, y: f64, rotation: f64, properties: ShapeProperties, + child_ids: Vec, +) -> ShapeRecord { + shape_with_style(id, kind, parent, x, y, rotation, properties, child_ids, None) +} + +#[allow(clippy::too_many_arguments)] +fn shape_with_style( + id: &str, kind: &str, parent: ShapeParent, x: f64, y: f64, rotation: f64, properties: ShapeProperties, + child_ids: Vec, stroke_opacity: Option, +) -> ShapeRecord { + ShapeRecord { + id: ShapeId::from(id), + kind: ShapeKind::from(kind), + parent, + transform: Transform { translation: Vec2 { x, y }, rotation, scale_x: 1.0, scale_y: 1.0 }, + child_ids, + layout: (kind == "container").then_some(ContainerLayout::Free), + properties, + metadata: metadata(), + style: ShapeStyle { + opacity: Opacity::OPAQUE, + fill_opacity: None, + stroke_opacity: stroke_opacity.map(|value| Opacity::new(value).expect("fixture opacity")), + }, + version: RecordVersion(1), + } +} + +fn metadata() -> SemanticMetadata { + SemanticMetadata { + name: None, + role: None, + description: None, + tags: Vec::new(), + locked: false, + agent_editable: true, + provenance: Provenance { + actor_id: ActorId::from("actor:render-test"), + origin: Origin::System, + timestamp: Timestamp(1), + source: None, + }, } } @@ -30,7 +525,7 @@ fn render_is_deterministic_and_covers_every_visual_builtin() { let second = render_svg(&snapshot, &options).expect("fixture renders again"); assert_eq!( first.svg, - include_str!("../../../../fixtures/v2/rendering/all-builtins.svg") + include_str!("../../../../fixtures/native/rendering/all-builtins.svg") ); assert_eq!(first, second); diff --git a/crates/inkfinite-core/src/session.rs b/crates/inkfinite-core/src/session.rs index 4464378..6d4f003 100644 --- a/crates/inkfinite-core/src/session.rs +++ b/crates/inkfinite-core/src/session.rs @@ -8,7 +8,7 @@ use std::collections::{BTreeMap, BTreeSet}; use std::fmt::Write as _; -use std::path::{Path, PathBuf}; +use std::path::Path; use std::time::{Duration, Instant, SystemTime, UNIX_EPOCH}; use serde::{Deserialize, Serialize}; @@ -259,25 +259,14 @@ impl SessionService { self.insert(file) } - /// Opens a canonical document, or imports a selected frozen v1 JSON file - /// into its adjacent `.inkfinite` canonical path. + /// Opens a canonical `.inkfinite` document. /// /// # Errors /// - /// Returns a typed file, migration, lock, or validation error when the - /// document cannot be opened safely. + /// Returns a typed file, lock, or validation error when the document cannot + /// be opened safely. pub fn open(&mut self, path: impl AsRef, actor_id: ActorId) -> Result { - let path = path.as_ref().to_owned(); - let file = if is_v1_path(&path) { - let destination = canonical_import_path(&path); - if destination.exists() { - DocumentFile::open(destination, actor_id)? - } else { - DocumentFile::import_v1(&path, destination, actor_id)? - } - } else { - DocumentFile::open(path, actor_id)? - }; + let file = DocumentFile::open(path, actor_id)?; self.insert(file) } @@ -847,16 +836,6 @@ fn to_protocol_save(save: crate::file::SaveResult) -> SaveResult { SaveResult { path: DocumentPath(save.path.to_string_lossy().into_owned()), heads: save.heads } } -fn is_v1_path(path: &Path) -> bool { - path.to_string_lossy().ends_with(".inkfinite.json") -} - -fn canonical_import_path(path: &Path) -> PathBuf { - let mut destination = path.to_owned(); - destination.set_extension("inkfinite"); - destination -} - #[cfg(test)] mod tests { use std::fs; @@ -884,7 +863,7 @@ mod tests { service .commit( &opened.session_id, - rename_transaction(&opened.status.snapshot, actor.clone(), "Changed"), + rename_transaction(&opened.status.snapshot, actor, "Changed"), ) .expect("commit edit"); @@ -1079,10 +1058,7 @@ mod tests { ) .expect("propose transaction"); service - .commit( - &opened.session_id, - rename_transaction(&snapshot, actor.clone(), "Local edit"), - ) + .commit(&opened.session_id, rename_transaction(&snapshot, actor, "Local edit")) .expect("intervening local edit"); let error = service @@ -1216,7 +1192,7 @@ mod tests { let right_actor = ActorId::from("actor:right"); let mut left_service = SessionService::new(); let left = left_service - .create(&left_path, document_id.clone(), left_actor.clone(), None) + .create(&left_path, document_id, left_actor.clone(), None) .expect("create left"); fs::copy(&left_path, &right_path).expect("copy baseline to right"); let mut right_service = SessionService::new(); diff --git a/crates/inkfinite-core/src/sync.rs b/crates/inkfinite-core/src/sync.rs index 673efb1..5970f10 100644 --- a/crates/inkfinite-core/src/sync.rs +++ b/crates/inkfinite-core/src/sync.rs @@ -754,7 +754,7 @@ mod tests { let delayed = SyncMessage { protocol_id: SYNC_PROTOCOL_ID.into(), version: SYNC_PROTOCOL_VERSION, - document_id: document_id.clone(), + document_id, sender: ActorId::from("actor:right"), recipient: ActorId::from("actor:left"), sequence: 2, diff --git a/crates/inkfinite-core/tests/bindings.rs b/crates/inkfinite-core/tests/bindings.rs index 58c9a34..ccc5e96 100644 --- a/crates/inkfinite-core/tests/bindings.rs +++ b/crates/inkfinite-core/tests/bindings.rs @@ -7,7 +7,7 @@ use serde_json::Value; #[test] fn shared_shape_fixture_matches_the_rust_registry_and_bindings() { - let fixture: Value = serde_json::from_str(include_str!("../../../fixtures/v2/shape-registry.json")) + let fixture: Value = serde_json::from_str(include_str!("../../../fixtures/native/shape-registry.json")) .expect("shared fixture should be valid JSON"); let kind_names = fixture["kind_names"] diff --git a/docs/file-format.md b/docs/file-format.md new file mode 100644 index 0000000..a06c6d3 --- /dev/null +++ b/docs/file-format.md @@ -0,0 +1,48 @@ +# Inkfinite file format + +Inkfinite stores each document as an Automerge file with the `.inkfinite` +extension. The desktop app, CLI, and Rust session service all open, validate, +change, and save this same file type. There is no alternate user-facing +document extension. + +## Document contract + +The materialized snapshot carried by a file has a stable format identifier and +explicit contract version: + +```rust +pub struct DocumentSnapshot { + pub format: String, + pub format_version: u32, + pub document_id: DocumentId, + pub heads: Vec, + pub document: Document, +} +``` + +The document contains ordered pages, layers, shapes, bindings, and assets. +Pages own ordered layers; layers own ordered root shapes; containers own their +ordered child shapes. IDs and causal heads remain stable across saves and +replicas. + +The CLI can print a deterministic JSON projection for inspection and CI. That +projection is not a second file format and cannot replace the Automerge history +or causal heads stored in the canonical file. + +## Validation and safe writes + +`DocumentFile` holds an advisory sidecar lock for the canonical path. Every +transaction is validated before it is committed. A save writes a temporary +same-directory replacement, flushes and syncs it, and then replaces the +canonical file. An interrupted replacement leaves bounded recovery data that +can be validated and saved as a new canonical baseline. + +Invalid bytes, stale heads, missing references, and invalid record properties +are rejected before the canonical file is changed. Recovery uses the same +document validation and persistence path as a normal save. + +## Versioning + +`format_version` and protocol version fields are explicit so future releases +can reject unsupported data safely. They describe the current serialized +contract; they do not select between document models or file flows. diff --git a/docs/v1-baselines.md b/docs/v1-baselines.md deleted file mode 100644 index c381214..0000000 --- a/docs/v1-baselines.md +++ /dev/null @@ -1,77 +0,0 @@ -# V1 compatibility baselines - -V2-01 freezes the current document behavior before the v2 model and CRDT work -begins. The fixtures in [`fixtures/v1`](../fixtures/v1) are compatibility inputs, -not examples of the planned v2 format. - -## Fixture set - -- `desktop/all-features.inkfinite.json` is a complete desktop file. -- `web/all-features.web.json` is the equivalent web export. -- `invalid/` contains malformed JSON, an incomplete desktop envelope, dangling - references, and duplicate persisted ordering. -- `rendering/all-shapes.json` fixes the renderer state and draw order. -- `history/history-edits.json` records update, style, delete, and undo behavior. -- `performance/board-10000.inkfinite.json` contains 10,000 deterministic shapes. - Its seed is recorded in the file and in `manifest.json`. -- `performance/baseline.json` records the reference machine, runtime versions, - visible-shape count, frame time, hit-test time, memory, open time, and save - time. - -The all-features document covers every v1 shape kind, both arrow binding anchor -forms, two groups, two pages, Markdown, every built-in stencil output, and an -overlapping page whose `shapeIds` order determines rendering and hit testing. -The history fixture is separate because v1 persists document snapshots but does -not persist the undo stack. - -## Regenerate fixtures - -Run the deterministic generator after an intentional v1 compatibility change: - -```sh -pnpm fixtures:v1 -``` - -Review every generated change. Do not regenerate fixtures to make a regression -pass. Invalid fixtures must remain invalid. - -## Capture performance - -Build the two packages used by the harness, then capture a new machine-specific -result: - -```sh -pnpm --filter @inkfinite/core build -pnpm --filter @inkfinite/renderer build -pnpm baseline:v1 -``` - -The frame measurement runs the production renderer with a no-op Canvas 2D -context. It isolates JavaScript traversal from GPU and display timing. The v1 -renderer visits all 10,000 shapes even though only the separately recorded -visible count intersects the 1280×720 viewport. V2-01 sets no performance -budget; later tickets compare their results with this captured file. - -## Verification commands - -Install dependencies and the browser used by the web suite before the first -run. The repository currently runs browser tests through the installed Chrome -channel. - -```sh -pnpm install -pnpm --filter @inkfinite/core test --run -pnpm --filter @inkfinite/renderer test --run -pnpm --filter @inkfinite/web test -pnpm --filter @inkfinite/core typecheck -pnpm --filter @inkfinite/renderer typecheck -pnpm --filter @inkfinite/web check -pnpm --filter @inkfinite/web lint -cargo test --manifest-path apps/desktop/src-tauri/Cargo.toml -``` - -The cursor baseline reads canvas bounds and viewport dimensions again after a -resize. Invalid documents are asserted as failures. As of July 17, 2026, all -documented verification commands pass: 748 core tests, 20 renderer tests, and -189 web tests, plus type checks, Svelte checks, lint, formatting, and desktop -Rust tests. diff --git a/docs/v2-file-format.md b/docs/v2-file-format.md deleted file mode 100644 index 0774155..0000000 --- a/docs/v2-file-format.md +++ /dev/null @@ -1,45 +0,0 @@ -# V2 file format - -Inkfinite stores the canonical document as an Automerge file with the -.inkfinite extension. The .inkfinite.json format is used for v1 imports and -stable JSON snapshots; it is not a CRDT round-trip format. - -## V1 migration - -The file crate validates the v1 envelope, page order, shape ownership, draw -order, bindings, and references before it creates a v2 document. - -- board.id becomes the v2 document ID. -- order.pageIds becomes document page order. -- Each page receives one stable default layer named Default. -- A page's shapeOrder is used when present; otherwise its shapeIds are used. -- Shape properties are retained. The v1 w and h properties become v2 width and - height. -- Contiguous legacy groups become v2 containers with their original group ID. - Their children retain the legacy draw order. -- Non-contiguous or singleton groups remain flat so the exact draw order is - preserved, with legacy_group_id retained as compatibility metadata. -- Freehand stroke opacity becomes the v2 stroke opacity value. - -Invalid and newer inputs return typed errors before a destination file is -created or replaced. - -## Safe writes and recovery - -DocumentFile holds an advisory sidecar lock for the canonical path. A save -serializes a compact CRDT snapshot, records a bounded journal of changes since -the last durable snapshot, writes recovery data atomically, and then replaces -the canonical file through a same-directory temporary file after flushing and -syncing it. Recovery data is removed only after the canonical replacement -succeeds. - -Recovery combines the saved compact snapshot with its encoded change journal, -validates the resulting document and causal heads, and can then be saved as a -new canonical baseline. The recovery journal is compacted when its configured -entry or byte bound is reached. - -## JSON snapshots - -The JSON export is deterministic: CRDT heads are sorted and the materialized -model uses ordered maps and lists. It represents one materialized snapshot and -cannot preserve Automerge history, causal heads, or an undo/redo journal. diff --git a/fixtures/native/performance/large-board.json b/fixtures/native/performance/large-board.json new file mode 100644 index 0000000..d204f96 --- /dev/null +++ b/fixtures/native/performance/large-board.json @@ -0,0 +1,7 @@ +{ + "shapeCount": 10000, + "seed": 439041101, + "generator": "scripts/capture-performance.mjs", + "pageId": "page:performance", + "layerId": "layer:performance:default" +} diff --git a/fixtures/v2/performance/v2-11.json b/fixtures/native/performance/rendering-budget.json similarity index 56% rename from fixtures/v2/performance/v2-11.json rename to fixtures/native/performance/rendering-budget.json index f2b866b..576b154 100644 --- a/fixtures/v2/performance/v2-11.json +++ b/fixtures/native/performance/rendering-budget.json @@ -1,8 +1,8 @@ { - "schemaVersion": 2, - "capturedAt": "2026-07-18T06:08:17.718Z", + "schemaVersion": 1, + "capturedAt": "2026-07-19T04:39:48.218Z", "fixture": { - "path": "fixtures/v1/performance/board-10000.inkfinite.json", + "path": "fixtures/native/performance/large-board.json", "seed": 439041101, "documentShapeCount": 10000, "visibleShapeCount": 252, @@ -16,38 +16,37 @@ "logicalCpuCount": 8, "cpuSpeedMHz": 2400, "totalMemoryBytes": 8589934592, - "freeMemoryBytesAtCapture": 179568640 + "freeMemoryBytesAtCapture": 114540544 }, "runtime": { "node": "v26.5.0", "v8": "14.6.202.34-node.24", - "pnpm": "11.13.1", "rustc": "rustc 1.89.0 (29483883e 2025-08-04)", "cargo": "cargo 1.89.0 (c24e10642 2025-06-23)", "typescript": "Version 5.9.3", "vitest": "vitest/4.0.16 darwin-arm64 node-v26.5.0", "tauri": "tauri-cli 2.9.6" }, - "measurements": { - "frameTimeMillisecondsMedian": 0.6100830000000315, - "hitTestTimeMillisecondsMedian": 0.343708625, - "hitTestSampleCount": 1000, - "memoryRssBeforeOpenBytes": 63832064, - "memoryRssAfterOpenBytes": 108445696, - "memoryRssDeltaBytes": 44613632, - "openTimeMillisecondsMedian": 18.335666000000003, - "saveTimeMillisecondsMedian": 11.313624999999774 - }, - "notes": [ - "The renderer culls by transformed world bounds with padding for arrowheads, shadows, and selection handles.", - "Selected overlays render from the full page list so culling cannot clip handles outside the viewport.", - "The linear hit-test median remains below the 1 ms gate, so V2-11 does not add a spatial index." - ], "budgets": { "frameTimeMillisecondsMedian": 8, "hitTestTimeMillisecondsMedian": 1 }, "passed": { "frame": true, "hitTest": true }, "strategy": { "renderer": "Canvas 2D with viewport culling, dirty-frame batching, and bounded layout caches", "hitTesting": "Reverse draw-order linear scan; no spatial index", "overlayLayers": "Single canvas; the measured frame cost does not justify a second durable-scene bitmap" - } + }, + "measurements": { + "frameTimeMillisecondsMedian": 1.2308750000000828, + "hitTestTimeMillisecondsMedian": 0.4495441054687499, + "hitTestSampleCount": 256, + "memoryRssBeforeOpenBytes": 68730880, + "memoryRssAfterOpenBytes": 103743488, + "memoryRssDeltaBytes": 35012608, + "openTimeMillisecondsMedian": 19.266333000000003, + "saveTimeMillisecondsMedian": 10.190124999999966 + }, + "notes": [ + "The native performance fixture is generated deterministically from the native document model.", + "Timing uses the production Canvas 2D renderer with a no-op context to isolate JavaScript traversal cost.", + "The budget remains explicit so release verification can fail when either interaction measure regresses." + ] } diff --git a/fixtures/v2/rendering/all-builtins.svg b/fixtures/native/rendering/all-builtins.svg similarity index 97% rename from fixtures/v2/rendering/all-builtins.svg rename to fixtures/native/rendering/all-builtins.svg index 19366ec..56dd6fc 100644 --- a/fixtures/v2/rendering/all-builtins.svg +++ b/fixtures/native/rendering/all-builtins.svg @@ -34,7 +34,7 @@ - Inkfinite v1 + Inkfinite native fixture @@ -44,12 +44,12 @@ - Frozen Markdown + Native Markdown • bold item • code item - const version = 1; + const scale = 1; diff --git a/fixtures/v2/shape-registry.json b/fixtures/native/shape-registry.json similarity index 97% rename from fixtures/v2/shape-registry.json rename to fixtures/native/shape-registry.json index 3b89293..412374e 100644 --- a/fixtures/v2/shape-registry.json +++ b/fixtures/native/shape-registry.json @@ -86,7 +86,7 @@ "provenance": { "actor_id": "actor:fixture", "origin": "system", - "source": "v2-06", + "source": "native-fixture", "timestamp": 1700000000000 }, "role": "fixture.shape", @@ -123,7 +123,7 @@ "base_heads": [ "head:fixture" ], - "description": "V2-06 shared binding fixture", + "description": "Native shared binding fixture", "id": "transaction:fixture", "operations": [ { diff --git a/fixtures/v1/desktop/all-features.inkfinite.json b/fixtures/v1/desktop/all-features.inkfinite.json deleted file mode 100644 index b2e0aae..0000000 --- a/fixtures/v1/desktop/all-features.inkfinite.json +++ /dev/null @@ -1,396 +0,0 @@ -{ - "board": { - "id": "board:v1-fixtures", - "name": "V1 compatibility fixtures", - "createdAt": 1784246400000, - "updatedAt": 1784246400000 - }, - "doc": { - "pages": { - "page:fixtures": { - "id": "page:fixtures", - "name": "All features", - "shapeIds": [ - "shape:stencil-sticky", - "shape:stencil-process", - "shape:stencil-decision", - "shape:stencil-terminator", - "shape:stencil-card", - "shape:stencil-card-divider", - "shape:ellipse", - "shape:line", - "shape:arrow", - "shape:text", - "shape:stroke", - "shape:markdown" - ] - }, - "page:ordering": { - "id": "page:ordering", - "name": "Persisted ordering", - "shapeIds": [ - "shape:ordering-back", - "shape:ordering-middle", - "shape:ordering-front" - ] - } - }, - "shapes": { - "shape:stencil-process": { - "id": "shape:stencil-process", - "type": "rect", - "pageId": "page:fixtures", - "x": 40, - "y": 40, - "rot": 0, - "props": { - "w": 120, - "h": 80, - "fill": "#ffffff", - "stroke": "#000000", - "radius": 0 - } - }, - "shape:stencil-decision": { - "id": "shape:stencil-decision", - "type": "rect", - "pageId": "page:fixtures", - "x": 220, - "y": 40, - "rot": 0.7853981633974483, - "props": { - "w": 80, - "h": 80, - "fill": "#ffffff", - "stroke": "#000000", - "radius": 0 - } - }, - "shape:stencil-terminator": { - "id": "shape:stencil-terminator", - "type": "rect", - "pageId": "page:fixtures", - "x": 380, - "y": 40, - "rot": 0, - "props": { - "w": 120, - "h": 60, - "fill": "#ffffff", - "stroke": "#000000", - "radius": 30 - } - }, - "shape:stencil-sticky": { - "id": "shape:stencil-sticky", - "type": "rect", - "pageId": "page:fixtures", - "x": 560, - "y": 40, - "rot": 0, - "props": { - "w": 200, - "h": 200, - "fill": "#fff740", - "stroke": "transparent", - "radius": 0 - } - }, - "shape:stencil-card": { - "id": "shape:stencil-card", - "type": "rect", - "pageId": "page:fixtures", - "x": 40, - "y": 220, - "rot": 0, - "groupId": "group:card", - "props": { - "w": 300, - "h": 200, - "fill": "#ffffff", - "stroke": "#333333", - "radius": 8 - } - }, - "shape:stencil-card-divider": { - "id": "shape:stencil-card-divider", - "type": "line", - "pageId": "page:fixtures", - "x": 40, - "y": 270, - "rot": 0, - "groupId": "group:card", - "props": { - "a": { - "x": 0, - "y": 0 - }, - "b": { - "x": 300, - "y": 0 - }, - "stroke": "#333333", - "width": 1 - } - }, - "shape:ellipse": { - "id": "shape:ellipse", - "type": "ellipse", - "pageId": "page:fixtures", - "x": 400, - "y": 280, - "rot": 0, - "props": { - "w": 150, - "h": 100, - "fill": "#dbeafe", - "stroke": "#1d4ed8" - } - }, - "shape:line": { - "id": "shape:line", - "type": "line", - "pageId": "page:fixtures", - "x": 400, - "y": 430, - "rot": 0, - "props": { - "a": { - "x": 0, - "y": 0 - }, - "b": { - "x": 180, - "y": 60 - }, - "stroke": "#334155", - "width": 3 - } - }, - "shape:arrow": { - "id": "shape:arrow", - "type": "arrow", - "pageId": "page:fixtures", - "x": 0, - "y": 0, - "rot": 0, - "props": { - "points": [ - { - "x": 160, - "y": 80 - }, - { - "x": 350, - "y": 160 - }, - { - "x": 475, - "y": 330 - } - ], - "start": { - "kind": "bound", - "bindingId": "binding:arrow-start" - }, - "end": { - "kind": "bound", - "bindingId": "binding:arrow-end" - }, - "style": { - "stroke": "#7c3aed", - "width": 2, - "headStart": true, - "headEnd": true, - "dash": [ - 8, - 4 - ] - }, - "routing": { - "kind": "orthogonal", - "cornerRadius": 8 - }, - "label": { - "text": "bound route", - "align": "center", - "offset": 12 - } - } - }, - "shape:text": { - "id": "shape:text", - "type": "text", - "pageId": "page:fixtures", - "x": 620, - "y": 300, - "rot": 0, - "groupId": "group:content", - "props": { - "text": "Inkfinite v1 fixture", - "fontSize": 18, - "fontFamily": "Inter", - "color": "#111827", - "w": 180 - } - }, - "shape:stroke": { - "id": "shape:stroke", - "type": "stroke", - "pageId": "page:fixtures", - "x": 0, - "y": 0, - "rot": 0, - "props": { - "points": [ - [ - 620, - 390, - 0.2 - ], - [ - 650, - 410, - 0.6 - ], - [ - 690, - 395, - 0.9 - ], - [ - 730, - 430, - 0.5 - ] - ], - "style": { - "color": "#dc2626", - "opacity": 0.75 - }, - "brush": { - "size": 12, - "thinning": 0.5, - "smoothing": 0.5, - "streamline": 0.5, - "simulatePressure": false - } - } - }, - "shape:markdown": { - "id": "shape:markdown", - "type": "markdown", - "pageId": "page:fixtures", - "x": 40, - "y": 500, - "rot": 0, - "groupId": "group:content", - "props": { - "md": "# Frozen Markdown\n\n- **bold** item\n- `code` item\n\n```ts\nconst version = 1;\n```", - "w": 360, - "h": 240, - "fontSize": 16, - "fontFamily": "Inter", - "color": "#0f172a", - "bg": "#f8fafc", - "border": "#94a3b8" - } - }, - "shape:ordering-back": { - "id": "shape:ordering-back", - "type": "rect", - "pageId": "page:ordering", - "x": 100, - "y": 100, - "rot": 0, - "props": { - "w": 180, - "h": 180, - "fill": "#ef4444", - "stroke": "#7f1d1d", - "radius": 0 - } - }, - "shape:ordering-middle": { - "id": "shape:ordering-middle", - "type": "ellipse", - "pageId": "page:ordering", - "x": 130, - "y": 130, - "rot": 0, - "props": { - "w": 180, - "h": 180, - "fill": "#22c55e", - "stroke": "#14532d" - } - }, - "shape:ordering-front": { - "id": "shape:ordering-front", - "type": "rect", - "pageId": "page:ordering", - "x": 160, - "y": 160, - "rot": 0, - "props": { - "w": 180, - "h": 180, - "fill": "#3b82f6", - "stroke": "#1e3a8a", - "radius": 16 - } - } - }, - "bindings": { - "binding:arrow-start": { - "id": "binding:arrow-start", - "type": "arrow-end", - "fromShapeId": "shape:arrow", - "toShapeId": "shape:stencil-process", - "handle": "start", - "anchor": { - "kind": "edge", - "nx": 1, - "ny": 0 - } - }, - "binding:arrow-end": { - "id": "binding:arrow-end", - "type": "arrow-end", - "fromShapeId": "shape:arrow", - "toShapeId": "shape:ellipse", - "handle": "end", - "anchor": { - "kind": "center" - } - } - } - }, - "order": { - "pageIds": [ - "page:ordering", - "page:fixtures" - ], - "shapeOrder": { - "page:fixtures": [ - "shape:stencil-sticky", - "shape:stencil-process", - "shape:stencil-decision", - "shape:stencil-terminator", - "shape:stencil-card", - "shape:stencil-card-divider", - "shape:ellipse", - "shape:line", - "shape:arrow", - "shape:text", - "shape:stroke", - "shape:markdown" - ], - "page:ordering": [ - "shape:ordering-back", - "shape:ordering-middle", - "shape:ordering-front" - ] - } - } -} diff --git a/fixtures/v1/history/history-edits.json b/fixtures/v1/history/history-edits.json deleted file mode 100644 index a706d57..0000000 --- a/fixtures/v1/history/history-edits.json +++ /dev/null @@ -1,75 +0,0 @@ -{ - "initialState": { - "doc": { - "pages": { - "page:history": { - "id": "page:history", - "name": "History", - "shapeIds": [ - "shape:history" - ] - } - }, - "shapes": { - "shape:history": { - "id": "shape:history", - "type": "rect", - "pageId": "page:history", - "x": 20, - "y": 30, - "rot": 0, - "props": { - "w": 100, - "h": 60, - "fill": "#ffffff", - "stroke": "#000000", - "radius": 4 - } - } - }, - "bindings": {} - }, - "ui": { - "currentPageId": "page:history", - "selectionIds": [ - "shape:history" - ], - "toolId": "select" - }, - "camera": { - "x": 0, - "y": 0, - "zoom": 1 - } - }, - "edits": [ - { - "kind": "update-shape", - "shapeId": "shape:history", - "patch": { - "x": 220, - "y": 180, - "rot": 0.25 - } - }, - { - "kind": "update-shape", - "shapeId": "shape:history", - "patch": { - "props": { - "fill": "#f59e0b" - } - } - }, - { - "kind": "delete-shape", - "shapeId": "shape:history" - } - ], - "expectedAfterUndoAll": { - "shapeId": "shape:history", - "x": 20, - "y": 30, - "fill": "#ffffff" - } -} diff --git a/fixtures/v1/invalid/dangling-references.inkfinite.json b/fixtures/v1/invalid/dangling-references.inkfinite.json deleted file mode 100644 index c21dedd..0000000 --- a/fixtures/v1/invalid/dangling-references.inkfinite.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "board": { - "id": "board:invalid-dangling", - "name": "V1 compatibility fixtures", - "createdAt": 1784246400000, - "updatedAt": 1784246400000 - }, - "doc": { - "pages": { - "page:invalid": { - "id": "page:invalid", - "name": "Invalid", - "shapeIds": [ - "shape:missing" - ] - } - }, - "shapes": { - "shape:dangling": { - "id": "shape:dangling", - "type": "rect", - "pageId": "page:missing", - "x": 0, - "y": 0, - "rot": 0, - "props": { - "w": 10, - "h": 10, - "fill": "#fff", - "stroke": "#000", - "radius": 0 - } - } - }, - "bindings": {} - }, - "order": { - "pageIds": [ - "page:invalid" - ], - "shapeOrder": { - "page:invalid": [ - "shape:missing" - ] - } - } -} diff --git a/fixtures/v1/invalid/duplicate-order.inkfinite.json b/fixtures/v1/invalid/duplicate-order.inkfinite.json deleted file mode 100644 index e5b2804..0000000 --- a/fixtures/v1/invalid/duplicate-order.inkfinite.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "board": { - "id": "board:invalid-order", - "name": "V1 compatibility fixtures", - "createdAt": 1784246400000, - "updatedAt": 1784246400000 - }, - "doc": { - "pages": { - "page:invalid": { - "id": "page:invalid", - "name": "Invalid", - "shapeIds": [ - "shape:one", - "shape:one" - ] - } - }, - "shapes": { - "shape:one": { - "id": "shape:one", - "type": "rect", - "pageId": "page:invalid", - "x": 0, - "y": 0, - "rot": 0, - "props": { - "w": 10, - "h": 10, - "fill": "#fff", - "stroke": "#000", - "radius": 0 - } - } - }, - "bindings": {} - }, - "order": { - "pageIds": [ - "page:invalid" - ], - "shapeOrder": { - "page:invalid": [ - "shape:one", - "shape:one" - ] - } - } -} diff --git a/fixtures/v1/invalid/malformed-json.inkfinite.json b/fixtures/v1/invalid/malformed-json.inkfinite.json deleted file mode 100644 index 67fba3e..0000000 --- a/fixtures/v1/invalid/malformed-json.inkfinite.json +++ /dev/null @@ -1,2 +0,0 @@ -{ - "board": diff --git a/fixtures/v1/invalid/missing-envelope-fields.json b/fixtures/v1/invalid/missing-envelope-fields.json deleted file mode 100644 index b9e0221..0000000 --- a/fixtures/v1/invalid/missing-envelope-fields.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "board": { - "id": "board:v1-fixtures", - "name": "V1 compatibility fixtures", - "createdAt": 1784246400000, - "updatedAt": 1784246400000 - } -} diff --git a/fixtures/v1/manifest.json b/fixtures/v1/manifest.json deleted file mode 100644 index d44b5b3..0000000 --- a/fixtures/v1/manifest.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "format": "inkfinite-v1-compatibility-fixtures", - "generatedAt": "2026-07-17T00:00:00.000Z", - "generator": "scripts/generate-v1-fixtures.mjs", - "performanceSeed": 439041101, - "coverage": { - "shapeTypes": [ - "rect", - "ellipse", - "line", - "arrow", - "text", - "stroke", - "markdown" - ], - "stencilIds": [ - "flowchart:process", - "flowchart:decision", - "flowchart:terminator", - "etc:stickynote", - "ui:card" - ], - "groupIds": [ - "group:card", - "group:content" - ], - "bindingIds": [ - "binding:arrow-start", - "binding:arrow-end" - ], - "pageIds": [ - "page:fixtures", - "page:ordering" - ] - } -} diff --git a/fixtures/v1/performance/baseline.json b/fixtures/v1/performance/baseline.json deleted file mode 100644 index 50ccfd1..0000000 --- a/fixtures/v1/performance/baseline.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "schemaVersion": 1, - "capturedAt": "2026-07-17T20:05:24.940Z", - "fixture": { - "path": "fixtures/v1/performance/board-10000.inkfinite.json", - "seed": 439041101, - "documentShapeCount": 10000, - "visibleShapeCount": 252, - "viewport": { - "width": 1280, - "height": 720 - }, - "camera": { - "x": 3200, - "y": 3200, - "zoom": 1 - } - }, - "hardware": { - "platform": "darwin", - "osRelease": "25.5.0", - "cpu": "Apple M1", - "logicalCpuCount": 8, - "cpuSpeedMHz": 2400, - "totalMemoryBytes": 8589934592, - "freeMemoryBytesAtCapture": 202473472 - }, - "runtime": { - "node": "v26.5.0", - "v8": "14.6.202.34-node.24", - "pnpm": "11.13.1", - "rustc": "rustc 1.88.0 (6b00bc388 2025-06-23)", - "cargo": "cargo 1.88.0 (873a06493 2025-05-10)", - "typescript": "Version 5.9.3", - "vitest": "vitest/4.0.16 darwin-arm64 node-v26.5.0", - "tauri": "tauri-cli 2.9.6" - }, - "measurements": { - "frameTimeMillisecondsMedian": 0.6086249999998472, - "hitTestTimeMillisecondsMedian": 0.21672070800000007, - "hitTestSampleCount": 1000, - "memoryRssBeforeOpenBytes": 66846720, - "memoryRssAfterOpenBytes": 104120320, - "memoryRssDeltaBytes": 37273600, - "openTimeMillisecondsMedian": 9.687624999999997, - "saveTimeMillisecondsMedian": 12.09308400000009 - }, - "notes": [ - "The v1 renderer traverses every shape on the current page; visibleShapeCount is recorded separately.", - "Frame timing uses the production Canvas 2D renderer with a no-op context to isolate JavaScript traversal cost.", - "No performance budget is enforced by V2-01; this file is the comparison point for later architecture gates." - ] -} diff --git a/fixtures/v1/performance/board-10000.inkfinite.json b/fixtures/v1/performance/board-10000.inkfinite.json deleted file mode 100644 index 44e651b..0000000 --- a/fixtures/v1/performance/board-10000.inkfinite.json +++ /dev/null @@ -1,170035 +0,0 @@ -{ - "board": { - "id": "board:10000", - "name": "10,000 shape baseline", - "createdAt": 1784246400000, - "updatedAt": 1784246400000 - }, - "doc": { - "pages": { - "page:10000": { - "id": "page:10000", - "name": "10,000 shapes", - "shapeIds": [ - "shape:perf:00000", - "shape:perf:00001", - "shape:perf:00002", - "shape:perf:00003", - "shape:perf:00004", - "shape:perf:00005", - "shape:perf:00006", - "shape:perf:00007", - "shape:perf:00008", - "shape:perf:00009", - "shape:perf:00010", - "shape:perf:00011", - "shape:perf:00012", - "shape:perf:00013", - "shape:perf:00014", - "shape:perf:00015", - "shape:perf:00016", - "shape:perf:00017", - "shape:perf:00018", - "shape:perf:00019", - "shape:perf:00020", - "shape:perf:00021", - "shape:perf:00022", - "shape:perf:00023", - "shape:perf:00024", - "shape:perf:00025", - "shape:perf:00026", - "shape:perf:00027", - "shape:perf:00028", - "shape:perf:00029", - "shape:perf:00030", - "shape:perf:00031", - "shape:perf:00032", - "shape:perf:00033", - "shape:perf:00034", - "shape:perf:00035", - "shape:perf:00036", - "shape:perf:00037", - "shape:perf:00038", - "shape:perf:00039", - "shape:perf:00040", - "shape:perf:00041", - "shape:perf:00042", - "shape:perf:00043", - "shape:perf:00044", - "shape:perf:00045", - "shape:perf:00046", - "shape:perf:00047", - "shape:perf:00048", - "shape:perf:00049", - "shape:perf:00050", - "shape:perf:00051", - "shape:perf:00052", - "shape:perf:00053", - "shape:perf:00054", - "shape:perf:00055", - "shape:perf:00056", - "shape:perf:00057", - "shape:perf:00058", - "shape:perf:00059", - "shape:perf:00060", - "shape:perf:00061", - "shape:perf:00062", - "shape:perf:00063", - "shape:perf:00064", - "shape:perf:00065", - "shape:perf:00066", - "shape:perf:00067", - "shape:perf:00068", - "shape:perf:00069", - "shape:perf:00070", - "shape:perf:00071", - "shape:perf:00072", - "shape:perf:00073", - "shape:perf:00074", - "shape:perf:00075", - "shape:perf:00076", - "shape:perf:00077", - "shape:perf:00078", - "shape:perf:00079", - "shape:perf:00080", - "shape:perf:00081", - "shape:perf:00082", - "shape:perf:00083", - "shape:perf:00084", - "shape:perf:00085", - "shape:perf:00086", - "shape:perf:00087", - "shape:perf:00088", - "shape:perf:00089", - "shape:perf:00090", - "shape:perf:00091", - "shape:perf:00092", - "shape:perf:00093", - "shape:perf:00094", - "shape:perf:00095", - "shape:perf:00096", - "shape:perf:00097", - "shape:perf:00098", - "shape:perf:00099", - "shape:perf:00100", - "shape:perf:00101", - "shape:perf:00102", - "shape:perf:00103", - "shape:perf:00104", - "shape:perf:00105", - "shape:perf:00106", - "shape:perf:00107", - "shape:perf:00108", - "shape:perf:00109", - "shape:perf:00110", - "shape:perf:00111", - "shape:perf:00112", - "shape:perf:00113", - "shape:perf:00114", - "shape:perf:00115", - "shape:perf:00116", - "shape:perf:00117", - "shape:perf:00118", - "shape:perf:00119", - "shape:perf:00120", - "shape:perf:00121", - "shape:perf:00122", - "shape:perf:00123", - "shape:perf:00124", - "shape:perf:00125", - "shape:perf:00126", - "shape:perf:00127", - "shape:perf:00128", - "shape:perf:00129", - "shape:perf:00130", - "shape:perf:00131", - "shape:perf:00132", - "shape:perf:00133", - "shape:perf:00134", - "shape:perf:00135", - "shape:perf:00136", - "shape:perf:00137", - "shape:perf:00138", - "shape:perf:00139", - "shape:perf:00140", - "shape:perf:00141", - "shape:perf:00142", - "shape:perf:00143", - "shape:perf:00144", - "shape:perf:00145", - "shape:perf:00146", - "shape:perf:00147", - "shape:perf:00148", - "shape:perf:00149", - "shape:perf:00150", - "shape:perf:00151", - "shape:perf:00152", - "shape:perf:00153", - "shape:perf:00154", - "shape:perf:00155", - "shape:perf:00156", - "shape:perf:00157", - "shape:perf:00158", - "shape:perf:00159", - "shape:perf:00160", - "shape:perf:00161", - "shape:perf:00162", - "shape:perf:00163", - "shape:perf:00164", - "shape:perf:00165", - "shape:perf:00166", - "shape:perf:00167", - "shape:perf:00168", - "shape:perf:00169", - "shape:perf:00170", - "shape:perf:00171", - "shape:perf:00172", - "shape:perf:00173", - "shape:perf:00174", - "shape:perf:00175", - "shape:perf:00176", - "shape:perf:00177", - "shape:perf:00178", - "shape:perf:00179", - "shape:perf:00180", - "shape:perf:00181", - "shape:perf:00182", - "shape:perf:00183", - "shape:perf:00184", - "shape:perf:00185", - "shape:perf:00186", - "shape:perf:00187", - "shape:perf:00188", - "shape:perf:00189", - "shape:perf:00190", - "shape:perf:00191", - "shape:perf:00192", - "shape:perf:00193", - "shape:perf:00194", - "shape:perf:00195", - "shape:perf:00196", - "shape:perf:00197", - "shape:perf:00198", - "shape:perf:00199", - "shape:perf:00200", - "shape:perf:00201", - "shape:perf:00202", - "shape:perf:00203", - "shape:perf:00204", - "shape:perf:00205", - "shape:perf:00206", - "shape:perf:00207", - "shape:perf:00208", - "shape:perf:00209", - "shape:perf:00210", - "shape:perf:00211", - "shape:perf:00212", - "shape:perf:00213", - "shape:perf:00214", - "shape:perf:00215", - "shape:perf:00216", - "shape:perf:00217", - "shape:perf:00218", - "shape:perf:00219", - "shape:perf:00220", - "shape:perf:00221", - "shape:perf:00222", - "shape:perf:00223", - "shape:perf:00224", - "shape:perf:00225", - "shape:perf:00226", - "shape:perf:00227", - "shape:perf:00228", - "shape:perf:00229", - "shape:perf:00230", - "shape:perf:00231", - "shape:perf:00232", - "shape:perf:00233", - "shape:perf:00234", - "shape:perf:00235", - "shape:perf:00236", - "shape:perf:00237", - "shape:perf:00238", - "shape:perf:00239", - "shape:perf:00240", - "shape:perf:00241", - "shape:perf:00242", - "shape:perf:00243", - "shape:perf:00244", - "shape:perf:00245", - "shape:perf:00246", - "shape:perf:00247", - "shape:perf:00248", - "shape:perf:00249", - "shape:perf:00250", - "shape:perf:00251", - "shape:perf:00252", - "shape:perf:00253", - "shape:perf:00254", - "shape:perf:00255", - "shape:perf:00256", - "shape:perf:00257", - "shape:perf:00258", - "shape:perf:00259", - "shape:perf:00260", - "shape:perf:00261", - "shape:perf:00262", - "shape:perf:00263", - "shape:perf:00264", - "shape:perf:00265", - "shape:perf:00266", - "shape:perf:00267", - "shape:perf:00268", - "shape:perf:00269", - "shape:perf:00270", - "shape:perf:00271", - "shape:perf:00272", - "shape:perf:00273", - "shape:perf:00274", - "shape:perf:00275", - "shape:perf:00276", - "shape:perf:00277", - "shape:perf:00278", - "shape:perf:00279", - "shape:perf:00280", - "shape:perf:00281", - "shape:perf:00282", - "shape:perf:00283", - "shape:perf:00284", - "shape:perf:00285", - "shape:perf:00286", - "shape:perf:00287", - "shape:perf:00288", - "shape:perf:00289", - "shape:perf:00290", - "shape:perf:00291", - "shape:perf:00292", - "shape:perf:00293", - "shape:perf:00294", - "shape:perf:00295", - "shape:perf:00296", - "shape:perf:00297", - "shape:perf:00298", - "shape:perf:00299", - "shape:perf:00300", - "shape:perf:00301", - "shape:perf:00302", - "shape:perf:00303", - "shape:perf:00304", - "shape:perf:00305", - "shape:perf:00306", - "shape:perf:00307", - "shape:perf:00308", - "shape:perf:00309", - "shape:perf:00310", - "shape:perf:00311", - "shape:perf:00312", - "shape:perf:00313", - "shape:perf:00314", - "shape:perf:00315", - "shape:perf:00316", - "shape:perf:00317", - "shape:perf:00318", - "shape:perf:00319", - "shape:perf:00320", - "shape:perf:00321", - "shape:perf:00322", - "shape:perf:00323", - "shape:perf:00324", - "shape:perf:00325", - "shape:perf:00326", - "shape:perf:00327", - "shape:perf:00328", - "shape:perf:00329", - "shape:perf:00330", - "shape:perf:00331", - "shape:perf:00332", - "shape:perf:00333", - "shape:perf:00334", - "shape:perf:00335", - "shape:perf:00336", - "shape:perf:00337", - "shape:perf:00338", - "shape:perf:00339", - "shape:perf:00340", - "shape:perf:00341", - "shape:perf:00342", - "shape:perf:00343", - "shape:perf:00344", - "shape:perf:00345", - "shape:perf:00346", - "shape:perf:00347", - "shape:perf:00348", - "shape:perf:00349", - "shape:perf:00350", - "shape:perf:00351", - "shape:perf:00352", - "shape:perf:00353", - "shape:perf:00354", - "shape:perf:00355", - "shape:perf:00356", - "shape:perf:00357", - "shape:perf:00358", - "shape:perf:00359", - "shape:perf:00360", - "shape:perf:00361", - "shape:perf:00362", - "shape:perf:00363", - "shape:perf:00364", - "shape:perf:00365", - "shape:perf:00366", - "shape:perf:00367", - "shape:perf:00368", - "shape:perf:00369", - "shape:perf:00370", - "shape:perf:00371", - "shape:perf:00372", - "shape:perf:00373", - "shape:perf:00374", - "shape:perf:00375", - "shape:perf:00376", - "shape:perf:00377", - "shape:perf:00378", - "shape:perf:00379", - "shape:perf:00380", - "shape:perf:00381", - "shape:perf:00382", - "shape:perf:00383", - "shape:perf:00384", - "shape:perf:00385", - "shape:perf:00386", - "shape:perf:00387", - "shape:perf:00388", - "shape:perf:00389", - "shape:perf:00390", - "shape:perf:00391", - "shape:perf:00392", - "shape:perf:00393", - "shape:perf:00394", - "shape:perf:00395", - "shape:perf:00396", - "shape:perf:00397", - "shape:perf:00398", - "shape:perf:00399", - "shape:perf:00400", - "shape:perf:00401", - "shape:perf:00402", - "shape:perf:00403", - "shape:perf:00404", - "shape:perf:00405", - "shape:perf:00406", - "shape:perf:00407", - "shape:perf:00408", - "shape:perf:00409", - "shape:perf:00410", - "shape:perf:00411", - "shape:perf:00412", - "shape:perf:00413", - "shape:perf:00414", - "shape:perf:00415", - "shape:perf:00416", - "shape:perf:00417", - "shape:perf:00418", - "shape:perf:00419", - "shape:perf:00420", - "shape:perf:00421", - "shape:perf:00422", - "shape:perf:00423", - "shape:perf:00424", - "shape:perf:00425", - "shape:perf:00426", - "shape:perf:00427", - "shape:perf:00428", - "shape:perf:00429", - "shape:perf:00430", - "shape:perf:00431", - "shape:perf:00432", - "shape:perf:00433", - "shape:perf:00434", - "shape:perf:00435", - "shape:perf:00436", - "shape:perf:00437", - "shape:perf:00438", - "shape:perf:00439", - "shape:perf:00440", - "shape:perf:00441", - "shape:perf:00442", - "shape:perf:00443", - "shape:perf:00444", - "shape:perf:00445", - "shape:perf:00446", - "shape:perf:00447", - "shape:perf:00448", - "shape:perf:00449", - "shape:perf:00450", - "shape:perf:00451", - "shape:perf:00452", - "shape:perf:00453", - "shape:perf:00454", - "shape:perf:00455", - "shape:perf:00456", - "shape:perf:00457", - "shape:perf:00458", - "shape:perf:00459", - "shape:perf:00460", - "shape:perf:00461", - "shape:perf:00462", - "shape:perf:00463", - "shape:perf:00464", - "shape:perf:00465", - "shape:perf:00466", - "shape:perf:00467", - "shape:perf:00468", - "shape:perf:00469", - "shape:perf:00470", - "shape:perf:00471", - "shape:perf:00472", - "shape:perf:00473", - "shape:perf:00474", - "shape:perf:00475", - "shape:perf:00476", - "shape:perf:00477", - "shape:perf:00478", - "shape:perf:00479", - "shape:perf:00480", - "shape:perf:00481", - "shape:perf:00482", - "shape:perf:00483", - "shape:perf:00484", - "shape:perf:00485", - "shape:perf:00486", - "shape:perf:00487", - "shape:perf:00488", - "shape:perf:00489", - "shape:perf:00490", - "shape:perf:00491", - "shape:perf:00492", - "shape:perf:00493", - "shape:perf:00494", - "shape:perf:00495", - "shape:perf:00496", - "shape:perf:00497", - "shape:perf:00498", - "shape:perf:00499", - "shape:perf:00500", - "shape:perf:00501", - "shape:perf:00502", - "shape:perf:00503", - "shape:perf:00504", - "shape:perf:00505", - "shape:perf:00506", - "shape:perf:00507", - "shape:perf:00508", - "shape:perf:00509", - "shape:perf:00510", - "shape:perf:00511", - "shape:perf:00512", - "shape:perf:00513", - "shape:perf:00514", - "shape:perf:00515", - "shape:perf:00516", - "shape:perf:00517", - "shape:perf:00518", - "shape:perf:00519", - "shape:perf:00520", - "shape:perf:00521", - "shape:perf:00522", - "shape:perf:00523", - "shape:perf:00524", - "shape:perf:00525", - "shape:perf:00526", - "shape:perf:00527", - "shape:perf:00528", - "shape:perf:00529", - "shape:perf:00530", - "shape:perf:00531", - "shape:perf:00532", - "shape:perf:00533", - "shape:perf:00534", - "shape:perf:00535", - "shape:perf:00536", - "shape:perf:00537", - "shape:perf:00538", - "shape:perf:00539", - "shape:perf:00540", - "shape:perf:00541", - "shape:perf:00542", - "shape:perf:00543", - "shape:perf:00544", - "shape:perf:00545", - "shape:perf:00546", - "shape:perf:00547", - "shape:perf:00548", - "shape:perf:00549", - "shape:perf:00550", - "shape:perf:00551", - "shape:perf:00552", - "shape:perf:00553", - "shape:perf:00554", - "shape:perf:00555", - "shape:perf:00556", - "shape:perf:00557", - "shape:perf:00558", - "shape:perf:00559", - "shape:perf:00560", - "shape:perf:00561", - "shape:perf:00562", - "shape:perf:00563", - "shape:perf:00564", - "shape:perf:00565", - "shape:perf:00566", - "shape:perf:00567", - "shape:perf:00568", - "shape:perf:00569", - "shape:perf:00570", - "shape:perf:00571", - "shape:perf:00572", - "shape:perf:00573", - "shape:perf:00574", - "shape:perf:00575", - "shape:perf:00576", - "shape:perf:00577", - "shape:perf:00578", - "shape:perf:00579", - "shape:perf:00580", - "shape:perf:00581", - "shape:perf:00582", - "shape:perf:00583", - "shape:perf:00584", - "shape:perf:00585", - "shape:perf:00586", - "shape:perf:00587", - "shape:perf:00588", - "shape:perf:00589", - "shape:perf:00590", - "shape:perf:00591", - "shape:perf:00592", - "shape:perf:00593", - "shape:perf:00594", - "shape:perf:00595", - "shape:perf:00596", - "shape:perf:00597", - "shape:perf:00598", - "shape:perf:00599", - "shape:perf:00600", - "shape:perf:00601", - "shape:perf:00602", - "shape:perf:00603", - "shape:perf:00604", - "shape:perf:00605", - "shape:perf:00606", - "shape:perf:00607", - "shape:perf:00608", - "shape:perf:00609", - "shape:perf:00610", - "shape:perf:00611", - "shape:perf:00612", - "shape:perf:00613", - "shape:perf:00614", - "shape:perf:00615", - "shape:perf:00616", - "shape:perf:00617", - "shape:perf:00618", - "shape:perf:00619", - "shape:perf:00620", - "shape:perf:00621", - "shape:perf:00622", - "shape:perf:00623", - "shape:perf:00624", - "shape:perf:00625", - "shape:perf:00626", - "shape:perf:00627", - "shape:perf:00628", - "shape:perf:00629", - "shape:perf:00630", - "shape:perf:00631", - "shape:perf:00632", - "shape:perf:00633", - "shape:perf:00634", - "shape:perf:00635", - "shape:perf:00636", - "shape:perf:00637", - "shape:perf:00638", - "shape:perf:00639", - "shape:perf:00640", - "shape:perf:00641", - "shape:perf:00642", - "shape:perf:00643", - "shape:perf:00644", - "shape:perf:00645", - "shape:perf:00646", - "shape:perf:00647", - "shape:perf:00648", - "shape:perf:00649", - "shape:perf:00650", - "shape:perf:00651", - "shape:perf:00652", - "shape:perf:00653", - "shape:perf:00654", - "shape:perf:00655", - "shape:perf:00656", - "shape:perf:00657", - "shape:perf:00658", - "shape:perf:00659", - "shape:perf:00660", - "shape:perf:00661", - "shape:perf:00662", - "shape:perf:00663", - "shape:perf:00664", - "shape:perf:00665", - "shape:perf:00666", - "shape:perf:00667", - "shape:perf:00668", - "shape:perf:00669", - "shape:perf:00670", - "shape:perf:00671", - "shape:perf:00672", - "shape:perf:00673", - "shape:perf:00674", - "shape:perf:00675", - "shape:perf:00676", - "shape:perf:00677", - "shape:perf:00678", - "shape:perf:00679", - "shape:perf:00680", - "shape:perf:00681", - "shape:perf:00682", - "shape:perf:00683", - "shape:perf:00684", - "shape:perf:00685", - "shape:perf:00686", - "shape:perf:00687", - "shape:perf:00688", - "shape:perf:00689", - "shape:perf:00690", - "shape:perf:00691", - "shape:perf:00692", - "shape:perf:00693", - "shape:perf:00694", - "shape:perf:00695", - "shape:perf:00696", - "shape:perf:00697", - "shape:perf:00698", - "shape:perf:00699", - "shape:perf:00700", - "shape:perf:00701", - "shape:perf:00702", - "shape:perf:00703", - "shape:perf:00704", - "shape:perf:00705", - "shape:perf:00706", - "shape:perf:00707", - "shape:perf:00708", - "shape:perf:00709", - "shape:perf:00710", - "shape:perf:00711", - "shape:perf:00712", - "shape:perf:00713", - "shape:perf:00714", - "shape:perf:00715", - "shape:perf:00716", - "shape:perf:00717", - "shape:perf:00718", - "shape:perf:00719", - "shape:perf:00720", - "shape:perf:00721", - "shape:perf:00722", - "shape:perf:00723", - "shape:perf:00724", - "shape:perf:00725", - "shape:perf:00726", - "shape:perf:00727", - "shape:perf:00728", - "shape:perf:00729", - "shape:perf:00730", - "shape:perf:00731", - "shape:perf:00732", - "shape:perf:00733", - "shape:perf:00734", - "shape:perf:00735", - "shape:perf:00736", - "shape:perf:00737", - "shape:perf:00738", - "shape:perf:00739", - "shape:perf:00740", - "shape:perf:00741", - "shape:perf:00742", - "shape:perf:00743", - "shape:perf:00744", - "shape:perf:00745", - "shape:perf:00746", - "shape:perf:00747", - "shape:perf:00748", - "shape:perf:00749", - "shape:perf:00750", - "shape:perf:00751", - "shape:perf:00752", - "shape:perf:00753", - "shape:perf:00754", - "shape:perf:00755", - "shape:perf:00756", - "shape:perf:00757", - "shape:perf:00758", - "shape:perf:00759", - "shape:perf:00760", - "shape:perf:00761", - "shape:perf:00762", - "shape:perf:00763", - "shape:perf:00764", - "shape:perf:00765", - "shape:perf:00766", - "shape:perf:00767", - "shape:perf:00768", - "shape:perf:00769", - "shape:perf:00770", - "shape:perf:00771", - "shape:perf:00772", - "shape:perf:00773", - "shape:perf:00774", - "shape:perf:00775", - "shape:perf:00776", - "shape:perf:00777", - "shape:perf:00778", - "shape:perf:00779", - "shape:perf:00780", - "shape:perf:00781", - "shape:perf:00782", - "shape:perf:00783", - "shape:perf:00784", - "shape:perf:00785", - "shape:perf:00786", - "shape:perf:00787", - "shape:perf:00788", - "shape:perf:00789", - "shape:perf:00790", - "shape:perf:00791", - "shape:perf:00792", - "shape:perf:00793", - "shape:perf:00794", - "shape:perf:00795", - "shape:perf:00796", - "shape:perf:00797", - "shape:perf:00798", - "shape:perf:00799", - "shape:perf:00800", - "shape:perf:00801", - "shape:perf:00802", - "shape:perf:00803", - "shape:perf:00804", - "shape:perf:00805", - "shape:perf:00806", - "shape:perf:00807", - "shape:perf:00808", - "shape:perf:00809", - "shape:perf:00810", - "shape:perf:00811", - "shape:perf:00812", - "shape:perf:00813", - "shape:perf:00814", - "shape:perf:00815", - "shape:perf:00816", - "shape:perf:00817", - "shape:perf:00818", - "shape:perf:00819", - "shape:perf:00820", - "shape:perf:00821", - "shape:perf:00822", - "shape:perf:00823", - "shape:perf:00824", - "shape:perf:00825", - "shape:perf:00826", - "shape:perf:00827", - "shape:perf:00828", - "shape:perf:00829", - "shape:perf:00830", - "shape:perf:00831", - "shape:perf:00832", - "shape:perf:00833", - "shape:perf:00834", - "shape:perf:00835", - "shape:perf:00836", - "shape:perf:00837", - "shape:perf:00838", - "shape:perf:00839", - "shape:perf:00840", - "shape:perf:00841", - "shape:perf:00842", - "shape:perf:00843", - "shape:perf:00844", - "shape:perf:00845", - "shape:perf:00846", - "shape:perf:00847", - "shape:perf:00848", - "shape:perf:00849", - "shape:perf:00850", - "shape:perf:00851", - "shape:perf:00852", - "shape:perf:00853", - "shape:perf:00854", - "shape:perf:00855", - "shape:perf:00856", - "shape:perf:00857", - "shape:perf:00858", - "shape:perf:00859", - "shape:perf:00860", - "shape:perf:00861", - "shape:perf:00862", - "shape:perf:00863", - "shape:perf:00864", - "shape:perf:00865", - "shape:perf:00866", - "shape:perf:00867", - "shape:perf:00868", - "shape:perf:00869", - "shape:perf:00870", - "shape:perf:00871", - "shape:perf:00872", - "shape:perf:00873", - "shape:perf:00874", - "shape:perf:00875", - "shape:perf:00876", - "shape:perf:00877", - "shape:perf:00878", - "shape:perf:00879", - "shape:perf:00880", - "shape:perf:00881", - "shape:perf:00882", - "shape:perf:00883", - "shape:perf:00884", - "shape:perf:00885", - "shape:perf:00886", - "shape:perf:00887", - "shape:perf:00888", - "shape:perf:00889", - "shape:perf:00890", - "shape:perf:00891", - "shape:perf:00892", - "shape:perf:00893", - "shape:perf:00894", - "shape:perf:00895", - "shape:perf:00896", - "shape:perf:00897", - "shape:perf:00898", - "shape:perf:00899", - "shape:perf:00900", - "shape:perf:00901", - "shape:perf:00902", - "shape:perf:00903", - "shape:perf:00904", - "shape:perf:00905", - "shape:perf:00906", - "shape:perf:00907", - "shape:perf:00908", - "shape:perf:00909", - "shape:perf:00910", - "shape:perf:00911", - "shape:perf:00912", - "shape:perf:00913", - "shape:perf:00914", - "shape:perf:00915", - "shape:perf:00916", - "shape:perf:00917", - "shape:perf:00918", - "shape:perf:00919", - "shape:perf:00920", - "shape:perf:00921", - "shape:perf:00922", - "shape:perf:00923", - "shape:perf:00924", - "shape:perf:00925", - "shape:perf:00926", - "shape:perf:00927", - "shape:perf:00928", - "shape:perf:00929", - "shape:perf:00930", - "shape:perf:00931", - "shape:perf:00932", - "shape:perf:00933", - "shape:perf:00934", - "shape:perf:00935", - "shape:perf:00936", - "shape:perf:00937", - "shape:perf:00938", - "shape:perf:00939", - "shape:perf:00940", - "shape:perf:00941", - "shape:perf:00942", - "shape:perf:00943", - "shape:perf:00944", - "shape:perf:00945", - "shape:perf:00946", - "shape:perf:00947", - "shape:perf:00948", - "shape:perf:00949", - "shape:perf:00950", - "shape:perf:00951", - "shape:perf:00952", - "shape:perf:00953", - "shape:perf:00954", - "shape:perf:00955", - "shape:perf:00956", - "shape:perf:00957", - "shape:perf:00958", - "shape:perf:00959", - "shape:perf:00960", - "shape:perf:00961", - "shape:perf:00962", - "shape:perf:00963", - "shape:perf:00964", - "shape:perf:00965", - "shape:perf:00966", - "shape:perf:00967", - "shape:perf:00968", - "shape:perf:00969", - "shape:perf:00970", - "shape:perf:00971", - "shape:perf:00972", - "shape:perf:00973", - "shape:perf:00974", - "shape:perf:00975", - "shape:perf:00976", - "shape:perf:00977", - "shape:perf:00978", - "shape:perf:00979", - "shape:perf:00980", - "shape:perf:00981", - "shape:perf:00982", - "shape:perf:00983", - "shape:perf:00984", - "shape:perf:00985", - "shape:perf:00986", - "shape:perf:00987", - "shape:perf:00988", - "shape:perf:00989", - "shape:perf:00990", - "shape:perf:00991", - "shape:perf:00992", - "shape:perf:00993", - "shape:perf:00994", - "shape:perf:00995", - "shape:perf:00996", - "shape:perf:00997", - "shape:perf:00998", - "shape:perf:00999", - "shape:perf:01000", - "shape:perf:01001", - "shape:perf:01002", - "shape:perf:01003", - "shape:perf:01004", - "shape:perf:01005", - "shape:perf:01006", - "shape:perf:01007", - "shape:perf:01008", - "shape:perf:01009", - "shape:perf:01010", - "shape:perf:01011", - "shape:perf:01012", - "shape:perf:01013", - "shape:perf:01014", - "shape:perf:01015", - "shape:perf:01016", - "shape:perf:01017", - "shape:perf:01018", - "shape:perf:01019", - "shape:perf:01020", - "shape:perf:01021", - "shape:perf:01022", - "shape:perf:01023", - "shape:perf:01024", - "shape:perf:01025", - "shape:perf:01026", - "shape:perf:01027", - "shape:perf:01028", - "shape:perf:01029", - "shape:perf:01030", - "shape:perf:01031", - "shape:perf:01032", - "shape:perf:01033", - "shape:perf:01034", - "shape:perf:01035", - "shape:perf:01036", - "shape:perf:01037", - "shape:perf:01038", - "shape:perf:01039", - "shape:perf:01040", - "shape:perf:01041", - "shape:perf:01042", - "shape:perf:01043", - "shape:perf:01044", - "shape:perf:01045", - "shape:perf:01046", - "shape:perf:01047", - "shape:perf:01048", - "shape:perf:01049", - "shape:perf:01050", - "shape:perf:01051", - "shape:perf:01052", - "shape:perf:01053", - "shape:perf:01054", - "shape:perf:01055", - "shape:perf:01056", - "shape:perf:01057", - "shape:perf:01058", - "shape:perf:01059", - "shape:perf:01060", - "shape:perf:01061", - "shape:perf:01062", - "shape:perf:01063", - "shape:perf:01064", - "shape:perf:01065", - "shape:perf:01066", - "shape:perf:01067", - "shape:perf:01068", - "shape:perf:01069", - "shape:perf:01070", - "shape:perf:01071", - "shape:perf:01072", - "shape:perf:01073", - "shape:perf:01074", - "shape:perf:01075", - "shape:perf:01076", - "shape:perf:01077", - "shape:perf:01078", - "shape:perf:01079", - "shape:perf:01080", - "shape:perf:01081", - "shape:perf:01082", - "shape:perf:01083", - "shape:perf:01084", - "shape:perf:01085", - "shape:perf:01086", - "shape:perf:01087", - "shape:perf:01088", - "shape:perf:01089", - "shape:perf:01090", - "shape:perf:01091", - "shape:perf:01092", - "shape:perf:01093", - "shape:perf:01094", - "shape:perf:01095", - "shape:perf:01096", - "shape:perf:01097", - "shape:perf:01098", - "shape:perf:01099", - "shape:perf:01100", - "shape:perf:01101", - "shape:perf:01102", - "shape:perf:01103", - "shape:perf:01104", - "shape:perf:01105", - "shape:perf:01106", - "shape:perf:01107", - "shape:perf:01108", - "shape:perf:01109", - "shape:perf:01110", - "shape:perf:01111", - "shape:perf:01112", - "shape:perf:01113", - "shape:perf:01114", - "shape:perf:01115", - "shape:perf:01116", - "shape:perf:01117", - "shape:perf:01118", - "shape:perf:01119", - "shape:perf:01120", - "shape:perf:01121", - "shape:perf:01122", - "shape:perf:01123", - "shape:perf:01124", - "shape:perf:01125", - "shape:perf:01126", - "shape:perf:01127", - "shape:perf:01128", - "shape:perf:01129", - "shape:perf:01130", - "shape:perf:01131", - "shape:perf:01132", - "shape:perf:01133", - "shape:perf:01134", - "shape:perf:01135", - "shape:perf:01136", - "shape:perf:01137", - "shape:perf:01138", - "shape:perf:01139", - "shape:perf:01140", - "shape:perf:01141", - "shape:perf:01142", - "shape:perf:01143", - "shape:perf:01144", - "shape:perf:01145", - "shape:perf:01146", - "shape:perf:01147", - "shape:perf:01148", - "shape:perf:01149", - "shape:perf:01150", - "shape:perf:01151", - "shape:perf:01152", - "shape:perf:01153", - "shape:perf:01154", - "shape:perf:01155", - "shape:perf:01156", - "shape:perf:01157", - "shape:perf:01158", - "shape:perf:01159", - "shape:perf:01160", - "shape:perf:01161", - "shape:perf:01162", - "shape:perf:01163", - "shape:perf:01164", - "shape:perf:01165", - "shape:perf:01166", - "shape:perf:01167", - "shape:perf:01168", - "shape:perf:01169", - "shape:perf:01170", - "shape:perf:01171", - "shape:perf:01172", - "shape:perf:01173", - "shape:perf:01174", - "shape:perf:01175", - "shape:perf:01176", - "shape:perf:01177", - "shape:perf:01178", - "shape:perf:01179", - "shape:perf:01180", - "shape:perf:01181", - "shape:perf:01182", - "shape:perf:01183", - "shape:perf:01184", - "shape:perf:01185", - "shape:perf:01186", - "shape:perf:01187", - "shape:perf:01188", - "shape:perf:01189", - "shape:perf:01190", - "shape:perf:01191", - "shape:perf:01192", - "shape:perf:01193", - "shape:perf:01194", - "shape:perf:01195", - "shape:perf:01196", - "shape:perf:01197", - "shape:perf:01198", - "shape:perf:01199", - "shape:perf:01200", - "shape:perf:01201", - "shape:perf:01202", - "shape:perf:01203", - "shape:perf:01204", - "shape:perf:01205", - "shape:perf:01206", - "shape:perf:01207", - "shape:perf:01208", - "shape:perf:01209", - "shape:perf:01210", - "shape:perf:01211", - "shape:perf:01212", - "shape:perf:01213", - "shape:perf:01214", - "shape:perf:01215", - "shape:perf:01216", - "shape:perf:01217", - "shape:perf:01218", - "shape:perf:01219", - "shape:perf:01220", - "shape:perf:01221", - "shape:perf:01222", - "shape:perf:01223", - "shape:perf:01224", - "shape:perf:01225", - "shape:perf:01226", - "shape:perf:01227", - "shape:perf:01228", - "shape:perf:01229", - "shape:perf:01230", - "shape:perf:01231", - "shape:perf:01232", - "shape:perf:01233", - "shape:perf:01234", - "shape:perf:01235", - "shape:perf:01236", - "shape:perf:01237", - "shape:perf:01238", - "shape:perf:01239", - "shape:perf:01240", - "shape:perf:01241", - "shape:perf:01242", - "shape:perf:01243", - "shape:perf:01244", - "shape:perf:01245", - "shape:perf:01246", - "shape:perf:01247", - "shape:perf:01248", - "shape:perf:01249", - "shape:perf:01250", - "shape:perf:01251", - "shape:perf:01252", - "shape:perf:01253", - "shape:perf:01254", - "shape:perf:01255", - "shape:perf:01256", - "shape:perf:01257", - "shape:perf:01258", - "shape:perf:01259", - "shape:perf:01260", - "shape:perf:01261", - "shape:perf:01262", - "shape:perf:01263", - "shape:perf:01264", - "shape:perf:01265", - "shape:perf:01266", - "shape:perf:01267", - "shape:perf:01268", - "shape:perf:01269", - "shape:perf:01270", - "shape:perf:01271", - "shape:perf:01272", - "shape:perf:01273", - "shape:perf:01274", - "shape:perf:01275", - "shape:perf:01276", - "shape:perf:01277", - "shape:perf:01278", - "shape:perf:01279", - "shape:perf:01280", - "shape:perf:01281", - "shape:perf:01282", - "shape:perf:01283", - "shape:perf:01284", - "shape:perf:01285", - "shape:perf:01286", - "shape:perf:01287", - "shape:perf:01288", - "shape:perf:01289", - "shape:perf:01290", - "shape:perf:01291", - "shape:perf:01292", - "shape:perf:01293", - "shape:perf:01294", - "shape:perf:01295", - "shape:perf:01296", - "shape:perf:01297", - "shape:perf:01298", - "shape:perf:01299", - "shape:perf:01300", - "shape:perf:01301", - "shape:perf:01302", - "shape:perf:01303", - "shape:perf:01304", - "shape:perf:01305", - "shape:perf:01306", - "shape:perf:01307", - "shape:perf:01308", - "shape:perf:01309", - "shape:perf:01310", - "shape:perf:01311", - "shape:perf:01312", - "shape:perf:01313", - "shape:perf:01314", - "shape:perf:01315", - "shape:perf:01316", - "shape:perf:01317", - "shape:perf:01318", - "shape:perf:01319", - "shape:perf:01320", - "shape:perf:01321", - "shape:perf:01322", - "shape:perf:01323", - "shape:perf:01324", - "shape:perf:01325", - "shape:perf:01326", - "shape:perf:01327", - "shape:perf:01328", - "shape:perf:01329", - "shape:perf:01330", - "shape:perf:01331", - "shape:perf:01332", - "shape:perf:01333", - "shape:perf:01334", - "shape:perf:01335", - "shape:perf:01336", - "shape:perf:01337", - "shape:perf:01338", - "shape:perf:01339", - "shape:perf:01340", - "shape:perf:01341", - "shape:perf:01342", - "shape:perf:01343", - "shape:perf:01344", - "shape:perf:01345", - "shape:perf:01346", - "shape:perf:01347", - "shape:perf:01348", - "shape:perf:01349", - "shape:perf:01350", - "shape:perf:01351", - "shape:perf:01352", - "shape:perf:01353", - "shape:perf:01354", - "shape:perf:01355", - "shape:perf:01356", - "shape:perf:01357", - "shape:perf:01358", - "shape:perf:01359", - "shape:perf:01360", - "shape:perf:01361", - "shape:perf:01362", - "shape:perf:01363", - "shape:perf:01364", - "shape:perf:01365", - "shape:perf:01366", - "shape:perf:01367", - "shape:perf:01368", - "shape:perf:01369", - "shape:perf:01370", - "shape:perf:01371", - "shape:perf:01372", - "shape:perf:01373", - "shape:perf:01374", - "shape:perf:01375", - "shape:perf:01376", - "shape:perf:01377", - "shape:perf:01378", - "shape:perf:01379", - "shape:perf:01380", - "shape:perf:01381", - "shape:perf:01382", - "shape:perf:01383", - "shape:perf:01384", - "shape:perf:01385", - "shape:perf:01386", - "shape:perf:01387", - "shape:perf:01388", - "shape:perf:01389", - "shape:perf:01390", - "shape:perf:01391", - "shape:perf:01392", - "shape:perf:01393", - "shape:perf:01394", - "shape:perf:01395", - "shape:perf:01396", - "shape:perf:01397", - "shape:perf:01398", - "shape:perf:01399", - "shape:perf:01400", - "shape:perf:01401", - "shape:perf:01402", - "shape:perf:01403", - "shape:perf:01404", - "shape:perf:01405", - "shape:perf:01406", - "shape:perf:01407", - "shape:perf:01408", - "shape:perf:01409", - "shape:perf:01410", - "shape:perf:01411", - "shape:perf:01412", - "shape:perf:01413", - "shape:perf:01414", - "shape:perf:01415", - "shape:perf:01416", - "shape:perf:01417", - "shape:perf:01418", - "shape:perf:01419", - "shape:perf:01420", - "shape:perf:01421", - "shape:perf:01422", - "shape:perf:01423", - "shape:perf:01424", - "shape:perf:01425", - "shape:perf:01426", - "shape:perf:01427", - "shape:perf:01428", - "shape:perf:01429", - "shape:perf:01430", - "shape:perf:01431", - "shape:perf:01432", - "shape:perf:01433", - "shape:perf:01434", - "shape:perf:01435", - "shape:perf:01436", - "shape:perf:01437", - "shape:perf:01438", - "shape:perf:01439", - "shape:perf:01440", - "shape:perf:01441", - "shape:perf:01442", - "shape:perf:01443", - "shape:perf:01444", - "shape:perf:01445", - "shape:perf:01446", - "shape:perf:01447", - "shape:perf:01448", - "shape:perf:01449", - "shape:perf:01450", - "shape:perf:01451", - "shape:perf:01452", - "shape:perf:01453", - "shape:perf:01454", - "shape:perf:01455", - "shape:perf:01456", - "shape:perf:01457", - "shape:perf:01458", - "shape:perf:01459", - "shape:perf:01460", - "shape:perf:01461", - "shape:perf:01462", - "shape:perf:01463", - "shape:perf:01464", - "shape:perf:01465", - "shape:perf:01466", - "shape:perf:01467", - "shape:perf:01468", - "shape:perf:01469", - "shape:perf:01470", - "shape:perf:01471", - "shape:perf:01472", - "shape:perf:01473", - "shape:perf:01474", - "shape:perf:01475", - "shape:perf:01476", - "shape:perf:01477", - "shape:perf:01478", - "shape:perf:01479", - "shape:perf:01480", - "shape:perf:01481", - "shape:perf:01482", - "shape:perf:01483", - "shape:perf:01484", - "shape:perf:01485", - "shape:perf:01486", - "shape:perf:01487", - "shape:perf:01488", - "shape:perf:01489", - "shape:perf:01490", - "shape:perf:01491", - "shape:perf:01492", - "shape:perf:01493", - "shape:perf:01494", - "shape:perf:01495", - "shape:perf:01496", - "shape:perf:01497", - "shape:perf:01498", - "shape:perf:01499", - "shape:perf:01500", - "shape:perf:01501", - "shape:perf:01502", - "shape:perf:01503", - "shape:perf:01504", - "shape:perf:01505", - "shape:perf:01506", - "shape:perf:01507", - "shape:perf:01508", - "shape:perf:01509", - "shape:perf:01510", - "shape:perf:01511", - "shape:perf:01512", - "shape:perf:01513", - "shape:perf:01514", - "shape:perf:01515", - "shape:perf:01516", - "shape:perf:01517", - "shape:perf:01518", - "shape:perf:01519", - "shape:perf:01520", - "shape:perf:01521", - "shape:perf:01522", - "shape:perf:01523", - "shape:perf:01524", - "shape:perf:01525", - "shape:perf:01526", - "shape:perf:01527", - "shape:perf:01528", - "shape:perf:01529", - "shape:perf:01530", - "shape:perf:01531", - "shape:perf:01532", - "shape:perf:01533", - "shape:perf:01534", - "shape:perf:01535", - "shape:perf:01536", - "shape:perf:01537", - "shape:perf:01538", - "shape:perf:01539", - "shape:perf:01540", - "shape:perf:01541", - "shape:perf:01542", - "shape:perf:01543", - "shape:perf:01544", - "shape:perf:01545", - "shape:perf:01546", - "shape:perf:01547", - "shape:perf:01548", - "shape:perf:01549", - "shape:perf:01550", - "shape:perf:01551", - "shape:perf:01552", - "shape:perf:01553", - "shape:perf:01554", - "shape:perf:01555", - "shape:perf:01556", - "shape:perf:01557", - "shape:perf:01558", - "shape:perf:01559", - "shape:perf:01560", - "shape:perf:01561", - "shape:perf:01562", - "shape:perf:01563", - "shape:perf:01564", - "shape:perf:01565", - "shape:perf:01566", - "shape:perf:01567", - "shape:perf:01568", - "shape:perf:01569", - "shape:perf:01570", - "shape:perf:01571", - "shape:perf:01572", - "shape:perf:01573", - "shape:perf:01574", - "shape:perf:01575", - "shape:perf:01576", - "shape:perf:01577", - "shape:perf:01578", - "shape:perf:01579", - "shape:perf:01580", - "shape:perf:01581", - "shape:perf:01582", - "shape:perf:01583", - "shape:perf:01584", - "shape:perf:01585", - "shape:perf:01586", - "shape:perf:01587", - "shape:perf:01588", - "shape:perf:01589", - "shape:perf:01590", - "shape:perf:01591", - "shape:perf:01592", - "shape:perf:01593", - "shape:perf:01594", - "shape:perf:01595", - "shape:perf:01596", - "shape:perf:01597", - "shape:perf:01598", - "shape:perf:01599", - "shape:perf:01600", - "shape:perf:01601", - "shape:perf:01602", - "shape:perf:01603", - "shape:perf:01604", - "shape:perf:01605", - "shape:perf:01606", - "shape:perf:01607", - "shape:perf:01608", - "shape:perf:01609", - "shape:perf:01610", - "shape:perf:01611", - "shape:perf:01612", - "shape:perf:01613", - "shape:perf:01614", - "shape:perf:01615", - "shape:perf:01616", - "shape:perf:01617", - "shape:perf:01618", - "shape:perf:01619", - "shape:perf:01620", - "shape:perf:01621", - "shape:perf:01622", - "shape:perf:01623", - "shape:perf:01624", - "shape:perf:01625", - "shape:perf:01626", - "shape:perf:01627", - "shape:perf:01628", - "shape:perf:01629", - "shape:perf:01630", - "shape:perf:01631", - "shape:perf:01632", - "shape:perf:01633", - "shape:perf:01634", - "shape:perf:01635", - "shape:perf:01636", - "shape:perf:01637", - "shape:perf:01638", - "shape:perf:01639", - "shape:perf:01640", - "shape:perf:01641", - "shape:perf:01642", - "shape:perf:01643", - "shape:perf:01644", - "shape:perf:01645", - "shape:perf:01646", - "shape:perf:01647", - "shape:perf:01648", - "shape:perf:01649", - "shape:perf:01650", - "shape:perf:01651", - "shape:perf:01652", - "shape:perf:01653", - "shape:perf:01654", - "shape:perf:01655", - "shape:perf:01656", - "shape:perf:01657", - "shape:perf:01658", - "shape:perf:01659", - "shape:perf:01660", - "shape:perf:01661", - "shape:perf:01662", - "shape:perf:01663", - "shape:perf:01664", - "shape:perf:01665", - "shape:perf:01666", - "shape:perf:01667", - "shape:perf:01668", - "shape:perf:01669", - "shape:perf:01670", - "shape:perf:01671", - "shape:perf:01672", - "shape:perf:01673", - "shape:perf:01674", - "shape:perf:01675", - "shape:perf:01676", - "shape:perf:01677", - "shape:perf:01678", - "shape:perf:01679", - "shape:perf:01680", - "shape:perf:01681", - "shape:perf:01682", - "shape:perf:01683", - "shape:perf:01684", - "shape:perf:01685", - "shape:perf:01686", - "shape:perf:01687", - "shape:perf:01688", - "shape:perf:01689", - "shape:perf:01690", - "shape:perf:01691", - "shape:perf:01692", - "shape:perf:01693", - "shape:perf:01694", - "shape:perf:01695", - "shape:perf:01696", - "shape:perf:01697", - "shape:perf:01698", - "shape:perf:01699", - "shape:perf:01700", - "shape:perf:01701", - "shape:perf:01702", - "shape:perf:01703", - "shape:perf:01704", - "shape:perf:01705", - "shape:perf:01706", - "shape:perf:01707", - "shape:perf:01708", - "shape:perf:01709", - "shape:perf:01710", - "shape:perf:01711", - "shape:perf:01712", - "shape:perf:01713", - "shape:perf:01714", - "shape:perf:01715", - "shape:perf:01716", - "shape:perf:01717", - "shape:perf:01718", - "shape:perf:01719", - "shape:perf:01720", - "shape:perf:01721", - "shape:perf:01722", - "shape:perf:01723", - "shape:perf:01724", - "shape:perf:01725", - "shape:perf:01726", - "shape:perf:01727", - "shape:perf:01728", - "shape:perf:01729", - "shape:perf:01730", - "shape:perf:01731", - "shape:perf:01732", - "shape:perf:01733", - "shape:perf:01734", - "shape:perf:01735", - "shape:perf:01736", - "shape:perf:01737", - "shape:perf:01738", - "shape:perf:01739", - "shape:perf:01740", - "shape:perf:01741", - "shape:perf:01742", - "shape:perf:01743", - "shape:perf:01744", - "shape:perf:01745", - "shape:perf:01746", - "shape:perf:01747", - "shape:perf:01748", - "shape:perf:01749", - "shape:perf:01750", - "shape:perf:01751", - "shape:perf:01752", - "shape:perf:01753", - "shape:perf:01754", - "shape:perf:01755", - "shape:perf:01756", - "shape:perf:01757", - "shape:perf:01758", - "shape:perf:01759", - "shape:perf:01760", - "shape:perf:01761", - "shape:perf:01762", - "shape:perf:01763", - "shape:perf:01764", - "shape:perf:01765", - "shape:perf:01766", - "shape:perf:01767", - "shape:perf:01768", - "shape:perf:01769", - "shape:perf:01770", - "shape:perf:01771", - "shape:perf:01772", - "shape:perf:01773", - "shape:perf:01774", - "shape:perf:01775", - "shape:perf:01776", - "shape:perf:01777", - "shape:perf:01778", - "shape:perf:01779", - "shape:perf:01780", - "shape:perf:01781", - "shape:perf:01782", - "shape:perf:01783", - "shape:perf:01784", - "shape:perf:01785", - "shape:perf:01786", - "shape:perf:01787", - "shape:perf:01788", - "shape:perf:01789", - "shape:perf:01790", - "shape:perf:01791", - "shape:perf:01792", - "shape:perf:01793", - "shape:perf:01794", - "shape:perf:01795", - "shape:perf:01796", - "shape:perf:01797", - "shape:perf:01798", - "shape:perf:01799", - "shape:perf:01800", - "shape:perf:01801", - "shape:perf:01802", - "shape:perf:01803", - "shape:perf:01804", - "shape:perf:01805", - "shape:perf:01806", - "shape:perf:01807", - "shape:perf:01808", - "shape:perf:01809", - "shape:perf:01810", - "shape:perf:01811", - "shape:perf:01812", - "shape:perf:01813", - "shape:perf:01814", - "shape:perf:01815", - "shape:perf:01816", - "shape:perf:01817", - "shape:perf:01818", - "shape:perf:01819", - "shape:perf:01820", - "shape:perf:01821", - "shape:perf:01822", - "shape:perf:01823", - "shape:perf:01824", - "shape:perf:01825", - "shape:perf:01826", - "shape:perf:01827", - "shape:perf:01828", - "shape:perf:01829", - "shape:perf:01830", - "shape:perf:01831", - "shape:perf:01832", - "shape:perf:01833", - "shape:perf:01834", - "shape:perf:01835", - "shape:perf:01836", - "shape:perf:01837", - "shape:perf:01838", - "shape:perf:01839", - "shape:perf:01840", - "shape:perf:01841", - "shape:perf:01842", - "shape:perf:01843", - "shape:perf:01844", - "shape:perf:01845", - "shape:perf:01846", - "shape:perf:01847", - "shape:perf:01848", - "shape:perf:01849", - "shape:perf:01850", - "shape:perf:01851", - "shape:perf:01852", - "shape:perf:01853", - "shape:perf:01854", - "shape:perf:01855", - "shape:perf:01856", - "shape:perf:01857", - "shape:perf:01858", - "shape:perf:01859", - "shape:perf:01860", - "shape:perf:01861", - "shape:perf:01862", - "shape:perf:01863", - "shape:perf:01864", - "shape:perf:01865", - "shape:perf:01866", - "shape:perf:01867", - "shape:perf:01868", - "shape:perf:01869", - "shape:perf:01870", - "shape:perf:01871", - "shape:perf:01872", - "shape:perf:01873", - "shape:perf:01874", - "shape:perf:01875", - "shape:perf:01876", - "shape:perf:01877", - "shape:perf:01878", - "shape:perf:01879", - "shape:perf:01880", - "shape:perf:01881", - "shape:perf:01882", - "shape:perf:01883", - "shape:perf:01884", - "shape:perf:01885", - "shape:perf:01886", - "shape:perf:01887", - "shape:perf:01888", - "shape:perf:01889", - "shape:perf:01890", - "shape:perf:01891", - "shape:perf:01892", - "shape:perf:01893", - "shape:perf:01894", - "shape:perf:01895", - "shape:perf:01896", - "shape:perf:01897", - "shape:perf:01898", - "shape:perf:01899", - "shape:perf:01900", - "shape:perf:01901", - "shape:perf:01902", - "shape:perf:01903", - "shape:perf:01904", - "shape:perf:01905", - "shape:perf:01906", - "shape:perf:01907", - "shape:perf:01908", - "shape:perf:01909", - "shape:perf:01910", - "shape:perf:01911", - "shape:perf:01912", - "shape:perf:01913", - "shape:perf:01914", - "shape:perf:01915", - "shape:perf:01916", - "shape:perf:01917", - "shape:perf:01918", - "shape:perf:01919", - "shape:perf:01920", - "shape:perf:01921", - "shape:perf:01922", - "shape:perf:01923", - "shape:perf:01924", - "shape:perf:01925", - "shape:perf:01926", - "shape:perf:01927", - "shape:perf:01928", - "shape:perf:01929", - "shape:perf:01930", - "shape:perf:01931", - "shape:perf:01932", - "shape:perf:01933", - "shape:perf:01934", - "shape:perf:01935", - "shape:perf:01936", - "shape:perf:01937", - "shape:perf:01938", - "shape:perf:01939", - "shape:perf:01940", - "shape:perf:01941", - "shape:perf:01942", - "shape:perf:01943", - "shape:perf:01944", - "shape:perf:01945", - "shape:perf:01946", - "shape:perf:01947", - "shape:perf:01948", - "shape:perf:01949", - "shape:perf:01950", - "shape:perf:01951", - "shape:perf:01952", - "shape:perf:01953", - "shape:perf:01954", - "shape:perf:01955", - "shape:perf:01956", - "shape:perf:01957", - "shape:perf:01958", - "shape:perf:01959", - "shape:perf:01960", - "shape:perf:01961", - "shape:perf:01962", - "shape:perf:01963", - "shape:perf:01964", - "shape:perf:01965", - "shape:perf:01966", - "shape:perf:01967", - "shape:perf:01968", - "shape:perf:01969", - "shape:perf:01970", - "shape:perf:01971", - "shape:perf:01972", - "shape:perf:01973", - "shape:perf:01974", - "shape:perf:01975", - "shape:perf:01976", - "shape:perf:01977", - "shape:perf:01978", - "shape:perf:01979", - "shape:perf:01980", - "shape:perf:01981", - "shape:perf:01982", - "shape:perf:01983", - "shape:perf:01984", - "shape:perf:01985", - "shape:perf:01986", - "shape:perf:01987", - "shape:perf:01988", - "shape:perf:01989", - "shape:perf:01990", - "shape:perf:01991", - "shape:perf:01992", - "shape:perf:01993", - "shape:perf:01994", - "shape:perf:01995", - "shape:perf:01996", - "shape:perf:01997", - "shape:perf:01998", - "shape:perf:01999", - "shape:perf:02000", - "shape:perf:02001", - "shape:perf:02002", - "shape:perf:02003", - "shape:perf:02004", - "shape:perf:02005", - "shape:perf:02006", - "shape:perf:02007", - "shape:perf:02008", - "shape:perf:02009", - "shape:perf:02010", - "shape:perf:02011", - "shape:perf:02012", - "shape:perf:02013", - "shape:perf:02014", - "shape:perf:02015", - "shape:perf:02016", - "shape:perf:02017", - "shape:perf:02018", - "shape:perf:02019", - "shape:perf:02020", - "shape:perf:02021", - "shape:perf:02022", - "shape:perf:02023", - "shape:perf:02024", - "shape:perf:02025", - "shape:perf:02026", - "shape:perf:02027", - "shape:perf:02028", - "shape:perf:02029", - "shape:perf:02030", - "shape:perf:02031", - "shape:perf:02032", - "shape:perf:02033", - "shape:perf:02034", - "shape:perf:02035", - "shape:perf:02036", - "shape:perf:02037", - "shape:perf:02038", - "shape:perf:02039", - "shape:perf:02040", - "shape:perf:02041", - "shape:perf:02042", - "shape:perf:02043", - "shape:perf:02044", - "shape:perf:02045", - "shape:perf:02046", - "shape:perf:02047", - "shape:perf:02048", - "shape:perf:02049", - "shape:perf:02050", - "shape:perf:02051", - "shape:perf:02052", - "shape:perf:02053", - "shape:perf:02054", - "shape:perf:02055", - "shape:perf:02056", - "shape:perf:02057", - "shape:perf:02058", - "shape:perf:02059", - "shape:perf:02060", - "shape:perf:02061", - "shape:perf:02062", - "shape:perf:02063", - "shape:perf:02064", - "shape:perf:02065", - "shape:perf:02066", - "shape:perf:02067", - "shape:perf:02068", - "shape:perf:02069", - "shape:perf:02070", - "shape:perf:02071", - "shape:perf:02072", - "shape:perf:02073", - "shape:perf:02074", - "shape:perf:02075", - "shape:perf:02076", - "shape:perf:02077", - "shape:perf:02078", - "shape:perf:02079", - "shape:perf:02080", - "shape:perf:02081", - "shape:perf:02082", - "shape:perf:02083", - "shape:perf:02084", - "shape:perf:02085", - "shape:perf:02086", - "shape:perf:02087", - "shape:perf:02088", - "shape:perf:02089", - "shape:perf:02090", - "shape:perf:02091", - "shape:perf:02092", - "shape:perf:02093", - "shape:perf:02094", - "shape:perf:02095", - "shape:perf:02096", - "shape:perf:02097", - "shape:perf:02098", - "shape:perf:02099", - "shape:perf:02100", - "shape:perf:02101", - "shape:perf:02102", - "shape:perf:02103", - "shape:perf:02104", - "shape:perf:02105", - "shape:perf:02106", - "shape:perf:02107", - "shape:perf:02108", - "shape:perf:02109", - "shape:perf:02110", - "shape:perf:02111", - "shape:perf:02112", - "shape:perf:02113", - "shape:perf:02114", - "shape:perf:02115", - "shape:perf:02116", - "shape:perf:02117", - "shape:perf:02118", - "shape:perf:02119", - "shape:perf:02120", - "shape:perf:02121", - "shape:perf:02122", - "shape:perf:02123", - "shape:perf:02124", - "shape:perf:02125", - "shape:perf:02126", - "shape:perf:02127", - "shape:perf:02128", - "shape:perf:02129", - "shape:perf:02130", - "shape:perf:02131", - "shape:perf:02132", - "shape:perf:02133", - "shape:perf:02134", - "shape:perf:02135", - "shape:perf:02136", - "shape:perf:02137", - "shape:perf:02138", - "shape:perf:02139", - "shape:perf:02140", - "shape:perf:02141", - "shape:perf:02142", - "shape:perf:02143", - "shape:perf:02144", - "shape:perf:02145", - "shape:perf:02146", - "shape:perf:02147", - "shape:perf:02148", - "shape:perf:02149", - "shape:perf:02150", - "shape:perf:02151", - "shape:perf:02152", - "shape:perf:02153", - "shape:perf:02154", - "shape:perf:02155", - "shape:perf:02156", - "shape:perf:02157", - "shape:perf:02158", - "shape:perf:02159", - "shape:perf:02160", - "shape:perf:02161", - "shape:perf:02162", - "shape:perf:02163", - "shape:perf:02164", - "shape:perf:02165", - "shape:perf:02166", - "shape:perf:02167", - "shape:perf:02168", - "shape:perf:02169", - "shape:perf:02170", - "shape:perf:02171", - "shape:perf:02172", - "shape:perf:02173", - "shape:perf:02174", - "shape:perf:02175", - "shape:perf:02176", - "shape:perf:02177", - "shape:perf:02178", - "shape:perf:02179", - "shape:perf:02180", - "shape:perf:02181", - "shape:perf:02182", - "shape:perf:02183", - "shape:perf:02184", - "shape:perf:02185", - "shape:perf:02186", - "shape:perf:02187", - "shape:perf:02188", - "shape:perf:02189", - "shape:perf:02190", - "shape:perf:02191", - "shape:perf:02192", - "shape:perf:02193", - "shape:perf:02194", - "shape:perf:02195", - "shape:perf:02196", - "shape:perf:02197", - "shape:perf:02198", - "shape:perf:02199", - "shape:perf:02200", - "shape:perf:02201", - "shape:perf:02202", - "shape:perf:02203", - "shape:perf:02204", - "shape:perf:02205", - "shape:perf:02206", - "shape:perf:02207", - "shape:perf:02208", - "shape:perf:02209", - "shape:perf:02210", - "shape:perf:02211", - "shape:perf:02212", - "shape:perf:02213", - "shape:perf:02214", - "shape:perf:02215", - "shape:perf:02216", - "shape:perf:02217", - "shape:perf:02218", - "shape:perf:02219", - "shape:perf:02220", - "shape:perf:02221", - "shape:perf:02222", - "shape:perf:02223", - "shape:perf:02224", - "shape:perf:02225", - "shape:perf:02226", - "shape:perf:02227", - "shape:perf:02228", - "shape:perf:02229", - "shape:perf:02230", - "shape:perf:02231", - "shape:perf:02232", - "shape:perf:02233", - "shape:perf:02234", - "shape:perf:02235", - "shape:perf:02236", - "shape:perf:02237", - "shape:perf:02238", - "shape:perf:02239", - "shape:perf:02240", - "shape:perf:02241", - "shape:perf:02242", - "shape:perf:02243", - "shape:perf:02244", - "shape:perf:02245", - "shape:perf:02246", - "shape:perf:02247", - "shape:perf:02248", - "shape:perf:02249", - "shape:perf:02250", - "shape:perf:02251", - "shape:perf:02252", - "shape:perf:02253", - "shape:perf:02254", - "shape:perf:02255", - "shape:perf:02256", - "shape:perf:02257", - "shape:perf:02258", - "shape:perf:02259", - "shape:perf:02260", - "shape:perf:02261", - "shape:perf:02262", - "shape:perf:02263", - "shape:perf:02264", - "shape:perf:02265", - "shape:perf:02266", - "shape:perf:02267", - "shape:perf:02268", - "shape:perf:02269", - "shape:perf:02270", - "shape:perf:02271", - "shape:perf:02272", - "shape:perf:02273", - "shape:perf:02274", - "shape:perf:02275", - "shape:perf:02276", - "shape:perf:02277", - "shape:perf:02278", - "shape:perf:02279", - "shape:perf:02280", - "shape:perf:02281", - "shape:perf:02282", - "shape:perf:02283", - "shape:perf:02284", - "shape:perf:02285", - "shape:perf:02286", - "shape:perf:02287", - "shape:perf:02288", - "shape:perf:02289", - "shape:perf:02290", - "shape:perf:02291", - "shape:perf:02292", - "shape:perf:02293", - "shape:perf:02294", - "shape:perf:02295", - "shape:perf:02296", - "shape:perf:02297", - "shape:perf:02298", - "shape:perf:02299", - "shape:perf:02300", - "shape:perf:02301", - "shape:perf:02302", - "shape:perf:02303", - "shape:perf:02304", - "shape:perf:02305", - "shape:perf:02306", - "shape:perf:02307", - "shape:perf:02308", - "shape:perf:02309", - "shape:perf:02310", - "shape:perf:02311", - "shape:perf:02312", - "shape:perf:02313", - "shape:perf:02314", - "shape:perf:02315", - "shape:perf:02316", - "shape:perf:02317", - "shape:perf:02318", - "shape:perf:02319", - "shape:perf:02320", - "shape:perf:02321", - "shape:perf:02322", - "shape:perf:02323", - "shape:perf:02324", - "shape:perf:02325", - "shape:perf:02326", - "shape:perf:02327", - "shape:perf:02328", - "shape:perf:02329", - "shape:perf:02330", - "shape:perf:02331", - "shape:perf:02332", - "shape:perf:02333", - "shape:perf:02334", - "shape:perf:02335", - "shape:perf:02336", - "shape:perf:02337", - "shape:perf:02338", - "shape:perf:02339", - "shape:perf:02340", - "shape:perf:02341", - "shape:perf:02342", - "shape:perf:02343", - "shape:perf:02344", - "shape:perf:02345", - "shape:perf:02346", - "shape:perf:02347", - "shape:perf:02348", - "shape:perf:02349", - "shape:perf:02350", - "shape:perf:02351", - "shape:perf:02352", - "shape:perf:02353", - "shape:perf:02354", - "shape:perf:02355", - "shape:perf:02356", - "shape:perf:02357", - "shape:perf:02358", - "shape:perf:02359", - "shape:perf:02360", - "shape:perf:02361", - "shape:perf:02362", - "shape:perf:02363", - "shape:perf:02364", - "shape:perf:02365", - "shape:perf:02366", - "shape:perf:02367", - "shape:perf:02368", - "shape:perf:02369", - "shape:perf:02370", - "shape:perf:02371", - "shape:perf:02372", - "shape:perf:02373", - "shape:perf:02374", - "shape:perf:02375", - "shape:perf:02376", - "shape:perf:02377", - "shape:perf:02378", - "shape:perf:02379", - "shape:perf:02380", - "shape:perf:02381", - "shape:perf:02382", - "shape:perf:02383", - "shape:perf:02384", - "shape:perf:02385", - "shape:perf:02386", - "shape:perf:02387", - "shape:perf:02388", - "shape:perf:02389", - "shape:perf:02390", - "shape:perf:02391", - "shape:perf:02392", - "shape:perf:02393", - "shape:perf:02394", - "shape:perf:02395", - "shape:perf:02396", - "shape:perf:02397", - "shape:perf:02398", - "shape:perf:02399", - "shape:perf:02400", - "shape:perf:02401", - "shape:perf:02402", - "shape:perf:02403", - "shape:perf:02404", - "shape:perf:02405", - "shape:perf:02406", - "shape:perf:02407", - "shape:perf:02408", - "shape:perf:02409", - "shape:perf:02410", - "shape:perf:02411", - "shape:perf:02412", - "shape:perf:02413", - "shape:perf:02414", - "shape:perf:02415", - "shape:perf:02416", - "shape:perf:02417", - "shape:perf:02418", - "shape:perf:02419", - "shape:perf:02420", - "shape:perf:02421", - "shape:perf:02422", - "shape:perf:02423", - "shape:perf:02424", - "shape:perf:02425", - "shape:perf:02426", - "shape:perf:02427", - "shape:perf:02428", - "shape:perf:02429", - "shape:perf:02430", - "shape:perf:02431", - "shape:perf:02432", - "shape:perf:02433", - "shape:perf:02434", - "shape:perf:02435", - "shape:perf:02436", - "shape:perf:02437", - "shape:perf:02438", - "shape:perf:02439", - "shape:perf:02440", - "shape:perf:02441", - "shape:perf:02442", - "shape:perf:02443", - "shape:perf:02444", - "shape:perf:02445", - "shape:perf:02446", - "shape:perf:02447", - "shape:perf:02448", - "shape:perf:02449", - "shape:perf:02450", - "shape:perf:02451", - "shape:perf:02452", - "shape:perf:02453", - "shape:perf:02454", - "shape:perf:02455", - "shape:perf:02456", - "shape:perf:02457", - "shape:perf:02458", - "shape:perf:02459", - "shape:perf:02460", - "shape:perf:02461", - "shape:perf:02462", - "shape:perf:02463", - "shape:perf:02464", - "shape:perf:02465", - "shape:perf:02466", - "shape:perf:02467", - "shape:perf:02468", - "shape:perf:02469", - "shape:perf:02470", - "shape:perf:02471", - "shape:perf:02472", - "shape:perf:02473", - "shape:perf:02474", - "shape:perf:02475", - "shape:perf:02476", - "shape:perf:02477", - "shape:perf:02478", - "shape:perf:02479", - "shape:perf:02480", - "shape:perf:02481", - "shape:perf:02482", - "shape:perf:02483", - "shape:perf:02484", - "shape:perf:02485", - "shape:perf:02486", - "shape:perf:02487", - "shape:perf:02488", - "shape:perf:02489", - "shape:perf:02490", - "shape:perf:02491", - "shape:perf:02492", - "shape:perf:02493", - "shape:perf:02494", - "shape:perf:02495", - "shape:perf:02496", - "shape:perf:02497", - "shape:perf:02498", - "shape:perf:02499", - "shape:perf:02500", - "shape:perf:02501", - "shape:perf:02502", - "shape:perf:02503", - "shape:perf:02504", - "shape:perf:02505", - "shape:perf:02506", - "shape:perf:02507", - "shape:perf:02508", - "shape:perf:02509", - "shape:perf:02510", - "shape:perf:02511", - "shape:perf:02512", - "shape:perf:02513", - "shape:perf:02514", - "shape:perf:02515", - "shape:perf:02516", - "shape:perf:02517", - "shape:perf:02518", - "shape:perf:02519", - "shape:perf:02520", - "shape:perf:02521", - "shape:perf:02522", - "shape:perf:02523", - "shape:perf:02524", - "shape:perf:02525", - "shape:perf:02526", - "shape:perf:02527", - "shape:perf:02528", - "shape:perf:02529", - "shape:perf:02530", - "shape:perf:02531", - "shape:perf:02532", - "shape:perf:02533", - "shape:perf:02534", - "shape:perf:02535", - "shape:perf:02536", - "shape:perf:02537", - "shape:perf:02538", - "shape:perf:02539", - "shape:perf:02540", - "shape:perf:02541", - "shape:perf:02542", - "shape:perf:02543", - "shape:perf:02544", - "shape:perf:02545", - "shape:perf:02546", - "shape:perf:02547", - "shape:perf:02548", - "shape:perf:02549", - "shape:perf:02550", - "shape:perf:02551", - "shape:perf:02552", - "shape:perf:02553", - "shape:perf:02554", - "shape:perf:02555", - "shape:perf:02556", - "shape:perf:02557", - "shape:perf:02558", - "shape:perf:02559", - "shape:perf:02560", - "shape:perf:02561", - "shape:perf:02562", - "shape:perf:02563", - "shape:perf:02564", - "shape:perf:02565", - "shape:perf:02566", - "shape:perf:02567", - "shape:perf:02568", - "shape:perf:02569", - "shape:perf:02570", - "shape:perf:02571", - "shape:perf:02572", - "shape:perf:02573", - "shape:perf:02574", - "shape:perf:02575", - "shape:perf:02576", - "shape:perf:02577", - "shape:perf:02578", - "shape:perf:02579", - "shape:perf:02580", - "shape:perf:02581", - "shape:perf:02582", - "shape:perf:02583", - "shape:perf:02584", - "shape:perf:02585", - "shape:perf:02586", - "shape:perf:02587", - "shape:perf:02588", - "shape:perf:02589", - "shape:perf:02590", - "shape:perf:02591", - "shape:perf:02592", - "shape:perf:02593", - "shape:perf:02594", - "shape:perf:02595", - "shape:perf:02596", - "shape:perf:02597", - "shape:perf:02598", - "shape:perf:02599", - "shape:perf:02600", - "shape:perf:02601", - "shape:perf:02602", - "shape:perf:02603", - "shape:perf:02604", - "shape:perf:02605", - "shape:perf:02606", - "shape:perf:02607", - "shape:perf:02608", - "shape:perf:02609", - "shape:perf:02610", - "shape:perf:02611", - "shape:perf:02612", - "shape:perf:02613", - "shape:perf:02614", - "shape:perf:02615", - "shape:perf:02616", - "shape:perf:02617", - "shape:perf:02618", - "shape:perf:02619", - "shape:perf:02620", - "shape:perf:02621", - "shape:perf:02622", - "shape:perf:02623", - "shape:perf:02624", - "shape:perf:02625", - "shape:perf:02626", - "shape:perf:02627", - "shape:perf:02628", - "shape:perf:02629", - "shape:perf:02630", - "shape:perf:02631", - "shape:perf:02632", - "shape:perf:02633", - "shape:perf:02634", - "shape:perf:02635", - "shape:perf:02636", - "shape:perf:02637", - "shape:perf:02638", - "shape:perf:02639", - "shape:perf:02640", - "shape:perf:02641", - "shape:perf:02642", - "shape:perf:02643", - "shape:perf:02644", - "shape:perf:02645", - "shape:perf:02646", - "shape:perf:02647", - "shape:perf:02648", - "shape:perf:02649", - "shape:perf:02650", - "shape:perf:02651", - "shape:perf:02652", - "shape:perf:02653", - "shape:perf:02654", - "shape:perf:02655", - "shape:perf:02656", - "shape:perf:02657", - "shape:perf:02658", - "shape:perf:02659", - "shape:perf:02660", - "shape:perf:02661", - "shape:perf:02662", - "shape:perf:02663", - "shape:perf:02664", - "shape:perf:02665", - "shape:perf:02666", - "shape:perf:02667", - "shape:perf:02668", - "shape:perf:02669", - "shape:perf:02670", - "shape:perf:02671", - "shape:perf:02672", - "shape:perf:02673", - "shape:perf:02674", - "shape:perf:02675", - "shape:perf:02676", - "shape:perf:02677", - "shape:perf:02678", - "shape:perf:02679", - "shape:perf:02680", - "shape:perf:02681", - "shape:perf:02682", - "shape:perf:02683", - "shape:perf:02684", - "shape:perf:02685", - "shape:perf:02686", - "shape:perf:02687", - "shape:perf:02688", - "shape:perf:02689", - "shape:perf:02690", - "shape:perf:02691", - "shape:perf:02692", - "shape:perf:02693", - "shape:perf:02694", - "shape:perf:02695", - "shape:perf:02696", - "shape:perf:02697", - "shape:perf:02698", - "shape:perf:02699", - "shape:perf:02700", - "shape:perf:02701", - "shape:perf:02702", - "shape:perf:02703", - "shape:perf:02704", - "shape:perf:02705", - "shape:perf:02706", - "shape:perf:02707", - "shape:perf:02708", - "shape:perf:02709", - "shape:perf:02710", - "shape:perf:02711", - "shape:perf:02712", - "shape:perf:02713", - "shape:perf:02714", - "shape:perf:02715", - "shape:perf:02716", - "shape:perf:02717", - "shape:perf:02718", - "shape:perf:02719", - "shape:perf:02720", - "shape:perf:02721", - "shape:perf:02722", - "shape:perf:02723", - "shape:perf:02724", - "shape:perf:02725", - "shape:perf:02726", - "shape:perf:02727", - "shape:perf:02728", - "shape:perf:02729", - "shape:perf:02730", - "shape:perf:02731", - "shape:perf:02732", - "shape:perf:02733", - "shape:perf:02734", - "shape:perf:02735", - "shape:perf:02736", - "shape:perf:02737", - "shape:perf:02738", - "shape:perf:02739", - "shape:perf:02740", - "shape:perf:02741", - "shape:perf:02742", - "shape:perf:02743", - "shape:perf:02744", - "shape:perf:02745", - "shape:perf:02746", - "shape:perf:02747", - "shape:perf:02748", - "shape:perf:02749", - "shape:perf:02750", - "shape:perf:02751", - "shape:perf:02752", - "shape:perf:02753", - "shape:perf:02754", - "shape:perf:02755", - "shape:perf:02756", - "shape:perf:02757", - "shape:perf:02758", - "shape:perf:02759", - "shape:perf:02760", - "shape:perf:02761", - "shape:perf:02762", - "shape:perf:02763", - "shape:perf:02764", - "shape:perf:02765", - "shape:perf:02766", - "shape:perf:02767", - "shape:perf:02768", - "shape:perf:02769", - "shape:perf:02770", - "shape:perf:02771", - "shape:perf:02772", - "shape:perf:02773", - "shape:perf:02774", - "shape:perf:02775", - "shape:perf:02776", - "shape:perf:02777", - "shape:perf:02778", - "shape:perf:02779", - "shape:perf:02780", - "shape:perf:02781", - "shape:perf:02782", - "shape:perf:02783", - "shape:perf:02784", - "shape:perf:02785", - "shape:perf:02786", - "shape:perf:02787", - "shape:perf:02788", - "shape:perf:02789", - "shape:perf:02790", - "shape:perf:02791", - "shape:perf:02792", - "shape:perf:02793", - "shape:perf:02794", - "shape:perf:02795", - "shape:perf:02796", - "shape:perf:02797", - "shape:perf:02798", - "shape:perf:02799", - "shape:perf:02800", - "shape:perf:02801", - "shape:perf:02802", - "shape:perf:02803", - "shape:perf:02804", - "shape:perf:02805", - "shape:perf:02806", - "shape:perf:02807", - "shape:perf:02808", - "shape:perf:02809", - "shape:perf:02810", - "shape:perf:02811", - "shape:perf:02812", - "shape:perf:02813", - "shape:perf:02814", - "shape:perf:02815", - "shape:perf:02816", - "shape:perf:02817", - "shape:perf:02818", - "shape:perf:02819", - "shape:perf:02820", - "shape:perf:02821", - "shape:perf:02822", - "shape:perf:02823", - "shape:perf:02824", - "shape:perf:02825", - "shape:perf:02826", - "shape:perf:02827", - "shape:perf:02828", - "shape:perf:02829", - "shape:perf:02830", - "shape:perf:02831", - "shape:perf:02832", - "shape:perf:02833", - "shape:perf:02834", - "shape:perf:02835", - "shape:perf:02836", - "shape:perf:02837", - "shape:perf:02838", - "shape:perf:02839", - "shape:perf:02840", - "shape:perf:02841", - "shape:perf:02842", - "shape:perf:02843", - "shape:perf:02844", - "shape:perf:02845", - "shape:perf:02846", - "shape:perf:02847", - "shape:perf:02848", - "shape:perf:02849", - "shape:perf:02850", - "shape:perf:02851", - "shape:perf:02852", - "shape:perf:02853", - "shape:perf:02854", - "shape:perf:02855", - "shape:perf:02856", - "shape:perf:02857", - "shape:perf:02858", - "shape:perf:02859", - "shape:perf:02860", - "shape:perf:02861", - "shape:perf:02862", - "shape:perf:02863", - "shape:perf:02864", - "shape:perf:02865", - "shape:perf:02866", - "shape:perf:02867", - "shape:perf:02868", - "shape:perf:02869", - "shape:perf:02870", - "shape:perf:02871", - "shape:perf:02872", - "shape:perf:02873", - "shape:perf:02874", - "shape:perf:02875", - "shape:perf:02876", - "shape:perf:02877", - "shape:perf:02878", - "shape:perf:02879", - "shape:perf:02880", - "shape:perf:02881", - "shape:perf:02882", - "shape:perf:02883", - "shape:perf:02884", - "shape:perf:02885", - "shape:perf:02886", - "shape:perf:02887", - "shape:perf:02888", - "shape:perf:02889", - "shape:perf:02890", - "shape:perf:02891", - "shape:perf:02892", - "shape:perf:02893", - "shape:perf:02894", - "shape:perf:02895", - "shape:perf:02896", - "shape:perf:02897", - "shape:perf:02898", - "shape:perf:02899", - "shape:perf:02900", - "shape:perf:02901", - "shape:perf:02902", - "shape:perf:02903", - "shape:perf:02904", - "shape:perf:02905", - "shape:perf:02906", - "shape:perf:02907", - "shape:perf:02908", - "shape:perf:02909", - "shape:perf:02910", - "shape:perf:02911", - "shape:perf:02912", - "shape:perf:02913", - "shape:perf:02914", - "shape:perf:02915", - "shape:perf:02916", - "shape:perf:02917", - "shape:perf:02918", - "shape:perf:02919", - "shape:perf:02920", - "shape:perf:02921", - "shape:perf:02922", - "shape:perf:02923", - "shape:perf:02924", - "shape:perf:02925", - "shape:perf:02926", - "shape:perf:02927", - "shape:perf:02928", - "shape:perf:02929", - "shape:perf:02930", - "shape:perf:02931", - "shape:perf:02932", - "shape:perf:02933", - "shape:perf:02934", - "shape:perf:02935", - "shape:perf:02936", - "shape:perf:02937", - "shape:perf:02938", - "shape:perf:02939", - "shape:perf:02940", - "shape:perf:02941", - "shape:perf:02942", - "shape:perf:02943", - "shape:perf:02944", - "shape:perf:02945", - "shape:perf:02946", - "shape:perf:02947", - "shape:perf:02948", - "shape:perf:02949", - "shape:perf:02950", - "shape:perf:02951", - "shape:perf:02952", - "shape:perf:02953", - "shape:perf:02954", - "shape:perf:02955", - "shape:perf:02956", - "shape:perf:02957", - "shape:perf:02958", - "shape:perf:02959", - "shape:perf:02960", - "shape:perf:02961", - "shape:perf:02962", - "shape:perf:02963", - "shape:perf:02964", - "shape:perf:02965", - "shape:perf:02966", - "shape:perf:02967", - "shape:perf:02968", - "shape:perf:02969", - "shape:perf:02970", - "shape:perf:02971", - "shape:perf:02972", - "shape:perf:02973", - "shape:perf:02974", - "shape:perf:02975", - "shape:perf:02976", - "shape:perf:02977", - "shape:perf:02978", - "shape:perf:02979", - "shape:perf:02980", - "shape:perf:02981", - "shape:perf:02982", - "shape:perf:02983", - "shape:perf:02984", - "shape:perf:02985", - "shape:perf:02986", - "shape:perf:02987", - "shape:perf:02988", - "shape:perf:02989", - "shape:perf:02990", - "shape:perf:02991", - "shape:perf:02992", - "shape:perf:02993", - "shape:perf:02994", - "shape:perf:02995", - "shape:perf:02996", - "shape:perf:02997", - "shape:perf:02998", - "shape:perf:02999", - "shape:perf:03000", - "shape:perf:03001", - "shape:perf:03002", - "shape:perf:03003", - "shape:perf:03004", - "shape:perf:03005", - "shape:perf:03006", - "shape:perf:03007", - "shape:perf:03008", - "shape:perf:03009", - "shape:perf:03010", - "shape:perf:03011", - "shape:perf:03012", - "shape:perf:03013", - "shape:perf:03014", - "shape:perf:03015", - "shape:perf:03016", - "shape:perf:03017", - "shape:perf:03018", - "shape:perf:03019", - "shape:perf:03020", - "shape:perf:03021", - "shape:perf:03022", - "shape:perf:03023", - "shape:perf:03024", - "shape:perf:03025", - "shape:perf:03026", - "shape:perf:03027", - "shape:perf:03028", - "shape:perf:03029", - "shape:perf:03030", - "shape:perf:03031", - "shape:perf:03032", - "shape:perf:03033", - "shape:perf:03034", - "shape:perf:03035", - "shape:perf:03036", - "shape:perf:03037", - "shape:perf:03038", - "shape:perf:03039", - "shape:perf:03040", - "shape:perf:03041", - "shape:perf:03042", - "shape:perf:03043", - "shape:perf:03044", - "shape:perf:03045", - "shape:perf:03046", - "shape:perf:03047", - "shape:perf:03048", - "shape:perf:03049", - "shape:perf:03050", - "shape:perf:03051", - "shape:perf:03052", - "shape:perf:03053", - "shape:perf:03054", - "shape:perf:03055", - "shape:perf:03056", - "shape:perf:03057", - "shape:perf:03058", - "shape:perf:03059", - "shape:perf:03060", - "shape:perf:03061", - "shape:perf:03062", - "shape:perf:03063", - "shape:perf:03064", - "shape:perf:03065", - "shape:perf:03066", - "shape:perf:03067", - "shape:perf:03068", - "shape:perf:03069", - "shape:perf:03070", - "shape:perf:03071", - "shape:perf:03072", - "shape:perf:03073", - "shape:perf:03074", - "shape:perf:03075", - "shape:perf:03076", - "shape:perf:03077", - "shape:perf:03078", - "shape:perf:03079", - "shape:perf:03080", - "shape:perf:03081", - "shape:perf:03082", - "shape:perf:03083", - "shape:perf:03084", - "shape:perf:03085", - "shape:perf:03086", - "shape:perf:03087", - "shape:perf:03088", - "shape:perf:03089", - "shape:perf:03090", - "shape:perf:03091", - "shape:perf:03092", - "shape:perf:03093", - "shape:perf:03094", - "shape:perf:03095", - "shape:perf:03096", - "shape:perf:03097", - "shape:perf:03098", - "shape:perf:03099", - "shape:perf:03100", - "shape:perf:03101", - "shape:perf:03102", - "shape:perf:03103", - "shape:perf:03104", - "shape:perf:03105", - "shape:perf:03106", - "shape:perf:03107", - "shape:perf:03108", - "shape:perf:03109", - "shape:perf:03110", - "shape:perf:03111", - "shape:perf:03112", - "shape:perf:03113", - "shape:perf:03114", - "shape:perf:03115", - "shape:perf:03116", - "shape:perf:03117", - "shape:perf:03118", - "shape:perf:03119", - "shape:perf:03120", - "shape:perf:03121", - "shape:perf:03122", - "shape:perf:03123", - "shape:perf:03124", - "shape:perf:03125", - "shape:perf:03126", - "shape:perf:03127", - "shape:perf:03128", - "shape:perf:03129", - "shape:perf:03130", - "shape:perf:03131", - "shape:perf:03132", - "shape:perf:03133", - "shape:perf:03134", - "shape:perf:03135", - "shape:perf:03136", - "shape:perf:03137", - "shape:perf:03138", - "shape:perf:03139", - "shape:perf:03140", - "shape:perf:03141", - "shape:perf:03142", - "shape:perf:03143", - "shape:perf:03144", - "shape:perf:03145", - "shape:perf:03146", - "shape:perf:03147", - "shape:perf:03148", - "shape:perf:03149", - "shape:perf:03150", - "shape:perf:03151", - "shape:perf:03152", - "shape:perf:03153", - "shape:perf:03154", - "shape:perf:03155", - "shape:perf:03156", - "shape:perf:03157", - "shape:perf:03158", - "shape:perf:03159", - "shape:perf:03160", - "shape:perf:03161", - "shape:perf:03162", - "shape:perf:03163", - "shape:perf:03164", - "shape:perf:03165", - "shape:perf:03166", - "shape:perf:03167", - "shape:perf:03168", - "shape:perf:03169", - "shape:perf:03170", - "shape:perf:03171", - "shape:perf:03172", - "shape:perf:03173", - "shape:perf:03174", - "shape:perf:03175", - "shape:perf:03176", - "shape:perf:03177", - "shape:perf:03178", - "shape:perf:03179", - "shape:perf:03180", - "shape:perf:03181", - "shape:perf:03182", - "shape:perf:03183", - "shape:perf:03184", - "shape:perf:03185", - "shape:perf:03186", - "shape:perf:03187", - "shape:perf:03188", - "shape:perf:03189", - "shape:perf:03190", - "shape:perf:03191", - "shape:perf:03192", - "shape:perf:03193", - "shape:perf:03194", - "shape:perf:03195", - "shape:perf:03196", - "shape:perf:03197", - "shape:perf:03198", - "shape:perf:03199", - "shape:perf:03200", - "shape:perf:03201", - "shape:perf:03202", - "shape:perf:03203", - "shape:perf:03204", - "shape:perf:03205", - "shape:perf:03206", - "shape:perf:03207", - "shape:perf:03208", - "shape:perf:03209", - "shape:perf:03210", - "shape:perf:03211", - "shape:perf:03212", - "shape:perf:03213", - "shape:perf:03214", - "shape:perf:03215", - "shape:perf:03216", - "shape:perf:03217", - "shape:perf:03218", - "shape:perf:03219", - "shape:perf:03220", - "shape:perf:03221", - "shape:perf:03222", - "shape:perf:03223", - "shape:perf:03224", - "shape:perf:03225", - "shape:perf:03226", - "shape:perf:03227", - "shape:perf:03228", - "shape:perf:03229", - "shape:perf:03230", - "shape:perf:03231", - "shape:perf:03232", - "shape:perf:03233", - "shape:perf:03234", - "shape:perf:03235", - "shape:perf:03236", - "shape:perf:03237", - "shape:perf:03238", - "shape:perf:03239", - "shape:perf:03240", - "shape:perf:03241", - "shape:perf:03242", - "shape:perf:03243", - "shape:perf:03244", - "shape:perf:03245", - "shape:perf:03246", - "shape:perf:03247", - "shape:perf:03248", - "shape:perf:03249", - "shape:perf:03250", - "shape:perf:03251", - "shape:perf:03252", - "shape:perf:03253", - "shape:perf:03254", - "shape:perf:03255", - "shape:perf:03256", - "shape:perf:03257", - "shape:perf:03258", - "shape:perf:03259", - "shape:perf:03260", - "shape:perf:03261", - "shape:perf:03262", - "shape:perf:03263", - "shape:perf:03264", - "shape:perf:03265", - "shape:perf:03266", - "shape:perf:03267", - "shape:perf:03268", - "shape:perf:03269", - "shape:perf:03270", - "shape:perf:03271", - "shape:perf:03272", - "shape:perf:03273", - "shape:perf:03274", - "shape:perf:03275", - "shape:perf:03276", - "shape:perf:03277", - "shape:perf:03278", - "shape:perf:03279", - "shape:perf:03280", - "shape:perf:03281", - "shape:perf:03282", - "shape:perf:03283", - "shape:perf:03284", - "shape:perf:03285", - "shape:perf:03286", - "shape:perf:03287", - "shape:perf:03288", - "shape:perf:03289", - "shape:perf:03290", - "shape:perf:03291", - "shape:perf:03292", - "shape:perf:03293", - "shape:perf:03294", - "shape:perf:03295", - "shape:perf:03296", - "shape:perf:03297", - "shape:perf:03298", - "shape:perf:03299", - "shape:perf:03300", - "shape:perf:03301", - "shape:perf:03302", - "shape:perf:03303", - "shape:perf:03304", - "shape:perf:03305", - "shape:perf:03306", - "shape:perf:03307", - "shape:perf:03308", - "shape:perf:03309", - "shape:perf:03310", - "shape:perf:03311", - "shape:perf:03312", - "shape:perf:03313", - "shape:perf:03314", - "shape:perf:03315", - "shape:perf:03316", - "shape:perf:03317", - "shape:perf:03318", - "shape:perf:03319", - "shape:perf:03320", - "shape:perf:03321", - "shape:perf:03322", - "shape:perf:03323", - "shape:perf:03324", - "shape:perf:03325", - "shape:perf:03326", - "shape:perf:03327", - "shape:perf:03328", - "shape:perf:03329", - "shape:perf:03330", - "shape:perf:03331", - "shape:perf:03332", - "shape:perf:03333", - "shape:perf:03334", - "shape:perf:03335", - "shape:perf:03336", - "shape:perf:03337", - "shape:perf:03338", - "shape:perf:03339", - "shape:perf:03340", - "shape:perf:03341", - "shape:perf:03342", - "shape:perf:03343", - "shape:perf:03344", - "shape:perf:03345", - "shape:perf:03346", - "shape:perf:03347", - "shape:perf:03348", - "shape:perf:03349", - "shape:perf:03350", - "shape:perf:03351", - "shape:perf:03352", - "shape:perf:03353", - "shape:perf:03354", - "shape:perf:03355", - "shape:perf:03356", - "shape:perf:03357", - "shape:perf:03358", - "shape:perf:03359", - "shape:perf:03360", - "shape:perf:03361", - "shape:perf:03362", - "shape:perf:03363", - "shape:perf:03364", - "shape:perf:03365", - "shape:perf:03366", - "shape:perf:03367", - "shape:perf:03368", - "shape:perf:03369", - "shape:perf:03370", - "shape:perf:03371", - "shape:perf:03372", - "shape:perf:03373", - "shape:perf:03374", - "shape:perf:03375", - "shape:perf:03376", - "shape:perf:03377", - "shape:perf:03378", - "shape:perf:03379", - "shape:perf:03380", - "shape:perf:03381", - "shape:perf:03382", - "shape:perf:03383", - "shape:perf:03384", - "shape:perf:03385", - "shape:perf:03386", - "shape:perf:03387", - "shape:perf:03388", - "shape:perf:03389", - "shape:perf:03390", - "shape:perf:03391", - "shape:perf:03392", - "shape:perf:03393", - "shape:perf:03394", - "shape:perf:03395", - "shape:perf:03396", - "shape:perf:03397", - "shape:perf:03398", - "shape:perf:03399", - "shape:perf:03400", - "shape:perf:03401", - "shape:perf:03402", - "shape:perf:03403", - "shape:perf:03404", - "shape:perf:03405", - "shape:perf:03406", - "shape:perf:03407", - "shape:perf:03408", - "shape:perf:03409", - "shape:perf:03410", - "shape:perf:03411", - "shape:perf:03412", - "shape:perf:03413", - "shape:perf:03414", - "shape:perf:03415", - "shape:perf:03416", - "shape:perf:03417", - "shape:perf:03418", - "shape:perf:03419", - "shape:perf:03420", - "shape:perf:03421", - "shape:perf:03422", - "shape:perf:03423", - "shape:perf:03424", - "shape:perf:03425", - "shape:perf:03426", - "shape:perf:03427", - "shape:perf:03428", - "shape:perf:03429", - "shape:perf:03430", - "shape:perf:03431", - "shape:perf:03432", - "shape:perf:03433", - "shape:perf:03434", - "shape:perf:03435", - "shape:perf:03436", - "shape:perf:03437", - "shape:perf:03438", - "shape:perf:03439", - "shape:perf:03440", - "shape:perf:03441", - "shape:perf:03442", - "shape:perf:03443", - "shape:perf:03444", - "shape:perf:03445", - "shape:perf:03446", - "shape:perf:03447", - "shape:perf:03448", - "shape:perf:03449", - "shape:perf:03450", - "shape:perf:03451", - "shape:perf:03452", - "shape:perf:03453", - "shape:perf:03454", - "shape:perf:03455", - "shape:perf:03456", - "shape:perf:03457", - "shape:perf:03458", - "shape:perf:03459", - "shape:perf:03460", - "shape:perf:03461", - "shape:perf:03462", - "shape:perf:03463", - "shape:perf:03464", - "shape:perf:03465", - "shape:perf:03466", - "shape:perf:03467", - "shape:perf:03468", - "shape:perf:03469", - "shape:perf:03470", - "shape:perf:03471", - "shape:perf:03472", - "shape:perf:03473", - "shape:perf:03474", - "shape:perf:03475", - "shape:perf:03476", - "shape:perf:03477", - "shape:perf:03478", - "shape:perf:03479", - "shape:perf:03480", - "shape:perf:03481", - "shape:perf:03482", - "shape:perf:03483", - "shape:perf:03484", - "shape:perf:03485", - "shape:perf:03486", - "shape:perf:03487", - "shape:perf:03488", - "shape:perf:03489", - "shape:perf:03490", - "shape:perf:03491", - "shape:perf:03492", - "shape:perf:03493", - "shape:perf:03494", - "shape:perf:03495", - "shape:perf:03496", - "shape:perf:03497", - "shape:perf:03498", - "shape:perf:03499", - "shape:perf:03500", - "shape:perf:03501", - "shape:perf:03502", - "shape:perf:03503", - "shape:perf:03504", - "shape:perf:03505", - "shape:perf:03506", - "shape:perf:03507", - "shape:perf:03508", - "shape:perf:03509", - "shape:perf:03510", - "shape:perf:03511", - "shape:perf:03512", - "shape:perf:03513", - "shape:perf:03514", - "shape:perf:03515", - "shape:perf:03516", - "shape:perf:03517", - "shape:perf:03518", - "shape:perf:03519", - "shape:perf:03520", - "shape:perf:03521", - "shape:perf:03522", - "shape:perf:03523", - "shape:perf:03524", - "shape:perf:03525", - "shape:perf:03526", - "shape:perf:03527", - "shape:perf:03528", - "shape:perf:03529", - "shape:perf:03530", - "shape:perf:03531", - "shape:perf:03532", - "shape:perf:03533", - "shape:perf:03534", - "shape:perf:03535", - "shape:perf:03536", - "shape:perf:03537", - "shape:perf:03538", - "shape:perf:03539", - "shape:perf:03540", - "shape:perf:03541", - "shape:perf:03542", - "shape:perf:03543", - "shape:perf:03544", - "shape:perf:03545", - "shape:perf:03546", - "shape:perf:03547", - "shape:perf:03548", - "shape:perf:03549", - "shape:perf:03550", - "shape:perf:03551", - "shape:perf:03552", - "shape:perf:03553", - "shape:perf:03554", - "shape:perf:03555", - "shape:perf:03556", - "shape:perf:03557", - "shape:perf:03558", - "shape:perf:03559", - "shape:perf:03560", - "shape:perf:03561", - "shape:perf:03562", - "shape:perf:03563", - "shape:perf:03564", - "shape:perf:03565", - "shape:perf:03566", - "shape:perf:03567", - "shape:perf:03568", - "shape:perf:03569", - "shape:perf:03570", - "shape:perf:03571", - "shape:perf:03572", - "shape:perf:03573", - "shape:perf:03574", - "shape:perf:03575", - "shape:perf:03576", - "shape:perf:03577", - "shape:perf:03578", - "shape:perf:03579", - "shape:perf:03580", - "shape:perf:03581", - "shape:perf:03582", - "shape:perf:03583", - "shape:perf:03584", - "shape:perf:03585", - "shape:perf:03586", - "shape:perf:03587", - "shape:perf:03588", - "shape:perf:03589", - "shape:perf:03590", - "shape:perf:03591", - "shape:perf:03592", - "shape:perf:03593", - "shape:perf:03594", - "shape:perf:03595", - "shape:perf:03596", - "shape:perf:03597", - "shape:perf:03598", - "shape:perf:03599", - "shape:perf:03600", - "shape:perf:03601", - "shape:perf:03602", - "shape:perf:03603", - "shape:perf:03604", - "shape:perf:03605", - "shape:perf:03606", - "shape:perf:03607", - "shape:perf:03608", - "shape:perf:03609", - "shape:perf:03610", - "shape:perf:03611", - "shape:perf:03612", - "shape:perf:03613", - "shape:perf:03614", - "shape:perf:03615", - "shape:perf:03616", - "shape:perf:03617", - "shape:perf:03618", - "shape:perf:03619", - "shape:perf:03620", - "shape:perf:03621", - "shape:perf:03622", - "shape:perf:03623", - "shape:perf:03624", - "shape:perf:03625", - "shape:perf:03626", - "shape:perf:03627", - "shape:perf:03628", - "shape:perf:03629", - "shape:perf:03630", - "shape:perf:03631", - "shape:perf:03632", - "shape:perf:03633", - "shape:perf:03634", - "shape:perf:03635", - "shape:perf:03636", - "shape:perf:03637", - "shape:perf:03638", - "shape:perf:03639", - "shape:perf:03640", - "shape:perf:03641", - "shape:perf:03642", - "shape:perf:03643", - "shape:perf:03644", - "shape:perf:03645", - "shape:perf:03646", - "shape:perf:03647", - "shape:perf:03648", - "shape:perf:03649", - "shape:perf:03650", - "shape:perf:03651", - "shape:perf:03652", - "shape:perf:03653", - "shape:perf:03654", - "shape:perf:03655", - "shape:perf:03656", - "shape:perf:03657", - "shape:perf:03658", - "shape:perf:03659", - "shape:perf:03660", - "shape:perf:03661", - "shape:perf:03662", - "shape:perf:03663", - "shape:perf:03664", - "shape:perf:03665", - "shape:perf:03666", - "shape:perf:03667", - "shape:perf:03668", - "shape:perf:03669", - "shape:perf:03670", - "shape:perf:03671", - "shape:perf:03672", - "shape:perf:03673", - "shape:perf:03674", - "shape:perf:03675", - "shape:perf:03676", - "shape:perf:03677", - "shape:perf:03678", - "shape:perf:03679", - "shape:perf:03680", - "shape:perf:03681", - "shape:perf:03682", - "shape:perf:03683", - "shape:perf:03684", - "shape:perf:03685", - "shape:perf:03686", - "shape:perf:03687", - "shape:perf:03688", - "shape:perf:03689", - "shape:perf:03690", - "shape:perf:03691", - "shape:perf:03692", - "shape:perf:03693", - "shape:perf:03694", - "shape:perf:03695", - "shape:perf:03696", - "shape:perf:03697", - "shape:perf:03698", - "shape:perf:03699", - "shape:perf:03700", - "shape:perf:03701", - "shape:perf:03702", - "shape:perf:03703", - "shape:perf:03704", - "shape:perf:03705", - "shape:perf:03706", - "shape:perf:03707", - "shape:perf:03708", - "shape:perf:03709", - "shape:perf:03710", - "shape:perf:03711", - "shape:perf:03712", - "shape:perf:03713", - "shape:perf:03714", - "shape:perf:03715", - "shape:perf:03716", - "shape:perf:03717", - "shape:perf:03718", - "shape:perf:03719", - "shape:perf:03720", - "shape:perf:03721", - "shape:perf:03722", - "shape:perf:03723", - "shape:perf:03724", - "shape:perf:03725", - "shape:perf:03726", - "shape:perf:03727", - "shape:perf:03728", - "shape:perf:03729", - "shape:perf:03730", - "shape:perf:03731", - "shape:perf:03732", - "shape:perf:03733", - "shape:perf:03734", - "shape:perf:03735", - "shape:perf:03736", - "shape:perf:03737", - "shape:perf:03738", - "shape:perf:03739", - "shape:perf:03740", - "shape:perf:03741", - "shape:perf:03742", - "shape:perf:03743", - "shape:perf:03744", - "shape:perf:03745", - "shape:perf:03746", - "shape:perf:03747", - "shape:perf:03748", - "shape:perf:03749", - "shape:perf:03750", - "shape:perf:03751", - "shape:perf:03752", - "shape:perf:03753", - "shape:perf:03754", - "shape:perf:03755", - "shape:perf:03756", - "shape:perf:03757", - "shape:perf:03758", - "shape:perf:03759", - "shape:perf:03760", - "shape:perf:03761", - "shape:perf:03762", - "shape:perf:03763", - "shape:perf:03764", - "shape:perf:03765", - "shape:perf:03766", - "shape:perf:03767", - "shape:perf:03768", - "shape:perf:03769", - "shape:perf:03770", - "shape:perf:03771", - "shape:perf:03772", - "shape:perf:03773", - "shape:perf:03774", - "shape:perf:03775", - "shape:perf:03776", - "shape:perf:03777", - "shape:perf:03778", - "shape:perf:03779", - "shape:perf:03780", - "shape:perf:03781", - "shape:perf:03782", - "shape:perf:03783", - "shape:perf:03784", - "shape:perf:03785", - "shape:perf:03786", - "shape:perf:03787", - "shape:perf:03788", - "shape:perf:03789", - "shape:perf:03790", - "shape:perf:03791", - "shape:perf:03792", - "shape:perf:03793", - "shape:perf:03794", - "shape:perf:03795", - "shape:perf:03796", - "shape:perf:03797", - "shape:perf:03798", - "shape:perf:03799", - "shape:perf:03800", - "shape:perf:03801", - "shape:perf:03802", - "shape:perf:03803", - "shape:perf:03804", - "shape:perf:03805", - "shape:perf:03806", - "shape:perf:03807", - "shape:perf:03808", - "shape:perf:03809", - "shape:perf:03810", - "shape:perf:03811", - "shape:perf:03812", - "shape:perf:03813", - "shape:perf:03814", - "shape:perf:03815", - "shape:perf:03816", - "shape:perf:03817", - "shape:perf:03818", - "shape:perf:03819", - "shape:perf:03820", - "shape:perf:03821", - "shape:perf:03822", - "shape:perf:03823", - "shape:perf:03824", - "shape:perf:03825", - "shape:perf:03826", - "shape:perf:03827", - "shape:perf:03828", - "shape:perf:03829", - "shape:perf:03830", - "shape:perf:03831", - "shape:perf:03832", - "shape:perf:03833", - "shape:perf:03834", - "shape:perf:03835", - "shape:perf:03836", - "shape:perf:03837", - "shape:perf:03838", - "shape:perf:03839", - "shape:perf:03840", - "shape:perf:03841", - "shape:perf:03842", - "shape:perf:03843", - "shape:perf:03844", - "shape:perf:03845", - "shape:perf:03846", - "shape:perf:03847", - "shape:perf:03848", - "shape:perf:03849", - "shape:perf:03850", - "shape:perf:03851", - "shape:perf:03852", - "shape:perf:03853", - "shape:perf:03854", - "shape:perf:03855", - "shape:perf:03856", - "shape:perf:03857", - "shape:perf:03858", - "shape:perf:03859", - "shape:perf:03860", - "shape:perf:03861", - "shape:perf:03862", - "shape:perf:03863", - "shape:perf:03864", - "shape:perf:03865", - "shape:perf:03866", - "shape:perf:03867", - "shape:perf:03868", - "shape:perf:03869", - "shape:perf:03870", - "shape:perf:03871", - "shape:perf:03872", - "shape:perf:03873", - "shape:perf:03874", - "shape:perf:03875", - "shape:perf:03876", - "shape:perf:03877", - "shape:perf:03878", - "shape:perf:03879", - "shape:perf:03880", - "shape:perf:03881", - "shape:perf:03882", - "shape:perf:03883", - "shape:perf:03884", - "shape:perf:03885", - "shape:perf:03886", - "shape:perf:03887", - "shape:perf:03888", - "shape:perf:03889", - "shape:perf:03890", - "shape:perf:03891", - "shape:perf:03892", - "shape:perf:03893", - "shape:perf:03894", - "shape:perf:03895", - "shape:perf:03896", - "shape:perf:03897", - "shape:perf:03898", - "shape:perf:03899", - "shape:perf:03900", - "shape:perf:03901", - "shape:perf:03902", - "shape:perf:03903", - "shape:perf:03904", - "shape:perf:03905", - "shape:perf:03906", - "shape:perf:03907", - "shape:perf:03908", - "shape:perf:03909", - "shape:perf:03910", - "shape:perf:03911", - "shape:perf:03912", - "shape:perf:03913", - "shape:perf:03914", - "shape:perf:03915", - "shape:perf:03916", - "shape:perf:03917", - "shape:perf:03918", - "shape:perf:03919", - "shape:perf:03920", - "shape:perf:03921", - "shape:perf:03922", - "shape:perf:03923", - "shape:perf:03924", - "shape:perf:03925", - "shape:perf:03926", - "shape:perf:03927", - "shape:perf:03928", - "shape:perf:03929", - "shape:perf:03930", - "shape:perf:03931", - "shape:perf:03932", - "shape:perf:03933", - "shape:perf:03934", - "shape:perf:03935", - "shape:perf:03936", - "shape:perf:03937", - "shape:perf:03938", - "shape:perf:03939", - "shape:perf:03940", - "shape:perf:03941", - "shape:perf:03942", - "shape:perf:03943", - "shape:perf:03944", - "shape:perf:03945", - "shape:perf:03946", - "shape:perf:03947", - "shape:perf:03948", - "shape:perf:03949", - "shape:perf:03950", - "shape:perf:03951", - "shape:perf:03952", - "shape:perf:03953", - "shape:perf:03954", - "shape:perf:03955", - "shape:perf:03956", - "shape:perf:03957", - "shape:perf:03958", - "shape:perf:03959", - "shape:perf:03960", - "shape:perf:03961", - "shape:perf:03962", - "shape:perf:03963", - "shape:perf:03964", - "shape:perf:03965", - "shape:perf:03966", - "shape:perf:03967", - "shape:perf:03968", - "shape:perf:03969", - "shape:perf:03970", - "shape:perf:03971", - "shape:perf:03972", - "shape:perf:03973", - "shape:perf:03974", - "shape:perf:03975", - "shape:perf:03976", - "shape:perf:03977", - "shape:perf:03978", - "shape:perf:03979", - "shape:perf:03980", - "shape:perf:03981", - "shape:perf:03982", - "shape:perf:03983", - "shape:perf:03984", - "shape:perf:03985", - "shape:perf:03986", - "shape:perf:03987", - "shape:perf:03988", - "shape:perf:03989", - "shape:perf:03990", - "shape:perf:03991", - "shape:perf:03992", - "shape:perf:03993", - "shape:perf:03994", - "shape:perf:03995", - "shape:perf:03996", - "shape:perf:03997", - "shape:perf:03998", - "shape:perf:03999", - "shape:perf:04000", - "shape:perf:04001", - "shape:perf:04002", - "shape:perf:04003", - "shape:perf:04004", - "shape:perf:04005", - "shape:perf:04006", - "shape:perf:04007", - "shape:perf:04008", - "shape:perf:04009", - "shape:perf:04010", - "shape:perf:04011", - "shape:perf:04012", - "shape:perf:04013", - "shape:perf:04014", - "shape:perf:04015", - "shape:perf:04016", - "shape:perf:04017", - "shape:perf:04018", - "shape:perf:04019", - "shape:perf:04020", - "shape:perf:04021", - "shape:perf:04022", - "shape:perf:04023", - "shape:perf:04024", - "shape:perf:04025", - "shape:perf:04026", - "shape:perf:04027", - "shape:perf:04028", - "shape:perf:04029", - "shape:perf:04030", - "shape:perf:04031", - "shape:perf:04032", - "shape:perf:04033", - "shape:perf:04034", - "shape:perf:04035", - "shape:perf:04036", - "shape:perf:04037", - "shape:perf:04038", - "shape:perf:04039", - "shape:perf:04040", - "shape:perf:04041", - "shape:perf:04042", - "shape:perf:04043", - "shape:perf:04044", - "shape:perf:04045", - "shape:perf:04046", - "shape:perf:04047", - "shape:perf:04048", - "shape:perf:04049", - "shape:perf:04050", - "shape:perf:04051", - "shape:perf:04052", - "shape:perf:04053", - "shape:perf:04054", - "shape:perf:04055", - "shape:perf:04056", - "shape:perf:04057", - "shape:perf:04058", - "shape:perf:04059", - "shape:perf:04060", - "shape:perf:04061", - "shape:perf:04062", - "shape:perf:04063", - "shape:perf:04064", - "shape:perf:04065", - "shape:perf:04066", - "shape:perf:04067", - "shape:perf:04068", - "shape:perf:04069", - "shape:perf:04070", - "shape:perf:04071", - "shape:perf:04072", - "shape:perf:04073", - "shape:perf:04074", - "shape:perf:04075", - "shape:perf:04076", - "shape:perf:04077", - "shape:perf:04078", - "shape:perf:04079", - "shape:perf:04080", - "shape:perf:04081", - "shape:perf:04082", - "shape:perf:04083", - "shape:perf:04084", - "shape:perf:04085", - "shape:perf:04086", - "shape:perf:04087", - "shape:perf:04088", - "shape:perf:04089", - "shape:perf:04090", - "shape:perf:04091", - "shape:perf:04092", - "shape:perf:04093", - "shape:perf:04094", - "shape:perf:04095", - "shape:perf:04096", - "shape:perf:04097", - "shape:perf:04098", - "shape:perf:04099", - "shape:perf:04100", - "shape:perf:04101", - "shape:perf:04102", - "shape:perf:04103", - "shape:perf:04104", - "shape:perf:04105", - "shape:perf:04106", - "shape:perf:04107", - "shape:perf:04108", - "shape:perf:04109", - "shape:perf:04110", - "shape:perf:04111", - "shape:perf:04112", - "shape:perf:04113", - "shape:perf:04114", - "shape:perf:04115", - "shape:perf:04116", - "shape:perf:04117", - "shape:perf:04118", - "shape:perf:04119", - "shape:perf:04120", - "shape:perf:04121", - "shape:perf:04122", - "shape:perf:04123", - "shape:perf:04124", - "shape:perf:04125", - "shape:perf:04126", - "shape:perf:04127", - "shape:perf:04128", - "shape:perf:04129", - "shape:perf:04130", - "shape:perf:04131", - "shape:perf:04132", - "shape:perf:04133", - "shape:perf:04134", - "shape:perf:04135", - "shape:perf:04136", - "shape:perf:04137", - "shape:perf:04138", - "shape:perf:04139", - "shape:perf:04140", - "shape:perf:04141", - "shape:perf:04142", - "shape:perf:04143", - "shape:perf:04144", - "shape:perf:04145", - "shape:perf:04146", - "shape:perf:04147", - "shape:perf:04148", - "shape:perf:04149", - "shape:perf:04150", - "shape:perf:04151", - "shape:perf:04152", - "shape:perf:04153", - "shape:perf:04154", - "shape:perf:04155", - "shape:perf:04156", - "shape:perf:04157", - "shape:perf:04158", - "shape:perf:04159", - "shape:perf:04160", - "shape:perf:04161", - "shape:perf:04162", - "shape:perf:04163", - "shape:perf:04164", - "shape:perf:04165", - "shape:perf:04166", - "shape:perf:04167", - "shape:perf:04168", - "shape:perf:04169", - "shape:perf:04170", - "shape:perf:04171", - "shape:perf:04172", - "shape:perf:04173", - "shape:perf:04174", - "shape:perf:04175", - "shape:perf:04176", - "shape:perf:04177", - "shape:perf:04178", - "shape:perf:04179", - "shape:perf:04180", - "shape:perf:04181", - "shape:perf:04182", - "shape:perf:04183", - "shape:perf:04184", - "shape:perf:04185", - "shape:perf:04186", - "shape:perf:04187", - "shape:perf:04188", - "shape:perf:04189", - "shape:perf:04190", - "shape:perf:04191", - "shape:perf:04192", - "shape:perf:04193", - "shape:perf:04194", - "shape:perf:04195", - "shape:perf:04196", - "shape:perf:04197", - "shape:perf:04198", - "shape:perf:04199", - "shape:perf:04200", - "shape:perf:04201", - "shape:perf:04202", - "shape:perf:04203", - "shape:perf:04204", - "shape:perf:04205", - "shape:perf:04206", - "shape:perf:04207", - "shape:perf:04208", - "shape:perf:04209", - "shape:perf:04210", - "shape:perf:04211", - "shape:perf:04212", - "shape:perf:04213", - "shape:perf:04214", - "shape:perf:04215", - "shape:perf:04216", - "shape:perf:04217", - "shape:perf:04218", - "shape:perf:04219", - "shape:perf:04220", - "shape:perf:04221", - "shape:perf:04222", - "shape:perf:04223", - "shape:perf:04224", - "shape:perf:04225", - "shape:perf:04226", - "shape:perf:04227", - "shape:perf:04228", - "shape:perf:04229", - "shape:perf:04230", - "shape:perf:04231", - "shape:perf:04232", - "shape:perf:04233", - "shape:perf:04234", - "shape:perf:04235", - "shape:perf:04236", - "shape:perf:04237", - "shape:perf:04238", - "shape:perf:04239", - "shape:perf:04240", - "shape:perf:04241", - "shape:perf:04242", - "shape:perf:04243", - "shape:perf:04244", - "shape:perf:04245", - "shape:perf:04246", - "shape:perf:04247", - "shape:perf:04248", - "shape:perf:04249", - "shape:perf:04250", - "shape:perf:04251", - "shape:perf:04252", - "shape:perf:04253", - "shape:perf:04254", - "shape:perf:04255", - "shape:perf:04256", - "shape:perf:04257", - "shape:perf:04258", - "shape:perf:04259", - "shape:perf:04260", - "shape:perf:04261", - "shape:perf:04262", - "shape:perf:04263", - "shape:perf:04264", - "shape:perf:04265", - "shape:perf:04266", - "shape:perf:04267", - "shape:perf:04268", - "shape:perf:04269", - "shape:perf:04270", - "shape:perf:04271", - "shape:perf:04272", - "shape:perf:04273", - "shape:perf:04274", - "shape:perf:04275", - "shape:perf:04276", - "shape:perf:04277", - "shape:perf:04278", - "shape:perf:04279", - "shape:perf:04280", - "shape:perf:04281", - "shape:perf:04282", - "shape:perf:04283", - "shape:perf:04284", - "shape:perf:04285", - "shape:perf:04286", - "shape:perf:04287", - "shape:perf:04288", - "shape:perf:04289", - "shape:perf:04290", - "shape:perf:04291", - "shape:perf:04292", - "shape:perf:04293", - "shape:perf:04294", - "shape:perf:04295", - "shape:perf:04296", - "shape:perf:04297", - "shape:perf:04298", - "shape:perf:04299", - "shape:perf:04300", - "shape:perf:04301", - "shape:perf:04302", - "shape:perf:04303", - "shape:perf:04304", - "shape:perf:04305", - "shape:perf:04306", - "shape:perf:04307", - "shape:perf:04308", - "shape:perf:04309", - "shape:perf:04310", - "shape:perf:04311", - "shape:perf:04312", - "shape:perf:04313", - "shape:perf:04314", - "shape:perf:04315", - "shape:perf:04316", - "shape:perf:04317", - "shape:perf:04318", - "shape:perf:04319", - "shape:perf:04320", - "shape:perf:04321", - "shape:perf:04322", - "shape:perf:04323", - "shape:perf:04324", - "shape:perf:04325", - "shape:perf:04326", - "shape:perf:04327", - "shape:perf:04328", - "shape:perf:04329", - "shape:perf:04330", - "shape:perf:04331", - "shape:perf:04332", - "shape:perf:04333", - "shape:perf:04334", - "shape:perf:04335", - "shape:perf:04336", - "shape:perf:04337", - "shape:perf:04338", - "shape:perf:04339", - "shape:perf:04340", - "shape:perf:04341", - "shape:perf:04342", - "shape:perf:04343", - "shape:perf:04344", - "shape:perf:04345", - "shape:perf:04346", - "shape:perf:04347", - "shape:perf:04348", - "shape:perf:04349", - "shape:perf:04350", - "shape:perf:04351", - "shape:perf:04352", - "shape:perf:04353", - "shape:perf:04354", - "shape:perf:04355", - "shape:perf:04356", - "shape:perf:04357", - "shape:perf:04358", - "shape:perf:04359", - "shape:perf:04360", - "shape:perf:04361", - "shape:perf:04362", - "shape:perf:04363", - "shape:perf:04364", - "shape:perf:04365", - "shape:perf:04366", - "shape:perf:04367", - "shape:perf:04368", - "shape:perf:04369", - "shape:perf:04370", - "shape:perf:04371", - "shape:perf:04372", - "shape:perf:04373", - "shape:perf:04374", - "shape:perf:04375", - "shape:perf:04376", - "shape:perf:04377", - "shape:perf:04378", - "shape:perf:04379", - "shape:perf:04380", - "shape:perf:04381", - "shape:perf:04382", - "shape:perf:04383", - "shape:perf:04384", - "shape:perf:04385", - "shape:perf:04386", - "shape:perf:04387", - "shape:perf:04388", - "shape:perf:04389", - "shape:perf:04390", - "shape:perf:04391", - "shape:perf:04392", - "shape:perf:04393", - "shape:perf:04394", - "shape:perf:04395", - "shape:perf:04396", - "shape:perf:04397", - "shape:perf:04398", - "shape:perf:04399", - "shape:perf:04400", - "shape:perf:04401", - "shape:perf:04402", - "shape:perf:04403", - "shape:perf:04404", - "shape:perf:04405", - "shape:perf:04406", - "shape:perf:04407", - "shape:perf:04408", - "shape:perf:04409", - "shape:perf:04410", - "shape:perf:04411", - "shape:perf:04412", - "shape:perf:04413", - "shape:perf:04414", - "shape:perf:04415", - "shape:perf:04416", - "shape:perf:04417", - "shape:perf:04418", - "shape:perf:04419", - "shape:perf:04420", - "shape:perf:04421", - "shape:perf:04422", - "shape:perf:04423", - "shape:perf:04424", - "shape:perf:04425", - "shape:perf:04426", - "shape:perf:04427", - "shape:perf:04428", - "shape:perf:04429", - "shape:perf:04430", - "shape:perf:04431", - "shape:perf:04432", - "shape:perf:04433", - "shape:perf:04434", - "shape:perf:04435", - "shape:perf:04436", - "shape:perf:04437", - "shape:perf:04438", - "shape:perf:04439", - "shape:perf:04440", - "shape:perf:04441", - "shape:perf:04442", - "shape:perf:04443", - "shape:perf:04444", - "shape:perf:04445", - "shape:perf:04446", - "shape:perf:04447", - "shape:perf:04448", - "shape:perf:04449", - "shape:perf:04450", - "shape:perf:04451", - "shape:perf:04452", - "shape:perf:04453", - "shape:perf:04454", - "shape:perf:04455", - "shape:perf:04456", - "shape:perf:04457", - "shape:perf:04458", - "shape:perf:04459", - "shape:perf:04460", - "shape:perf:04461", - "shape:perf:04462", - "shape:perf:04463", - "shape:perf:04464", - "shape:perf:04465", - "shape:perf:04466", - "shape:perf:04467", - "shape:perf:04468", - "shape:perf:04469", - "shape:perf:04470", - "shape:perf:04471", - "shape:perf:04472", - "shape:perf:04473", - "shape:perf:04474", - "shape:perf:04475", - "shape:perf:04476", - "shape:perf:04477", - "shape:perf:04478", - "shape:perf:04479", - "shape:perf:04480", - "shape:perf:04481", - "shape:perf:04482", - "shape:perf:04483", - "shape:perf:04484", - "shape:perf:04485", - "shape:perf:04486", - "shape:perf:04487", - "shape:perf:04488", - "shape:perf:04489", - "shape:perf:04490", - "shape:perf:04491", - "shape:perf:04492", - "shape:perf:04493", - "shape:perf:04494", - "shape:perf:04495", - "shape:perf:04496", - "shape:perf:04497", - "shape:perf:04498", - "shape:perf:04499", - "shape:perf:04500", - "shape:perf:04501", - "shape:perf:04502", - "shape:perf:04503", - "shape:perf:04504", - "shape:perf:04505", - "shape:perf:04506", - "shape:perf:04507", - "shape:perf:04508", - "shape:perf:04509", - "shape:perf:04510", - "shape:perf:04511", - "shape:perf:04512", - "shape:perf:04513", - "shape:perf:04514", - "shape:perf:04515", - "shape:perf:04516", - "shape:perf:04517", - "shape:perf:04518", - "shape:perf:04519", - "shape:perf:04520", - "shape:perf:04521", - "shape:perf:04522", - "shape:perf:04523", - "shape:perf:04524", - "shape:perf:04525", - "shape:perf:04526", - "shape:perf:04527", - "shape:perf:04528", - "shape:perf:04529", - "shape:perf:04530", - "shape:perf:04531", - "shape:perf:04532", - "shape:perf:04533", - "shape:perf:04534", - "shape:perf:04535", - "shape:perf:04536", - "shape:perf:04537", - "shape:perf:04538", - "shape:perf:04539", - "shape:perf:04540", - "shape:perf:04541", - "shape:perf:04542", - "shape:perf:04543", - "shape:perf:04544", - "shape:perf:04545", - "shape:perf:04546", - "shape:perf:04547", - "shape:perf:04548", - "shape:perf:04549", - "shape:perf:04550", - "shape:perf:04551", - "shape:perf:04552", - "shape:perf:04553", - "shape:perf:04554", - "shape:perf:04555", - "shape:perf:04556", - "shape:perf:04557", - "shape:perf:04558", - "shape:perf:04559", - "shape:perf:04560", - "shape:perf:04561", - "shape:perf:04562", - "shape:perf:04563", - "shape:perf:04564", - "shape:perf:04565", - "shape:perf:04566", - "shape:perf:04567", - "shape:perf:04568", - "shape:perf:04569", - "shape:perf:04570", - "shape:perf:04571", - "shape:perf:04572", - "shape:perf:04573", - "shape:perf:04574", - "shape:perf:04575", - "shape:perf:04576", - "shape:perf:04577", - "shape:perf:04578", - "shape:perf:04579", - "shape:perf:04580", - "shape:perf:04581", - "shape:perf:04582", - "shape:perf:04583", - "shape:perf:04584", - "shape:perf:04585", - "shape:perf:04586", - "shape:perf:04587", - "shape:perf:04588", - "shape:perf:04589", - "shape:perf:04590", - "shape:perf:04591", - "shape:perf:04592", - "shape:perf:04593", - "shape:perf:04594", - "shape:perf:04595", - "shape:perf:04596", - "shape:perf:04597", - "shape:perf:04598", - "shape:perf:04599", - "shape:perf:04600", - "shape:perf:04601", - "shape:perf:04602", - "shape:perf:04603", - "shape:perf:04604", - "shape:perf:04605", - "shape:perf:04606", - "shape:perf:04607", - "shape:perf:04608", - "shape:perf:04609", - "shape:perf:04610", - "shape:perf:04611", - "shape:perf:04612", - "shape:perf:04613", - "shape:perf:04614", - "shape:perf:04615", - "shape:perf:04616", - "shape:perf:04617", - "shape:perf:04618", - "shape:perf:04619", - "shape:perf:04620", - "shape:perf:04621", - "shape:perf:04622", - "shape:perf:04623", - "shape:perf:04624", - "shape:perf:04625", - "shape:perf:04626", - "shape:perf:04627", - "shape:perf:04628", - "shape:perf:04629", - "shape:perf:04630", - "shape:perf:04631", - "shape:perf:04632", - "shape:perf:04633", - "shape:perf:04634", - "shape:perf:04635", - "shape:perf:04636", - "shape:perf:04637", - "shape:perf:04638", - "shape:perf:04639", - "shape:perf:04640", - "shape:perf:04641", - "shape:perf:04642", - "shape:perf:04643", - "shape:perf:04644", - "shape:perf:04645", - "shape:perf:04646", - "shape:perf:04647", - "shape:perf:04648", - "shape:perf:04649", - "shape:perf:04650", - "shape:perf:04651", - "shape:perf:04652", - "shape:perf:04653", - "shape:perf:04654", - "shape:perf:04655", - "shape:perf:04656", - "shape:perf:04657", - "shape:perf:04658", - "shape:perf:04659", - "shape:perf:04660", - "shape:perf:04661", - "shape:perf:04662", - "shape:perf:04663", - "shape:perf:04664", - "shape:perf:04665", - "shape:perf:04666", - "shape:perf:04667", - "shape:perf:04668", - "shape:perf:04669", - "shape:perf:04670", - "shape:perf:04671", - "shape:perf:04672", - "shape:perf:04673", - "shape:perf:04674", - "shape:perf:04675", - "shape:perf:04676", - "shape:perf:04677", - "shape:perf:04678", - "shape:perf:04679", - "shape:perf:04680", - "shape:perf:04681", - "shape:perf:04682", - "shape:perf:04683", - "shape:perf:04684", - "shape:perf:04685", - "shape:perf:04686", - "shape:perf:04687", - "shape:perf:04688", - "shape:perf:04689", - "shape:perf:04690", - "shape:perf:04691", - "shape:perf:04692", - "shape:perf:04693", - "shape:perf:04694", - "shape:perf:04695", - "shape:perf:04696", - "shape:perf:04697", - "shape:perf:04698", - "shape:perf:04699", - "shape:perf:04700", - "shape:perf:04701", - "shape:perf:04702", - "shape:perf:04703", - "shape:perf:04704", - "shape:perf:04705", - "shape:perf:04706", - "shape:perf:04707", - "shape:perf:04708", - "shape:perf:04709", - "shape:perf:04710", - "shape:perf:04711", - "shape:perf:04712", - "shape:perf:04713", - "shape:perf:04714", - "shape:perf:04715", - "shape:perf:04716", - "shape:perf:04717", - "shape:perf:04718", - "shape:perf:04719", - "shape:perf:04720", - "shape:perf:04721", - "shape:perf:04722", - "shape:perf:04723", - "shape:perf:04724", - "shape:perf:04725", - "shape:perf:04726", - "shape:perf:04727", - "shape:perf:04728", - "shape:perf:04729", - "shape:perf:04730", - "shape:perf:04731", - "shape:perf:04732", - "shape:perf:04733", - "shape:perf:04734", - "shape:perf:04735", - "shape:perf:04736", - "shape:perf:04737", - "shape:perf:04738", - "shape:perf:04739", - "shape:perf:04740", - "shape:perf:04741", - "shape:perf:04742", - "shape:perf:04743", - "shape:perf:04744", - "shape:perf:04745", - "shape:perf:04746", - "shape:perf:04747", - "shape:perf:04748", - "shape:perf:04749", - "shape:perf:04750", - "shape:perf:04751", - "shape:perf:04752", - "shape:perf:04753", - "shape:perf:04754", - "shape:perf:04755", - "shape:perf:04756", - "shape:perf:04757", - "shape:perf:04758", - "shape:perf:04759", - "shape:perf:04760", - "shape:perf:04761", - "shape:perf:04762", - "shape:perf:04763", - "shape:perf:04764", - "shape:perf:04765", - "shape:perf:04766", - "shape:perf:04767", - "shape:perf:04768", - "shape:perf:04769", - "shape:perf:04770", - "shape:perf:04771", - "shape:perf:04772", - "shape:perf:04773", - "shape:perf:04774", - "shape:perf:04775", - "shape:perf:04776", - "shape:perf:04777", - "shape:perf:04778", - "shape:perf:04779", - "shape:perf:04780", - "shape:perf:04781", - "shape:perf:04782", - "shape:perf:04783", - "shape:perf:04784", - "shape:perf:04785", - "shape:perf:04786", - "shape:perf:04787", - "shape:perf:04788", - "shape:perf:04789", - "shape:perf:04790", - "shape:perf:04791", - "shape:perf:04792", - "shape:perf:04793", - "shape:perf:04794", - "shape:perf:04795", - "shape:perf:04796", - "shape:perf:04797", - "shape:perf:04798", - "shape:perf:04799", - "shape:perf:04800", - "shape:perf:04801", - "shape:perf:04802", - "shape:perf:04803", - "shape:perf:04804", - "shape:perf:04805", - "shape:perf:04806", - "shape:perf:04807", - "shape:perf:04808", - "shape:perf:04809", - "shape:perf:04810", - "shape:perf:04811", - "shape:perf:04812", - "shape:perf:04813", - "shape:perf:04814", - "shape:perf:04815", - "shape:perf:04816", - "shape:perf:04817", - "shape:perf:04818", - "shape:perf:04819", - "shape:perf:04820", - "shape:perf:04821", - "shape:perf:04822", - "shape:perf:04823", - "shape:perf:04824", - "shape:perf:04825", - "shape:perf:04826", - "shape:perf:04827", - "shape:perf:04828", - "shape:perf:04829", - "shape:perf:04830", - "shape:perf:04831", - "shape:perf:04832", - "shape:perf:04833", - "shape:perf:04834", - "shape:perf:04835", - "shape:perf:04836", - "shape:perf:04837", - "shape:perf:04838", - "shape:perf:04839", - "shape:perf:04840", - "shape:perf:04841", - "shape:perf:04842", - "shape:perf:04843", - "shape:perf:04844", - "shape:perf:04845", - "shape:perf:04846", - "shape:perf:04847", - "shape:perf:04848", - "shape:perf:04849", - "shape:perf:04850", - "shape:perf:04851", - "shape:perf:04852", - "shape:perf:04853", - "shape:perf:04854", - "shape:perf:04855", - "shape:perf:04856", - "shape:perf:04857", - "shape:perf:04858", - "shape:perf:04859", - "shape:perf:04860", - "shape:perf:04861", - "shape:perf:04862", - "shape:perf:04863", - "shape:perf:04864", - "shape:perf:04865", - "shape:perf:04866", - "shape:perf:04867", - "shape:perf:04868", - "shape:perf:04869", - "shape:perf:04870", - "shape:perf:04871", - "shape:perf:04872", - "shape:perf:04873", - "shape:perf:04874", - "shape:perf:04875", - "shape:perf:04876", - "shape:perf:04877", - "shape:perf:04878", - "shape:perf:04879", - "shape:perf:04880", - "shape:perf:04881", - "shape:perf:04882", - "shape:perf:04883", - "shape:perf:04884", - "shape:perf:04885", - "shape:perf:04886", - "shape:perf:04887", - "shape:perf:04888", - "shape:perf:04889", - "shape:perf:04890", - "shape:perf:04891", - "shape:perf:04892", - "shape:perf:04893", - "shape:perf:04894", - "shape:perf:04895", - "shape:perf:04896", - "shape:perf:04897", - "shape:perf:04898", - "shape:perf:04899", - "shape:perf:04900", - "shape:perf:04901", - "shape:perf:04902", - "shape:perf:04903", - "shape:perf:04904", - "shape:perf:04905", - "shape:perf:04906", - "shape:perf:04907", - "shape:perf:04908", - "shape:perf:04909", - "shape:perf:04910", - "shape:perf:04911", - "shape:perf:04912", - "shape:perf:04913", - "shape:perf:04914", - "shape:perf:04915", - "shape:perf:04916", - "shape:perf:04917", - "shape:perf:04918", - "shape:perf:04919", - "shape:perf:04920", - "shape:perf:04921", - "shape:perf:04922", - "shape:perf:04923", - "shape:perf:04924", - "shape:perf:04925", - "shape:perf:04926", - "shape:perf:04927", - "shape:perf:04928", - "shape:perf:04929", - "shape:perf:04930", - "shape:perf:04931", - "shape:perf:04932", - "shape:perf:04933", - "shape:perf:04934", - "shape:perf:04935", - "shape:perf:04936", - "shape:perf:04937", - "shape:perf:04938", - "shape:perf:04939", - "shape:perf:04940", - "shape:perf:04941", - "shape:perf:04942", - "shape:perf:04943", - "shape:perf:04944", - "shape:perf:04945", - "shape:perf:04946", - "shape:perf:04947", - "shape:perf:04948", - "shape:perf:04949", - "shape:perf:04950", - "shape:perf:04951", - "shape:perf:04952", - "shape:perf:04953", - "shape:perf:04954", - "shape:perf:04955", - "shape:perf:04956", - "shape:perf:04957", - "shape:perf:04958", - "shape:perf:04959", - "shape:perf:04960", - "shape:perf:04961", - "shape:perf:04962", - "shape:perf:04963", - "shape:perf:04964", - "shape:perf:04965", - "shape:perf:04966", - "shape:perf:04967", - "shape:perf:04968", - "shape:perf:04969", - "shape:perf:04970", - "shape:perf:04971", - "shape:perf:04972", - "shape:perf:04973", - "shape:perf:04974", - "shape:perf:04975", - "shape:perf:04976", - "shape:perf:04977", - "shape:perf:04978", - "shape:perf:04979", - "shape:perf:04980", - "shape:perf:04981", - "shape:perf:04982", - "shape:perf:04983", - "shape:perf:04984", - "shape:perf:04985", - "shape:perf:04986", - "shape:perf:04987", - "shape:perf:04988", - "shape:perf:04989", - "shape:perf:04990", - "shape:perf:04991", - "shape:perf:04992", - "shape:perf:04993", - "shape:perf:04994", - "shape:perf:04995", - "shape:perf:04996", - "shape:perf:04997", - "shape:perf:04998", - "shape:perf:04999", - "shape:perf:05000", - "shape:perf:05001", - "shape:perf:05002", - "shape:perf:05003", - "shape:perf:05004", - "shape:perf:05005", - "shape:perf:05006", - "shape:perf:05007", - "shape:perf:05008", - "shape:perf:05009", - "shape:perf:05010", - "shape:perf:05011", - "shape:perf:05012", - "shape:perf:05013", - "shape:perf:05014", - "shape:perf:05015", - "shape:perf:05016", - "shape:perf:05017", - "shape:perf:05018", - "shape:perf:05019", - "shape:perf:05020", - "shape:perf:05021", - "shape:perf:05022", - "shape:perf:05023", - "shape:perf:05024", - "shape:perf:05025", - "shape:perf:05026", - "shape:perf:05027", - "shape:perf:05028", - "shape:perf:05029", - "shape:perf:05030", - "shape:perf:05031", - "shape:perf:05032", - "shape:perf:05033", - "shape:perf:05034", - "shape:perf:05035", - "shape:perf:05036", - "shape:perf:05037", - "shape:perf:05038", - "shape:perf:05039", - "shape:perf:05040", - "shape:perf:05041", - "shape:perf:05042", - "shape:perf:05043", - "shape:perf:05044", - "shape:perf:05045", - "shape:perf:05046", - "shape:perf:05047", - "shape:perf:05048", - "shape:perf:05049", - "shape:perf:05050", - "shape:perf:05051", - "shape:perf:05052", - "shape:perf:05053", - "shape:perf:05054", - "shape:perf:05055", - "shape:perf:05056", - "shape:perf:05057", - "shape:perf:05058", - "shape:perf:05059", - "shape:perf:05060", - "shape:perf:05061", - "shape:perf:05062", - "shape:perf:05063", - "shape:perf:05064", - "shape:perf:05065", - "shape:perf:05066", - "shape:perf:05067", - "shape:perf:05068", - "shape:perf:05069", - "shape:perf:05070", - "shape:perf:05071", - "shape:perf:05072", - "shape:perf:05073", - "shape:perf:05074", - "shape:perf:05075", - "shape:perf:05076", - "shape:perf:05077", - "shape:perf:05078", - "shape:perf:05079", - "shape:perf:05080", - "shape:perf:05081", - "shape:perf:05082", - "shape:perf:05083", - "shape:perf:05084", - "shape:perf:05085", - "shape:perf:05086", - "shape:perf:05087", - "shape:perf:05088", - "shape:perf:05089", - "shape:perf:05090", - "shape:perf:05091", - "shape:perf:05092", - "shape:perf:05093", - "shape:perf:05094", - "shape:perf:05095", - "shape:perf:05096", - "shape:perf:05097", - "shape:perf:05098", - "shape:perf:05099", - "shape:perf:05100", - "shape:perf:05101", - "shape:perf:05102", - "shape:perf:05103", - "shape:perf:05104", - "shape:perf:05105", - "shape:perf:05106", - "shape:perf:05107", - "shape:perf:05108", - "shape:perf:05109", - "shape:perf:05110", - "shape:perf:05111", - "shape:perf:05112", - "shape:perf:05113", - "shape:perf:05114", - "shape:perf:05115", - "shape:perf:05116", - "shape:perf:05117", - "shape:perf:05118", - "shape:perf:05119", - "shape:perf:05120", - "shape:perf:05121", - "shape:perf:05122", - "shape:perf:05123", - "shape:perf:05124", - "shape:perf:05125", - "shape:perf:05126", - "shape:perf:05127", - "shape:perf:05128", - "shape:perf:05129", - "shape:perf:05130", - "shape:perf:05131", - "shape:perf:05132", - "shape:perf:05133", - "shape:perf:05134", - "shape:perf:05135", - "shape:perf:05136", - "shape:perf:05137", - "shape:perf:05138", - "shape:perf:05139", - "shape:perf:05140", - "shape:perf:05141", - "shape:perf:05142", - "shape:perf:05143", - "shape:perf:05144", - "shape:perf:05145", - "shape:perf:05146", - "shape:perf:05147", - "shape:perf:05148", - "shape:perf:05149", - "shape:perf:05150", - "shape:perf:05151", - "shape:perf:05152", - "shape:perf:05153", - "shape:perf:05154", - "shape:perf:05155", - "shape:perf:05156", - "shape:perf:05157", - "shape:perf:05158", - "shape:perf:05159", - "shape:perf:05160", - "shape:perf:05161", - "shape:perf:05162", - "shape:perf:05163", - "shape:perf:05164", - "shape:perf:05165", - "shape:perf:05166", - "shape:perf:05167", - "shape:perf:05168", - "shape:perf:05169", - "shape:perf:05170", - "shape:perf:05171", - "shape:perf:05172", - "shape:perf:05173", - "shape:perf:05174", - "shape:perf:05175", - "shape:perf:05176", - "shape:perf:05177", - "shape:perf:05178", - "shape:perf:05179", - "shape:perf:05180", - "shape:perf:05181", - "shape:perf:05182", - "shape:perf:05183", - "shape:perf:05184", - "shape:perf:05185", - "shape:perf:05186", - "shape:perf:05187", - "shape:perf:05188", - "shape:perf:05189", - "shape:perf:05190", - "shape:perf:05191", - "shape:perf:05192", - "shape:perf:05193", - "shape:perf:05194", - "shape:perf:05195", - "shape:perf:05196", - "shape:perf:05197", - "shape:perf:05198", - "shape:perf:05199", - "shape:perf:05200", - "shape:perf:05201", - "shape:perf:05202", - "shape:perf:05203", - "shape:perf:05204", - "shape:perf:05205", - "shape:perf:05206", - "shape:perf:05207", - "shape:perf:05208", - "shape:perf:05209", - "shape:perf:05210", - "shape:perf:05211", - "shape:perf:05212", - "shape:perf:05213", - "shape:perf:05214", - "shape:perf:05215", - "shape:perf:05216", - "shape:perf:05217", - "shape:perf:05218", - "shape:perf:05219", - "shape:perf:05220", - "shape:perf:05221", - "shape:perf:05222", - "shape:perf:05223", - "shape:perf:05224", - "shape:perf:05225", - "shape:perf:05226", - "shape:perf:05227", - "shape:perf:05228", - "shape:perf:05229", - "shape:perf:05230", - "shape:perf:05231", - "shape:perf:05232", - "shape:perf:05233", - "shape:perf:05234", - "shape:perf:05235", - "shape:perf:05236", - "shape:perf:05237", - "shape:perf:05238", - "shape:perf:05239", - "shape:perf:05240", - "shape:perf:05241", - "shape:perf:05242", - "shape:perf:05243", - "shape:perf:05244", - "shape:perf:05245", - "shape:perf:05246", - "shape:perf:05247", - "shape:perf:05248", - "shape:perf:05249", - "shape:perf:05250", - "shape:perf:05251", - "shape:perf:05252", - "shape:perf:05253", - "shape:perf:05254", - "shape:perf:05255", - "shape:perf:05256", - "shape:perf:05257", - "shape:perf:05258", - "shape:perf:05259", - "shape:perf:05260", - "shape:perf:05261", - "shape:perf:05262", - "shape:perf:05263", - "shape:perf:05264", - "shape:perf:05265", - "shape:perf:05266", - "shape:perf:05267", - "shape:perf:05268", - "shape:perf:05269", - "shape:perf:05270", - "shape:perf:05271", - "shape:perf:05272", - "shape:perf:05273", - "shape:perf:05274", - "shape:perf:05275", - "shape:perf:05276", - "shape:perf:05277", - "shape:perf:05278", - "shape:perf:05279", - "shape:perf:05280", - "shape:perf:05281", - "shape:perf:05282", - "shape:perf:05283", - "shape:perf:05284", - "shape:perf:05285", - "shape:perf:05286", - "shape:perf:05287", - "shape:perf:05288", - "shape:perf:05289", - "shape:perf:05290", - "shape:perf:05291", - "shape:perf:05292", - "shape:perf:05293", - "shape:perf:05294", - "shape:perf:05295", - "shape:perf:05296", - "shape:perf:05297", - "shape:perf:05298", - "shape:perf:05299", - "shape:perf:05300", - "shape:perf:05301", - "shape:perf:05302", - "shape:perf:05303", - "shape:perf:05304", - "shape:perf:05305", - "shape:perf:05306", - "shape:perf:05307", - "shape:perf:05308", - "shape:perf:05309", - "shape:perf:05310", - "shape:perf:05311", - "shape:perf:05312", - "shape:perf:05313", - "shape:perf:05314", - "shape:perf:05315", - "shape:perf:05316", - "shape:perf:05317", - "shape:perf:05318", - "shape:perf:05319", - "shape:perf:05320", - "shape:perf:05321", - "shape:perf:05322", - "shape:perf:05323", - "shape:perf:05324", - "shape:perf:05325", - "shape:perf:05326", - "shape:perf:05327", - "shape:perf:05328", - "shape:perf:05329", - "shape:perf:05330", - "shape:perf:05331", - "shape:perf:05332", - "shape:perf:05333", - "shape:perf:05334", - "shape:perf:05335", - "shape:perf:05336", - "shape:perf:05337", - "shape:perf:05338", - "shape:perf:05339", - "shape:perf:05340", - "shape:perf:05341", - "shape:perf:05342", - "shape:perf:05343", - "shape:perf:05344", - "shape:perf:05345", - "shape:perf:05346", - "shape:perf:05347", - "shape:perf:05348", - "shape:perf:05349", - "shape:perf:05350", - "shape:perf:05351", - "shape:perf:05352", - "shape:perf:05353", - "shape:perf:05354", - "shape:perf:05355", - "shape:perf:05356", - "shape:perf:05357", - "shape:perf:05358", - "shape:perf:05359", - "shape:perf:05360", - "shape:perf:05361", - "shape:perf:05362", - "shape:perf:05363", - "shape:perf:05364", - "shape:perf:05365", - "shape:perf:05366", - "shape:perf:05367", - "shape:perf:05368", - "shape:perf:05369", - "shape:perf:05370", - "shape:perf:05371", - "shape:perf:05372", - "shape:perf:05373", - "shape:perf:05374", - "shape:perf:05375", - "shape:perf:05376", - "shape:perf:05377", - "shape:perf:05378", - "shape:perf:05379", - "shape:perf:05380", - "shape:perf:05381", - "shape:perf:05382", - "shape:perf:05383", - "shape:perf:05384", - "shape:perf:05385", - "shape:perf:05386", - "shape:perf:05387", - "shape:perf:05388", - "shape:perf:05389", - "shape:perf:05390", - "shape:perf:05391", - "shape:perf:05392", - "shape:perf:05393", - "shape:perf:05394", - "shape:perf:05395", - "shape:perf:05396", - "shape:perf:05397", - "shape:perf:05398", - "shape:perf:05399", - "shape:perf:05400", - "shape:perf:05401", - "shape:perf:05402", - "shape:perf:05403", - "shape:perf:05404", - "shape:perf:05405", - "shape:perf:05406", - "shape:perf:05407", - "shape:perf:05408", - "shape:perf:05409", - "shape:perf:05410", - "shape:perf:05411", - "shape:perf:05412", - "shape:perf:05413", - "shape:perf:05414", - "shape:perf:05415", - "shape:perf:05416", - "shape:perf:05417", - "shape:perf:05418", - "shape:perf:05419", - "shape:perf:05420", - "shape:perf:05421", - "shape:perf:05422", - "shape:perf:05423", - "shape:perf:05424", - "shape:perf:05425", - "shape:perf:05426", - "shape:perf:05427", - "shape:perf:05428", - "shape:perf:05429", - "shape:perf:05430", - "shape:perf:05431", - "shape:perf:05432", - "shape:perf:05433", - "shape:perf:05434", - "shape:perf:05435", - "shape:perf:05436", - "shape:perf:05437", - "shape:perf:05438", - "shape:perf:05439", - "shape:perf:05440", - "shape:perf:05441", - "shape:perf:05442", - "shape:perf:05443", - "shape:perf:05444", - "shape:perf:05445", - "shape:perf:05446", - "shape:perf:05447", - "shape:perf:05448", - "shape:perf:05449", - "shape:perf:05450", - "shape:perf:05451", - "shape:perf:05452", - "shape:perf:05453", - "shape:perf:05454", - "shape:perf:05455", - "shape:perf:05456", - "shape:perf:05457", - "shape:perf:05458", - "shape:perf:05459", - "shape:perf:05460", - "shape:perf:05461", - "shape:perf:05462", - "shape:perf:05463", - "shape:perf:05464", - "shape:perf:05465", - "shape:perf:05466", - "shape:perf:05467", - "shape:perf:05468", - "shape:perf:05469", - "shape:perf:05470", - "shape:perf:05471", - "shape:perf:05472", - "shape:perf:05473", - "shape:perf:05474", - "shape:perf:05475", - "shape:perf:05476", - "shape:perf:05477", - "shape:perf:05478", - "shape:perf:05479", - "shape:perf:05480", - "shape:perf:05481", - "shape:perf:05482", - "shape:perf:05483", - "shape:perf:05484", - "shape:perf:05485", - "shape:perf:05486", - "shape:perf:05487", - "shape:perf:05488", - "shape:perf:05489", - "shape:perf:05490", - "shape:perf:05491", - "shape:perf:05492", - "shape:perf:05493", - "shape:perf:05494", - "shape:perf:05495", - "shape:perf:05496", - "shape:perf:05497", - "shape:perf:05498", - "shape:perf:05499", - "shape:perf:05500", - "shape:perf:05501", - "shape:perf:05502", - "shape:perf:05503", - "shape:perf:05504", - "shape:perf:05505", - "shape:perf:05506", - "shape:perf:05507", - "shape:perf:05508", - "shape:perf:05509", - "shape:perf:05510", - "shape:perf:05511", - "shape:perf:05512", - "shape:perf:05513", - "shape:perf:05514", - "shape:perf:05515", - "shape:perf:05516", - "shape:perf:05517", - "shape:perf:05518", - "shape:perf:05519", - "shape:perf:05520", - "shape:perf:05521", - "shape:perf:05522", - "shape:perf:05523", - "shape:perf:05524", - "shape:perf:05525", - "shape:perf:05526", - "shape:perf:05527", - "shape:perf:05528", - "shape:perf:05529", - "shape:perf:05530", - "shape:perf:05531", - "shape:perf:05532", - "shape:perf:05533", - "shape:perf:05534", - "shape:perf:05535", - "shape:perf:05536", - "shape:perf:05537", - "shape:perf:05538", - "shape:perf:05539", - "shape:perf:05540", - "shape:perf:05541", - "shape:perf:05542", - "shape:perf:05543", - "shape:perf:05544", - "shape:perf:05545", - "shape:perf:05546", - "shape:perf:05547", - "shape:perf:05548", - "shape:perf:05549", - "shape:perf:05550", - "shape:perf:05551", - "shape:perf:05552", - "shape:perf:05553", - "shape:perf:05554", - "shape:perf:05555", - "shape:perf:05556", - "shape:perf:05557", - "shape:perf:05558", - "shape:perf:05559", - "shape:perf:05560", - "shape:perf:05561", - "shape:perf:05562", - "shape:perf:05563", - "shape:perf:05564", - "shape:perf:05565", - "shape:perf:05566", - "shape:perf:05567", - "shape:perf:05568", - "shape:perf:05569", - "shape:perf:05570", - "shape:perf:05571", - "shape:perf:05572", - "shape:perf:05573", - "shape:perf:05574", - "shape:perf:05575", - "shape:perf:05576", - "shape:perf:05577", - "shape:perf:05578", - "shape:perf:05579", - "shape:perf:05580", - "shape:perf:05581", - "shape:perf:05582", - "shape:perf:05583", - "shape:perf:05584", - "shape:perf:05585", - "shape:perf:05586", - "shape:perf:05587", - "shape:perf:05588", - "shape:perf:05589", - "shape:perf:05590", - "shape:perf:05591", - "shape:perf:05592", - "shape:perf:05593", - "shape:perf:05594", - "shape:perf:05595", - "shape:perf:05596", - "shape:perf:05597", - "shape:perf:05598", - "shape:perf:05599", - "shape:perf:05600", - "shape:perf:05601", - "shape:perf:05602", - "shape:perf:05603", - "shape:perf:05604", - "shape:perf:05605", - "shape:perf:05606", - "shape:perf:05607", - "shape:perf:05608", - "shape:perf:05609", - "shape:perf:05610", - "shape:perf:05611", - "shape:perf:05612", - "shape:perf:05613", - "shape:perf:05614", - "shape:perf:05615", - "shape:perf:05616", - "shape:perf:05617", - "shape:perf:05618", - "shape:perf:05619", - "shape:perf:05620", - "shape:perf:05621", - "shape:perf:05622", - "shape:perf:05623", - "shape:perf:05624", - "shape:perf:05625", - "shape:perf:05626", - "shape:perf:05627", - "shape:perf:05628", - "shape:perf:05629", - "shape:perf:05630", - "shape:perf:05631", - "shape:perf:05632", - "shape:perf:05633", - "shape:perf:05634", - "shape:perf:05635", - "shape:perf:05636", - "shape:perf:05637", - "shape:perf:05638", - "shape:perf:05639", - "shape:perf:05640", - "shape:perf:05641", - "shape:perf:05642", - "shape:perf:05643", - "shape:perf:05644", - "shape:perf:05645", - "shape:perf:05646", - "shape:perf:05647", - "shape:perf:05648", - "shape:perf:05649", - "shape:perf:05650", - "shape:perf:05651", - "shape:perf:05652", - "shape:perf:05653", - "shape:perf:05654", - "shape:perf:05655", - "shape:perf:05656", - "shape:perf:05657", - "shape:perf:05658", - "shape:perf:05659", - "shape:perf:05660", - "shape:perf:05661", - "shape:perf:05662", - "shape:perf:05663", - "shape:perf:05664", - "shape:perf:05665", - "shape:perf:05666", - "shape:perf:05667", - "shape:perf:05668", - "shape:perf:05669", - "shape:perf:05670", - "shape:perf:05671", - "shape:perf:05672", - "shape:perf:05673", - "shape:perf:05674", - "shape:perf:05675", - "shape:perf:05676", - "shape:perf:05677", - "shape:perf:05678", - "shape:perf:05679", - "shape:perf:05680", - "shape:perf:05681", - "shape:perf:05682", - "shape:perf:05683", - "shape:perf:05684", - "shape:perf:05685", - "shape:perf:05686", - "shape:perf:05687", - "shape:perf:05688", - "shape:perf:05689", - "shape:perf:05690", - "shape:perf:05691", - "shape:perf:05692", - "shape:perf:05693", - "shape:perf:05694", - "shape:perf:05695", - "shape:perf:05696", - "shape:perf:05697", - "shape:perf:05698", - "shape:perf:05699", - "shape:perf:05700", - "shape:perf:05701", - "shape:perf:05702", - "shape:perf:05703", - "shape:perf:05704", - "shape:perf:05705", - "shape:perf:05706", - "shape:perf:05707", - "shape:perf:05708", - "shape:perf:05709", - "shape:perf:05710", - "shape:perf:05711", - "shape:perf:05712", - "shape:perf:05713", - "shape:perf:05714", - "shape:perf:05715", - "shape:perf:05716", - "shape:perf:05717", - "shape:perf:05718", - "shape:perf:05719", - "shape:perf:05720", - "shape:perf:05721", - "shape:perf:05722", - "shape:perf:05723", - "shape:perf:05724", - "shape:perf:05725", - "shape:perf:05726", - "shape:perf:05727", - "shape:perf:05728", - "shape:perf:05729", - "shape:perf:05730", - "shape:perf:05731", - "shape:perf:05732", - "shape:perf:05733", - "shape:perf:05734", - "shape:perf:05735", - "shape:perf:05736", - "shape:perf:05737", - "shape:perf:05738", - "shape:perf:05739", - "shape:perf:05740", - "shape:perf:05741", - "shape:perf:05742", - "shape:perf:05743", - "shape:perf:05744", - "shape:perf:05745", - "shape:perf:05746", - "shape:perf:05747", - "shape:perf:05748", - "shape:perf:05749", - "shape:perf:05750", - "shape:perf:05751", - "shape:perf:05752", - "shape:perf:05753", - "shape:perf:05754", - "shape:perf:05755", - "shape:perf:05756", - "shape:perf:05757", - "shape:perf:05758", - "shape:perf:05759", - "shape:perf:05760", - "shape:perf:05761", - "shape:perf:05762", - "shape:perf:05763", - "shape:perf:05764", - "shape:perf:05765", - "shape:perf:05766", - "shape:perf:05767", - "shape:perf:05768", - "shape:perf:05769", - "shape:perf:05770", - "shape:perf:05771", - "shape:perf:05772", - "shape:perf:05773", - "shape:perf:05774", - "shape:perf:05775", - "shape:perf:05776", - "shape:perf:05777", - "shape:perf:05778", - "shape:perf:05779", - "shape:perf:05780", - "shape:perf:05781", - "shape:perf:05782", - "shape:perf:05783", - "shape:perf:05784", - "shape:perf:05785", - "shape:perf:05786", - "shape:perf:05787", - "shape:perf:05788", - "shape:perf:05789", - "shape:perf:05790", - "shape:perf:05791", - "shape:perf:05792", - "shape:perf:05793", - "shape:perf:05794", - "shape:perf:05795", - "shape:perf:05796", - "shape:perf:05797", - "shape:perf:05798", - "shape:perf:05799", - "shape:perf:05800", - "shape:perf:05801", - "shape:perf:05802", - "shape:perf:05803", - "shape:perf:05804", - "shape:perf:05805", - "shape:perf:05806", - "shape:perf:05807", - "shape:perf:05808", - "shape:perf:05809", - "shape:perf:05810", - "shape:perf:05811", - "shape:perf:05812", - "shape:perf:05813", - "shape:perf:05814", - "shape:perf:05815", - "shape:perf:05816", - "shape:perf:05817", - "shape:perf:05818", - "shape:perf:05819", - "shape:perf:05820", - "shape:perf:05821", - "shape:perf:05822", - "shape:perf:05823", - "shape:perf:05824", - "shape:perf:05825", - "shape:perf:05826", - "shape:perf:05827", - "shape:perf:05828", - "shape:perf:05829", - "shape:perf:05830", - "shape:perf:05831", - "shape:perf:05832", - "shape:perf:05833", - "shape:perf:05834", - "shape:perf:05835", - "shape:perf:05836", - "shape:perf:05837", - "shape:perf:05838", - "shape:perf:05839", - "shape:perf:05840", - "shape:perf:05841", - "shape:perf:05842", - "shape:perf:05843", - "shape:perf:05844", - "shape:perf:05845", - "shape:perf:05846", - "shape:perf:05847", - "shape:perf:05848", - "shape:perf:05849", - "shape:perf:05850", - "shape:perf:05851", - "shape:perf:05852", - "shape:perf:05853", - "shape:perf:05854", - "shape:perf:05855", - "shape:perf:05856", - "shape:perf:05857", - "shape:perf:05858", - "shape:perf:05859", - "shape:perf:05860", - "shape:perf:05861", - "shape:perf:05862", - "shape:perf:05863", - "shape:perf:05864", - "shape:perf:05865", - "shape:perf:05866", - "shape:perf:05867", - "shape:perf:05868", - "shape:perf:05869", - "shape:perf:05870", - "shape:perf:05871", - "shape:perf:05872", - "shape:perf:05873", - "shape:perf:05874", - "shape:perf:05875", - "shape:perf:05876", - "shape:perf:05877", - "shape:perf:05878", - "shape:perf:05879", - "shape:perf:05880", - "shape:perf:05881", - "shape:perf:05882", - "shape:perf:05883", - "shape:perf:05884", - "shape:perf:05885", - "shape:perf:05886", - "shape:perf:05887", - "shape:perf:05888", - "shape:perf:05889", - "shape:perf:05890", - "shape:perf:05891", - "shape:perf:05892", - "shape:perf:05893", - "shape:perf:05894", - "shape:perf:05895", - "shape:perf:05896", - "shape:perf:05897", - "shape:perf:05898", - "shape:perf:05899", - "shape:perf:05900", - "shape:perf:05901", - "shape:perf:05902", - "shape:perf:05903", - "shape:perf:05904", - "shape:perf:05905", - "shape:perf:05906", - "shape:perf:05907", - "shape:perf:05908", - "shape:perf:05909", - "shape:perf:05910", - "shape:perf:05911", - "shape:perf:05912", - "shape:perf:05913", - "shape:perf:05914", - "shape:perf:05915", - "shape:perf:05916", - "shape:perf:05917", - "shape:perf:05918", - "shape:perf:05919", - "shape:perf:05920", - "shape:perf:05921", - "shape:perf:05922", - "shape:perf:05923", - "shape:perf:05924", - "shape:perf:05925", - "shape:perf:05926", - "shape:perf:05927", - "shape:perf:05928", - "shape:perf:05929", - "shape:perf:05930", - "shape:perf:05931", - "shape:perf:05932", - "shape:perf:05933", - "shape:perf:05934", - "shape:perf:05935", - "shape:perf:05936", - "shape:perf:05937", - "shape:perf:05938", - "shape:perf:05939", - "shape:perf:05940", - "shape:perf:05941", - "shape:perf:05942", - "shape:perf:05943", - "shape:perf:05944", - "shape:perf:05945", - "shape:perf:05946", - "shape:perf:05947", - "shape:perf:05948", - "shape:perf:05949", - "shape:perf:05950", - "shape:perf:05951", - "shape:perf:05952", - "shape:perf:05953", - "shape:perf:05954", - "shape:perf:05955", - "shape:perf:05956", - "shape:perf:05957", - "shape:perf:05958", - "shape:perf:05959", - "shape:perf:05960", - "shape:perf:05961", - "shape:perf:05962", - "shape:perf:05963", - "shape:perf:05964", - "shape:perf:05965", - "shape:perf:05966", - "shape:perf:05967", - "shape:perf:05968", - "shape:perf:05969", - "shape:perf:05970", - "shape:perf:05971", - "shape:perf:05972", - "shape:perf:05973", - "shape:perf:05974", - "shape:perf:05975", - "shape:perf:05976", - "shape:perf:05977", - "shape:perf:05978", - "shape:perf:05979", - "shape:perf:05980", - "shape:perf:05981", - "shape:perf:05982", - "shape:perf:05983", - "shape:perf:05984", - "shape:perf:05985", - "shape:perf:05986", - "shape:perf:05987", - "shape:perf:05988", - "shape:perf:05989", - "shape:perf:05990", - "shape:perf:05991", - "shape:perf:05992", - "shape:perf:05993", - "shape:perf:05994", - "shape:perf:05995", - "shape:perf:05996", - "shape:perf:05997", - "shape:perf:05998", - "shape:perf:05999", - "shape:perf:06000", - "shape:perf:06001", - "shape:perf:06002", - "shape:perf:06003", - "shape:perf:06004", - "shape:perf:06005", - "shape:perf:06006", - "shape:perf:06007", - "shape:perf:06008", - "shape:perf:06009", - "shape:perf:06010", - "shape:perf:06011", - "shape:perf:06012", - "shape:perf:06013", - "shape:perf:06014", - "shape:perf:06015", - "shape:perf:06016", - "shape:perf:06017", - "shape:perf:06018", - "shape:perf:06019", - "shape:perf:06020", - "shape:perf:06021", - "shape:perf:06022", - "shape:perf:06023", - "shape:perf:06024", - "shape:perf:06025", - "shape:perf:06026", - "shape:perf:06027", - "shape:perf:06028", - "shape:perf:06029", - "shape:perf:06030", - "shape:perf:06031", - "shape:perf:06032", - "shape:perf:06033", - "shape:perf:06034", - "shape:perf:06035", - "shape:perf:06036", - "shape:perf:06037", - "shape:perf:06038", - "shape:perf:06039", - "shape:perf:06040", - "shape:perf:06041", - "shape:perf:06042", - "shape:perf:06043", - "shape:perf:06044", - "shape:perf:06045", - "shape:perf:06046", - "shape:perf:06047", - "shape:perf:06048", - "shape:perf:06049", - "shape:perf:06050", - "shape:perf:06051", - "shape:perf:06052", - "shape:perf:06053", - "shape:perf:06054", - "shape:perf:06055", - "shape:perf:06056", - "shape:perf:06057", - "shape:perf:06058", - "shape:perf:06059", - "shape:perf:06060", - "shape:perf:06061", - "shape:perf:06062", - "shape:perf:06063", - "shape:perf:06064", - "shape:perf:06065", - "shape:perf:06066", - "shape:perf:06067", - "shape:perf:06068", - "shape:perf:06069", - "shape:perf:06070", - "shape:perf:06071", - "shape:perf:06072", - "shape:perf:06073", - "shape:perf:06074", - "shape:perf:06075", - "shape:perf:06076", - "shape:perf:06077", - "shape:perf:06078", - "shape:perf:06079", - "shape:perf:06080", - "shape:perf:06081", - "shape:perf:06082", - "shape:perf:06083", - "shape:perf:06084", - "shape:perf:06085", - "shape:perf:06086", - "shape:perf:06087", - "shape:perf:06088", - "shape:perf:06089", - "shape:perf:06090", - "shape:perf:06091", - "shape:perf:06092", - "shape:perf:06093", - "shape:perf:06094", - "shape:perf:06095", - "shape:perf:06096", - "shape:perf:06097", - "shape:perf:06098", - "shape:perf:06099", - "shape:perf:06100", - "shape:perf:06101", - "shape:perf:06102", - "shape:perf:06103", - "shape:perf:06104", - "shape:perf:06105", - "shape:perf:06106", - "shape:perf:06107", - "shape:perf:06108", - "shape:perf:06109", - "shape:perf:06110", - "shape:perf:06111", - "shape:perf:06112", - "shape:perf:06113", - "shape:perf:06114", - "shape:perf:06115", - "shape:perf:06116", - "shape:perf:06117", - "shape:perf:06118", - "shape:perf:06119", - "shape:perf:06120", - "shape:perf:06121", - "shape:perf:06122", - "shape:perf:06123", - "shape:perf:06124", - "shape:perf:06125", - "shape:perf:06126", - "shape:perf:06127", - "shape:perf:06128", - "shape:perf:06129", - "shape:perf:06130", - "shape:perf:06131", - "shape:perf:06132", - "shape:perf:06133", - "shape:perf:06134", - "shape:perf:06135", - "shape:perf:06136", - "shape:perf:06137", - "shape:perf:06138", - "shape:perf:06139", - "shape:perf:06140", - "shape:perf:06141", - "shape:perf:06142", - "shape:perf:06143", - "shape:perf:06144", - "shape:perf:06145", - "shape:perf:06146", - "shape:perf:06147", - "shape:perf:06148", - "shape:perf:06149", - "shape:perf:06150", - "shape:perf:06151", - "shape:perf:06152", - "shape:perf:06153", - "shape:perf:06154", - "shape:perf:06155", - "shape:perf:06156", - "shape:perf:06157", - "shape:perf:06158", - "shape:perf:06159", - "shape:perf:06160", - "shape:perf:06161", - "shape:perf:06162", - "shape:perf:06163", - "shape:perf:06164", - "shape:perf:06165", - "shape:perf:06166", - "shape:perf:06167", - "shape:perf:06168", - "shape:perf:06169", - "shape:perf:06170", - "shape:perf:06171", - "shape:perf:06172", - "shape:perf:06173", - "shape:perf:06174", - "shape:perf:06175", - "shape:perf:06176", - "shape:perf:06177", - "shape:perf:06178", - "shape:perf:06179", - "shape:perf:06180", - "shape:perf:06181", - "shape:perf:06182", - "shape:perf:06183", - "shape:perf:06184", - "shape:perf:06185", - "shape:perf:06186", - "shape:perf:06187", - "shape:perf:06188", - "shape:perf:06189", - "shape:perf:06190", - "shape:perf:06191", - "shape:perf:06192", - "shape:perf:06193", - "shape:perf:06194", - "shape:perf:06195", - "shape:perf:06196", - "shape:perf:06197", - "shape:perf:06198", - "shape:perf:06199", - "shape:perf:06200", - "shape:perf:06201", - "shape:perf:06202", - "shape:perf:06203", - "shape:perf:06204", - "shape:perf:06205", - "shape:perf:06206", - "shape:perf:06207", - "shape:perf:06208", - "shape:perf:06209", - "shape:perf:06210", - "shape:perf:06211", - "shape:perf:06212", - "shape:perf:06213", - "shape:perf:06214", - "shape:perf:06215", - "shape:perf:06216", - "shape:perf:06217", - "shape:perf:06218", - "shape:perf:06219", - "shape:perf:06220", - "shape:perf:06221", - "shape:perf:06222", - "shape:perf:06223", - "shape:perf:06224", - "shape:perf:06225", - "shape:perf:06226", - "shape:perf:06227", - "shape:perf:06228", - "shape:perf:06229", - "shape:perf:06230", - "shape:perf:06231", - "shape:perf:06232", - "shape:perf:06233", - "shape:perf:06234", - "shape:perf:06235", - "shape:perf:06236", - "shape:perf:06237", - "shape:perf:06238", - "shape:perf:06239", - "shape:perf:06240", - "shape:perf:06241", - "shape:perf:06242", - "shape:perf:06243", - "shape:perf:06244", - "shape:perf:06245", - "shape:perf:06246", - "shape:perf:06247", - "shape:perf:06248", - "shape:perf:06249", - "shape:perf:06250", - "shape:perf:06251", - "shape:perf:06252", - "shape:perf:06253", - "shape:perf:06254", - "shape:perf:06255", - "shape:perf:06256", - "shape:perf:06257", - "shape:perf:06258", - "shape:perf:06259", - "shape:perf:06260", - "shape:perf:06261", - "shape:perf:06262", - "shape:perf:06263", - "shape:perf:06264", - "shape:perf:06265", - "shape:perf:06266", - "shape:perf:06267", - "shape:perf:06268", - "shape:perf:06269", - "shape:perf:06270", - "shape:perf:06271", - "shape:perf:06272", - "shape:perf:06273", - "shape:perf:06274", - "shape:perf:06275", - "shape:perf:06276", - "shape:perf:06277", - "shape:perf:06278", - "shape:perf:06279", - "shape:perf:06280", - "shape:perf:06281", - "shape:perf:06282", - "shape:perf:06283", - "shape:perf:06284", - "shape:perf:06285", - "shape:perf:06286", - "shape:perf:06287", - "shape:perf:06288", - "shape:perf:06289", - "shape:perf:06290", - "shape:perf:06291", - "shape:perf:06292", - "shape:perf:06293", - "shape:perf:06294", - "shape:perf:06295", - "shape:perf:06296", - "shape:perf:06297", - "shape:perf:06298", - "shape:perf:06299", - "shape:perf:06300", - "shape:perf:06301", - "shape:perf:06302", - "shape:perf:06303", - "shape:perf:06304", - "shape:perf:06305", - "shape:perf:06306", - "shape:perf:06307", - "shape:perf:06308", - "shape:perf:06309", - "shape:perf:06310", - "shape:perf:06311", - "shape:perf:06312", - "shape:perf:06313", - "shape:perf:06314", - "shape:perf:06315", - "shape:perf:06316", - "shape:perf:06317", - "shape:perf:06318", - "shape:perf:06319", - "shape:perf:06320", - "shape:perf:06321", - "shape:perf:06322", - "shape:perf:06323", - "shape:perf:06324", - "shape:perf:06325", - "shape:perf:06326", - "shape:perf:06327", - "shape:perf:06328", - "shape:perf:06329", - "shape:perf:06330", - "shape:perf:06331", - "shape:perf:06332", - "shape:perf:06333", - "shape:perf:06334", - "shape:perf:06335", - "shape:perf:06336", - "shape:perf:06337", - "shape:perf:06338", - "shape:perf:06339", - "shape:perf:06340", - "shape:perf:06341", - "shape:perf:06342", - "shape:perf:06343", - "shape:perf:06344", - "shape:perf:06345", - "shape:perf:06346", - "shape:perf:06347", - "shape:perf:06348", - "shape:perf:06349", - "shape:perf:06350", - "shape:perf:06351", - "shape:perf:06352", - "shape:perf:06353", - "shape:perf:06354", - "shape:perf:06355", - "shape:perf:06356", - "shape:perf:06357", - "shape:perf:06358", - "shape:perf:06359", - "shape:perf:06360", - "shape:perf:06361", - "shape:perf:06362", - "shape:perf:06363", - "shape:perf:06364", - "shape:perf:06365", - "shape:perf:06366", - "shape:perf:06367", - "shape:perf:06368", - "shape:perf:06369", - "shape:perf:06370", - "shape:perf:06371", - "shape:perf:06372", - "shape:perf:06373", - "shape:perf:06374", - "shape:perf:06375", - "shape:perf:06376", - "shape:perf:06377", - "shape:perf:06378", - "shape:perf:06379", - "shape:perf:06380", - "shape:perf:06381", - "shape:perf:06382", - "shape:perf:06383", - "shape:perf:06384", - "shape:perf:06385", - "shape:perf:06386", - "shape:perf:06387", - "shape:perf:06388", - "shape:perf:06389", - "shape:perf:06390", - "shape:perf:06391", - "shape:perf:06392", - "shape:perf:06393", - "shape:perf:06394", - "shape:perf:06395", - "shape:perf:06396", - "shape:perf:06397", - "shape:perf:06398", - "shape:perf:06399", - "shape:perf:06400", - "shape:perf:06401", - "shape:perf:06402", - "shape:perf:06403", - "shape:perf:06404", - "shape:perf:06405", - "shape:perf:06406", - "shape:perf:06407", - "shape:perf:06408", - "shape:perf:06409", - "shape:perf:06410", - "shape:perf:06411", - "shape:perf:06412", - "shape:perf:06413", - "shape:perf:06414", - "shape:perf:06415", - "shape:perf:06416", - "shape:perf:06417", - "shape:perf:06418", - "shape:perf:06419", - "shape:perf:06420", - "shape:perf:06421", - "shape:perf:06422", - "shape:perf:06423", - "shape:perf:06424", - "shape:perf:06425", - "shape:perf:06426", - "shape:perf:06427", - "shape:perf:06428", - "shape:perf:06429", - "shape:perf:06430", - "shape:perf:06431", - "shape:perf:06432", - "shape:perf:06433", - "shape:perf:06434", - "shape:perf:06435", - "shape:perf:06436", - "shape:perf:06437", - "shape:perf:06438", - "shape:perf:06439", - "shape:perf:06440", - "shape:perf:06441", - "shape:perf:06442", - "shape:perf:06443", - "shape:perf:06444", - "shape:perf:06445", - "shape:perf:06446", - "shape:perf:06447", - "shape:perf:06448", - "shape:perf:06449", - "shape:perf:06450", - "shape:perf:06451", - "shape:perf:06452", - "shape:perf:06453", - "shape:perf:06454", - "shape:perf:06455", - "shape:perf:06456", - "shape:perf:06457", - "shape:perf:06458", - "shape:perf:06459", - "shape:perf:06460", - "shape:perf:06461", - "shape:perf:06462", - "shape:perf:06463", - "shape:perf:06464", - "shape:perf:06465", - "shape:perf:06466", - "shape:perf:06467", - "shape:perf:06468", - "shape:perf:06469", - "shape:perf:06470", - "shape:perf:06471", - "shape:perf:06472", - "shape:perf:06473", - "shape:perf:06474", - "shape:perf:06475", - "shape:perf:06476", - "shape:perf:06477", - "shape:perf:06478", - "shape:perf:06479", - "shape:perf:06480", - "shape:perf:06481", - "shape:perf:06482", - "shape:perf:06483", - "shape:perf:06484", - "shape:perf:06485", - "shape:perf:06486", - "shape:perf:06487", - "shape:perf:06488", - "shape:perf:06489", - "shape:perf:06490", - "shape:perf:06491", - "shape:perf:06492", - "shape:perf:06493", - "shape:perf:06494", - "shape:perf:06495", - "shape:perf:06496", - "shape:perf:06497", - "shape:perf:06498", - "shape:perf:06499", - "shape:perf:06500", - "shape:perf:06501", - "shape:perf:06502", - "shape:perf:06503", - "shape:perf:06504", - "shape:perf:06505", - "shape:perf:06506", - "shape:perf:06507", - "shape:perf:06508", - "shape:perf:06509", - "shape:perf:06510", - "shape:perf:06511", - "shape:perf:06512", - "shape:perf:06513", - "shape:perf:06514", - "shape:perf:06515", - "shape:perf:06516", - "shape:perf:06517", - "shape:perf:06518", - "shape:perf:06519", - "shape:perf:06520", - "shape:perf:06521", - "shape:perf:06522", - "shape:perf:06523", - "shape:perf:06524", - "shape:perf:06525", - "shape:perf:06526", - "shape:perf:06527", - "shape:perf:06528", - "shape:perf:06529", - "shape:perf:06530", - "shape:perf:06531", - "shape:perf:06532", - "shape:perf:06533", - "shape:perf:06534", - "shape:perf:06535", - "shape:perf:06536", - "shape:perf:06537", - "shape:perf:06538", - "shape:perf:06539", - "shape:perf:06540", - "shape:perf:06541", - "shape:perf:06542", - "shape:perf:06543", - "shape:perf:06544", - "shape:perf:06545", - "shape:perf:06546", - "shape:perf:06547", - "shape:perf:06548", - "shape:perf:06549", - "shape:perf:06550", - "shape:perf:06551", - "shape:perf:06552", - "shape:perf:06553", - "shape:perf:06554", - "shape:perf:06555", - "shape:perf:06556", - "shape:perf:06557", - "shape:perf:06558", - "shape:perf:06559", - "shape:perf:06560", - "shape:perf:06561", - "shape:perf:06562", - "shape:perf:06563", - "shape:perf:06564", - "shape:perf:06565", - "shape:perf:06566", - "shape:perf:06567", - "shape:perf:06568", - "shape:perf:06569", - "shape:perf:06570", - "shape:perf:06571", - "shape:perf:06572", - "shape:perf:06573", - "shape:perf:06574", - "shape:perf:06575", - "shape:perf:06576", - "shape:perf:06577", - "shape:perf:06578", - "shape:perf:06579", - "shape:perf:06580", - "shape:perf:06581", - "shape:perf:06582", - "shape:perf:06583", - "shape:perf:06584", - "shape:perf:06585", - "shape:perf:06586", - "shape:perf:06587", - "shape:perf:06588", - "shape:perf:06589", - "shape:perf:06590", - "shape:perf:06591", - "shape:perf:06592", - "shape:perf:06593", - "shape:perf:06594", - "shape:perf:06595", - "shape:perf:06596", - "shape:perf:06597", - "shape:perf:06598", - "shape:perf:06599", - "shape:perf:06600", - "shape:perf:06601", - "shape:perf:06602", - "shape:perf:06603", - "shape:perf:06604", - "shape:perf:06605", - "shape:perf:06606", - "shape:perf:06607", - "shape:perf:06608", - "shape:perf:06609", - "shape:perf:06610", - "shape:perf:06611", - "shape:perf:06612", - "shape:perf:06613", - "shape:perf:06614", - "shape:perf:06615", - "shape:perf:06616", - "shape:perf:06617", - "shape:perf:06618", - "shape:perf:06619", - "shape:perf:06620", - "shape:perf:06621", - "shape:perf:06622", - "shape:perf:06623", - "shape:perf:06624", - "shape:perf:06625", - "shape:perf:06626", - "shape:perf:06627", - "shape:perf:06628", - "shape:perf:06629", - "shape:perf:06630", - "shape:perf:06631", - "shape:perf:06632", - "shape:perf:06633", - "shape:perf:06634", - "shape:perf:06635", - "shape:perf:06636", - "shape:perf:06637", - "shape:perf:06638", - "shape:perf:06639", - "shape:perf:06640", - "shape:perf:06641", - "shape:perf:06642", - "shape:perf:06643", - "shape:perf:06644", - "shape:perf:06645", - "shape:perf:06646", - "shape:perf:06647", - "shape:perf:06648", - "shape:perf:06649", - "shape:perf:06650", - "shape:perf:06651", - "shape:perf:06652", - "shape:perf:06653", - "shape:perf:06654", - "shape:perf:06655", - "shape:perf:06656", - "shape:perf:06657", - "shape:perf:06658", - "shape:perf:06659", - "shape:perf:06660", - "shape:perf:06661", - "shape:perf:06662", - "shape:perf:06663", - "shape:perf:06664", - "shape:perf:06665", - "shape:perf:06666", - "shape:perf:06667", - "shape:perf:06668", - "shape:perf:06669", - "shape:perf:06670", - "shape:perf:06671", - "shape:perf:06672", - "shape:perf:06673", - "shape:perf:06674", - "shape:perf:06675", - "shape:perf:06676", - "shape:perf:06677", - "shape:perf:06678", - "shape:perf:06679", - "shape:perf:06680", - "shape:perf:06681", - "shape:perf:06682", - "shape:perf:06683", - "shape:perf:06684", - "shape:perf:06685", - "shape:perf:06686", - "shape:perf:06687", - "shape:perf:06688", - "shape:perf:06689", - "shape:perf:06690", - "shape:perf:06691", - "shape:perf:06692", - "shape:perf:06693", - "shape:perf:06694", - "shape:perf:06695", - "shape:perf:06696", - "shape:perf:06697", - "shape:perf:06698", - "shape:perf:06699", - "shape:perf:06700", - "shape:perf:06701", - "shape:perf:06702", - "shape:perf:06703", - "shape:perf:06704", - "shape:perf:06705", - "shape:perf:06706", - "shape:perf:06707", - "shape:perf:06708", - "shape:perf:06709", - "shape:perf:06710", - "shape:perf:06711", - "shape:perf:06712", - "shape:perf:06713", - "shape:perf:06714", - "shape:perf:06715", - "shape:perf:06716", - "shape:perf:06717", - "shape:perf:06718", - "shape:perf:06719", - "shape:perf:06720", - "shape:perf:06721", - "shape:perf:06722", - "shape:perf:06723", - "shape:perf:06724", - "shape:perf:06725", - "shape:perf:06726", - "shape:perf:06727", - "shape:perf:06728", - "shape:perf:06729", - "shape:perf:06730", - "shape:perf:06731", - "shape:perf:06732", - "shape:perf:06733", - "shape:perf:06734", - "shape:perf:06735", - "shape:perf:06736", - "shape:perf:06737", - "shape:perf:06738", - "shape:perf:06739", - "shape:perf:06740", - "shape:perf:06741", - "shape:perf:06742", - "shape:perf:06743", - "shape:perf:06744", - "shape:perf:06745", - "shape:perf:06746", - "shape:perf:06747", - "shape:perf:06748", - "shape:perf:06749", - "shape:perf:06750", - "shape:perf:06751", - "shape:perf:06752", - "shape:perf:06753", - "shape:perf:06754", - "shape:perf:06755", - "shape:perf:06756", - "shape:perf:06757", - "shape:perf:06758", - "shape:perf:06759", - "shape:perf:06760", - "shape:perf:06761", - "shape:perf:06762", - "shape:perf:06763", - "shape:perf:06764", - "shape:perf:06765", - "shape:perf:06766", - "shape:perf:06767", - "shape:perf:06768", - "shape:perf:06769", - "shape:perf:06770", - "shape:perf:06771", - "shape:perf:06772", - "shape:perf:06773", - "shape:perf:06774", - "shape:perf:06775", - "shape:perf:06776", - "shape:perf:06777", - "shape:perf:06778", - "shape:perf:06779", - "shape:perf:06780", - "shape:perf:06781", - "shape:perf:06782", - "shape:perf:06783", - "shape:perf:06784", - "shape:perf:06785", - "shape:perf:06786", - "shape:perf:06787", - "shape:perf:06788", - "shape:perf:06789", - "shape:perf:06790", - "shape:perf:06791", - "shape:perf:06792", - "shape:perf:06793", - "shape:perf:06794", - "shape:perf:06795", - "shape:perf:06796", - "shape:perf:06797", - "shape:perf:06798", - "shape:perf:06799", - "shape:perf:06800", - "shape:perf:06801", - "shape:perf:06802", - "shape:perf:06803", - "shape:perf:06804", - "shape:perf:06805", - "shape:perf:06806", - "shape:perf:06807", - "shape:perf:06808", - "shape:perf:06809", - "shape:perf:06810", - "shape:perf:06811", - "shape:perf:06812", - "shape:perf:06813", - "shape:perf:06814", - "shape:perf:06815", - "shape:perf:06816", - "shape:perf:06817", - "shape:perf:06818", - "shape:perf:06819", - "shape:perf:06820", - "shape:perf:06821", - "shape:perf:06822", - "shape:perf:06823", - "shape:perf:06824", - "shape:perf:06825", - "shape:perf:06826", - "shape:perf:06827", - "shape:perf:06828", - "shape:perf:06829", - "shape:perf:06830", - "shape:perf:06831", - "shape:perf:06832", - "shape:perf:06833", - "shape:perf:06834", - "shape:perf:06835", - "shape:perf:06836", - "shape:perf:06837", - "shape:perf:06838", - "shape:perf:06839", - "shape:perf:06840", - "shape:perf:06841", - "shape:perf:06842", - "shape:perf:06843", - "shape:perf:06844", - "shape:perf:06845", - "shape:perf:06846", - "shape:perf:06847", - "shape:perf:06848", - "shape:perf:06849", - "shape:perf:06850", - "shape:perf:06851", - "shape:perf:06852", - "shape:perf:06853", - "shape:perf:06854", - "shape:perf:06855", - "shape:perf:06856", - "shape:perf:06857", - "shape:perf:06858", - "shape:perf:06859", - "shape:perf:06860", - "shape:perf:06861", - "shape:perf:06862", - "shape:perf:06863", - "shape:perf:06864", - "shape:perf:06865", - "shape:perf:06866", - "shape:perf:06867", - "shape:perf:06868", - "shape:perf:06869", - "shape:perf:06870", - "shape:perf:06871", - "shape:perf:06872", - "shape:perf:06873", - "shape:perf:06874", - "shape:perf:06875", - "shape:perf:06876", - "shape:perf:06877", - "shape:perf:06878", - "shape:perf:06879", - "shape:perf:06880", - "shape:perf:06881", - "shape:perf:06882", - "shape:perf:06883", - "shape:perf:06884", - "shape:perf:06885", - "shape:perf:06886", - "shape:perf:06887", - "shape:perf:06888", - "shape:perf:06889", - "shape:perf:06890", - "shape:perf:06891", - "shape:perf:06892", - "shape:perf:06893", - "shape:perf:06894", - "shape:perf:06895", - "shape:perf:06896", - "shape:perf:06897", - "shape:perf:06898", - "shape:perf:06899", - "shape:perf:06900", - "shape:perf:06901", - "shape:perf:06902", - "shape:perf:06903", - "shape:perf:06904", - "shape:perf:06905", - "shape:perf:06906", - "shape:perf:06907", - "shape:perf:06908", - "shape:perf:06909", - "shape:perf:06910", - "shape:perf:06911", - "shape:perf:06912", - "shape:perf:06913", - "shape:perf:06914", - "shape:perf:06915", - "shape:perf:06916", - "shape:perf:06917", - "shape:perf:06918", - "shape:perf:06919", - "shape:perf:06920", - "shape:perf:06921", - "shape:perf:06922", - "shape:perf:06923", - "shape:perf:06924", - "shape:perf:06925", - "shape:perf:06926", - "shape:perf:06927", - "shape:perf:06928", - "shape:perf:06929", - "shape:perf:06930", - "shape:perf:06931", - "shape:perf:06932", - "shape:perf:06933", - "shape:perf:06934", - "shape:perf:06935", - "shape:perf:06936", - "shape:perf:06937", - "shape:perf:06938", - "shape:perf:06939", - "shape:perf:06940", - "shape:perf:06941", - "shape:perf:06942", - "shape:perf:06943", - "shape:perf:06944", - "shape:perf:06945", - "shape:perf:06946", - "shape:perf:06947", - "shape:perf:06948", - "shape:perf:06949", - "shape:perf:06950", - "shape:perf:06951", - "shape:perf:06952", - "shape:perf:06953", - "shape:perf:06954", - "shape:perf:06955", - "shape:perf:06956", - "shape:perf:06957", - "shape:perf:06958", - "shape:perf:06959", - "shape:perf:06960", - "shape:perf:06961", - "shape:perf:06962", - "shape:perf:06963", - "shape:perf:06964", - "shape:perf:06965", - "shape:perf:06966", - "shape:perf:06967", - "shape:perf:06968", - "shape:perf:06969", - "shape:perf:06970", - "shape:perf:06971", - "shape:perf:06972", - "shape:perf:06973", - "shape:perf:06974", - "shape:perf:06975", - "shape:perf:06976", - "shape:perf:06977", - "shape:perf:06978", - "shape:perf:06979", - "shape:perf:06980", - "shape:perf:06981", - "shape:perf:06982", - "shape:perf:06983", - "shape:perf:06984", - "shape:perf:06985", - "shape:perf:06986", - "shape:perf:06987", - "shape:perf:06988", - "shape:perf:06989", - "shape:perf:06990", - "shape:perf:06991", - "shape:perf:06992", - "shape:perf:06993", - "shape:perf:06994", - "shape:perf:06995", - "shape:perf:06996", - "shape:perf:06997", - "shape:perf:06998", - "shape:perf:06999", - "shape:perf:07000", - "shape:perf:07001", - "shape:perf:07002", - "shape:perf:07003", - "shape:perf:07004", - "shape:perf:07005", - "shape:perf:07006", - "shape:perf:07007", - "shape:perf:07008", - "shape:perf:07009", - "shape:perf:07010", - "shape:perf:07011", - "shape:perf:07012", - "shape:perf:07013", - "shape:perf:07014", - "shape:perf:07015", - "shape:perf:07016", - "shape:perf:07017", - "shape:perf:07018", - "shape:perf:07019", - "shape:perf:07020", - "shape:perf:07021", - "shape:perf:07022", - "shape:perf:07023", - "shape:perf:07024", - "shape:perf:07025", - "shape:perf:07026", - "shape:perf:07027", - "shape:perf:07028", - "shape:perf:07029", - "shape:perf:07030", - "shape:perf:07031", - "shape:perf:07032", - "shape:perf:07033", - "shape:perf:07034", - "shape:perf:07035", - "shape:perf:07036", - "shape:perf:07037", - "shape:perf:07038", - "shape:perf:07039", - "shape:perf:07040", - "shape:perf:07041", - "shape:perf:07042", - "shape:perf:07043", - "shape:perf:07044", - "shape:perf:07045", - "shape:perf:07046", - "shape:perf:07047", - "shape:perf:07048", - "shape:perf:07049", - "shape:perf:07050", - "shape:perf:07051", - "shape:perf:07052", - "shape:perf:07053", - "shape:perf:07054", - "shape:perf:07055", - "shape:perf:07056", - "shape:perf:07057", - "shape:perf:07058", - "shape:perf:07059", - "shape:perf:07060", - "shape:perf:07061", - "shape:perf:07062", - "shape:perf:07063", - "shape:perf:07064", - "shape:perf:07065", - "shape:perf:07066", - "shape:perf:07067", - "shape:perf:07068", - "shape:perf:07069", - "shape:perf:07070", - "shape:perf:07071", - "shape:perf:07072", - "shape:perf:07073", - "shape:perf:07074", - "shape:perf:07075", - "shape:perf:07076", - "shape:perf:07077", - "shape:perf:07078", - "shape:perf:07079", - "shape:perf:07080", - "shape:perf:07081", - "shape:perf:07082", - "shape:perf:07083", - "shape:perf:07084", - "shape:perf:07085", - "shape:perf:07086", - "shape:perf:07087", - "shape:perf:07088", - "shape:perf:07089", - "shape:perf:07090", - "shape:perf:07091", - "shape:perf:07092", - "shape:perf:07093", - "shape:perf:07094", - "shape:perf:07095", - "shape:perf:07096", - "shape:perf:07097", - "shape:perf:07098", - "shape:perf:07099", - "shape:perf:07100", - "shape:perf:07101", - "shape:perf:07102", - "shape:perf:07103", - "shape:perf:07104", - "shape:perf:07105", - "shape:perf:07106", - "shape:perf:07107", - "shape:perf:07108", - "shape:perf:07109", - "shape:perf:07110", - "shape:perf:07111", - "shape:perf:07112", - "shape:perf:07113", - "shape:perf:07114", - "shape:perf:07115", - "shape:perf:07116", - "shape:perf:07117", - "shape:perf:07118", - "shape:perf:07119", - "shape:perf:07120", - "shape:perf:07121", - "shape:perf:07122", - "shape:perf:07123", - "shape:perf:07124", - "shape:perf:07125", - "shape:perf:07126", - "shape:perf:07127", - "shape:perf:07128", - "shape:perf:07129", - "shape:perf:07130", - "shape:perf:07131", - "shape:perf:07132", - "shape:perf:07133", - "shape:perf:07134", - "shape:perf:07135", - "shape:perf:07136", - "shape:perf:07137", - "shape:perf:07138", - "shape:perf:07139", - "shape:perf:07140", - "shape:perf:07141", - "shape:perf:07142", - "shape:perf:07143", - "shape:perf:07144", - "shape:perf:07145", - "shape:perf:07146", - "shape:perf:07147", - "shape:perf:07148", - "shape:perf:07149", - "shape:perf:07150", - "shape:perf:07151", - "shape:perf:07152", - "shape:perf:07153", - "shape:perf:07154", - "shape:perf:07155", - "shape:perf:07156", - "shape:perf:07157", - "shape:perf:07158", - "shape:perf:07159", - "shape:perf:07160", - "shape:perf:07161", - "shape:perf:07162", - "shape:perf:07163", - "shape:perf:07164", - "shape:perf:07165", - "shape:perf:07166", - "shape:perf:07167", - "shape:perf:07168", - "shape:perf:07169", - "shape:perf:07170", - "shape:perf:07171", - "shape:perf:07172", - "shape:perf:07173", - "shape:perf:07174", - "shape:perf:07175", - "shape:perf:07176", - "shape:perf:07177", - "shape:perf:07178", - "shape:perf:07179", - "shape:perf:07180", - "shape:perf:07181", - "shape:perf:07182", - "shape:perf:07183", - "shape:perf:07184", - "shape:perf:07185", - "shape:perf:07186", - "shape:perf:07187", - "shape:perf:07188", - "shape:perf:07189", - "shape:perf:07190", - "shape:perf:07191", - "shape:perf:07192", - "shape:perf:07193", - "shape:perf:07194", - "shape:perf:07195", - "shape:perf:07196", - "shape:perf:07197", - "shape:perf:07198", - "shape:perf:07199", - "shape:perf:07200", - "shape:perf:07201", - "shape:perf:07202", - "shape:perf:07203", - "shape:perf:07204", - "shape:perf:07205", - "shape:perf:07206", - "shape:perf:07207", - "shape:perf:07208", - "shape:perf:07209", - "shape:perf:07210", - "shape:perf:07211", - "shape:perf:07212", - "shape:perf:07213", - "shape:perf:07214", - "shape:perf:07215", - "shape:perf:07216", - "shape:perf:07217", - "shape:perf:07218", - "shape:perf:07219", - "shape:perf:07220", - "shape:perf:07221", - "shape:perf:07222", - "shape:perf:07223", - "shape:perf:07224", - "shape:perf:07225", - "shape:perf:07226", - "shape:perf:07227", - "shape:perf:07228", - "shape:perf:07229", - "shape:perf:07230", - "shape:perf:07231", - "shape:perf:07232", - "shape:perf:07233", - "shape:perf:07234", - "shape:perf:07235", - "shape:perf:07236", - "shape:perf:07237", - "shape:perf:07238", - "shape:perf:07239", - "shape:perf:07240", - "shape:perf:07241", - "shape:perf:07242", - "shape:perf:07243", - "shape:perf:07244", - "shape:perf:07245", - "shape:perf:07246", - "shape:perf:07247", - "shape:perf:07248", - "shape:perf:07249", - "shape:perf:07250", - "shape:perf:07251", - "shape:perf:07252", - "shape:perf:07253", - "shape:perf:07254", - "shape:perf:07255", - "shape:perf:07256", - "shape:perf:07257", - "shape:perf:07258", - "shape:perf:07259", - "shape:perf:07260", - "shape:perf:07261", - "shape:perf:07262", - "shape:perf:07263", - "shape:perf:07264", - "shape:perf:07265", - "shape:perf:07266", - "shape:perf:07267", - "shape:perf:07268", - "shape:perf:07269", - "shape:perf:07270", - "shape:perf:07271", - "shape:perf:07272", - "shape:perf:07273", - "shape:perf:07274", - "shape:perf:07275", - "shape:perf:07276", - "shape:perf:07277", - "shape:perf:07278", - "shape:perf:07279", - "shape:perf:07280", - "shape:perf:07281", - "shape:perf:07282", - "shape:perf:07283", - "shape:perf:07284", - "shape:perf:07285", - "shape:perf:07286", - "shape:perf:07287", - "shape:perf:07288", - "shape:perf:07289", - "shape:perf:07290", - "shape:perf:07291", - "shape:perf:07292", - "shape:perf:07293", - "shape:perf:07294", - "shape:perf:07295", - "shape:perf:07296", - "shape:perf:07297", - "shape:perf:07298", - "shape:perf:07299", - "shape:perf:07300", - "shape:perf:07301", - "shape:perf:07302", - "shape:perf:07303", - "shape:perf:07304", - "shape:perf:07305", - "shape:perf:07306", - "shape:perf:07307", - "shape:perf:07308", - "shape:perf:07309", - "shape:perf:07310", - "shape:perf:07311", - "shape:perf:07312", - "shape:perf:07313", - "shape:perf:07314", - "shape:perf:07315", - "shape:perf:07316", - "shape:perf:07317", - "shape:perf:07318", - "shape:perf:07319", - "shape:perf:07320", - "shape:perf:07321", - "shape:perf:07322", - "shape:perf:07323", - "shape:perf:07324", - "shape:perf:07325", - "shape:perf:07326", - "shape:perf:07327", - "shape:perf:07328", - "shape:perf:07329", - "shape:perf:07330", - "shape:perf:07331", - "shape:perf:07332", - "shape:perf:07333", - "shape:perf:07334", - "shape:perf:07335", - "shape:perf:07336", - "shape:perf:07337", - "shape:perf:07338", - "shape:perf:07339", - "shape:perf:07340", - "shape:perf:07341", - "shape:perf:07342", - "shape:perf:07343", - "shape:perf:07344", - "shape:perf:07345", - "shape:perf:07346", - "shape:perf:07347", - "shape:perf:07348", - "shape:perf:07349", - "shape:perf:07350", - "shape:perf:07351", - "shape:perf:07352", - "shape:perf:07353", - "shape:perf:07354", - "shape:perf:07355", - "shape:perf:07356", - "shape:perf:07357", - "shape:perf:07358", - "shape:perf:07359", - "shape:perf:07360", - "shape:perf:07361", - "shape:perf:07362", - "shape:perf:07363", - "shape:perf:07364", - "shape:perf:07365", - "shape:perf:07366", - "shape:perf:07367", - "shape:perf:07368", - "shape:perf:07369", - "shape:perf:07370", - "shape:perf:07371", - "shape:perf:07372", - "shape:perf:07373", - "shape:perf:07374", - "shape:perf:07375", - "shape:perf:07376", - "shape:perf:07377", - "shape:perf:07378", - "shape:perf:07379", - "shape:perf:07380", - "shape:perf:07381", - "shape:perf:07382", - "shape:perf:07383", - "shape:perf:07384", - "shape:perf:07385", - "shape:perf:07386", - "shape:perf:07387", - "shape:perf:07388", - "shape:perf:07389", - "shape:perf:07390", - "shape:perf:07391", - "shape:perf:07392", - "shape:perf:07393", - "shape:perf:07394", - "shape:perf:07395", - "shape:perf:07396", - "shape:perf:07397", - "shape:perf:07398", - "shape:perf:07399", - "shape:perf:07400", - "shape:perf:07401", - "shape:perf:07402", - "shape:perf:07403", - "shape:perf:07404", - "shape:perf:07405", - "shape:perf:07406", - "shape:perf:07407", - "shape:perf:07408", - "shape:perf:07409", - "shape:perf:07410", - "shape:perf:07411", - "shape:perf:07412", - "shape:perf:07413", - "shape:perf:07414", - "shape:perf:07415", - "shape:perf:07416", - "shape:perf:07417", - "shape:perf:07418", - "shape:perf:07419", - "shape:perf:07420", - "shape:perf:07421", - "shape:perf:07422", - "shape:perf:07423", - "shape:perf:07424", - "shape:perf:07425", - "shape:perf:07426", - "shape:perf:07427", - "shape:perf:07428", - "shape:perf:07429", - "shape:perf:07430", - "shape:perf:07431", - "shape:perf:07432", - "shape:perf:07433", - "shape:perf:07434", - "shape:perf:07435", - "shape:perf:07436", - "shape:perf:07437", - "shape:perf:07438", - "shape:perf:07439", - "shape:perf:07440", - "shape:perf:07441", - "shape:perf:07442", - "shape:perf:07443", - "shape:perf:07444", - "shape:perf:07445", - "shape:perf:07446", - "shape:perf:07447", - "shape:perf:07448", - "shape:perf:07449", - "shape:perf:07450", - "shape:perf:07451", - "shape:perf:07452", - "shape:perf:07453", - "shape:perf:07454", - "shape:perf:07455", - "shape:perf:07456", - "shape:perf:07457", - "shape:perf:07458", - "shape:perf:07459", - "shape:perf:07460", - "shape:perf:07461", - "shape:perf:07462", - "shape:perf:07463", - "shape:perf:07464", - "shape:perf:07465", - "shape:perf:07466", - "shape:perf:07467", - "shape:perf:07468", - "shape:perf:07469", - "shape:perf:07470", - "shape:perf:07471", - "shape:perf:07472", - "shape:perf:07473", - "shape:perf:07474", - "shape:perf:07475", - "shape:perf:07476", - "shape:perf:07477", - "shape:perf:07478", - "shape:perf:07479", - "shape:perf:07480", - "shape:perf:07481", - "shape:perf:07482", - "shape:perf:07483", - "shape:perf:07484", - "shape:perf:07485", - "shape:perf:07486", - "shape:perf:07487", - "shape:perf:07488", - "shape:perf:07489", - "shape:perf:07490", - "shape:perf:07491", - "shape:perf:07492", - "shape:perf:07493", - "shape:perf:07494", - "shape:perf:07495", - "shape:perf:07496", - "shape:perf:07497", - "shape:perf:07498", - "shape:perf:07499", - "shape:perf:07500", - "shape:perf:07501", - "shape:perf:07502", - "shape:perf:07503", - "shape:perf:07504", - "shape:perf:07505", - "shape:perf:07506", - "shape:perf:07507", - "shape:perf:07508", - "shape:perf:07509", - "shape:perf:07510", - "shape:perf:07511", - "shape:perf:07512", - "shape:perf:07513", - "shape:perf:07514", - "shape:perf:07515", - "shape:perf:07516", - "shape:perf:07517", - "shape:perf:07518", - "shape:perf:07519", - "shape:perf:07520", - "shape:perf:07521", - "shape:perf:07522", - "shape:perf:07523", - "shape:perf:07524", - "shape:perf:07525", - "shape:perf:07526", - "shape:perf:07527", - "shape:perf:07528", - "shape:perf:07529", - "shape:perf:07530", - "shape:perf:07531", - "shape:perf:07532", - "shape:perf:07533", - "shape:perf:07534", - "shape:perf:07535", - "shape:perf:07536", - "shape:perf:07537", - "shape:perf:07538", - "shape:perf:07539", - "shape:perf:07540", - "shape:perf:07541", - "shape:perf:07542", - "shape:perf:07543", - "shape:perf:07544", - "shape:perf:07545", - "shape:perf:07546", - "shape:perf:07547", - "shape:perf:07548", - "shape:perf:07549", - "shape:perf:07550", - "shape:perf:07551", - "shape:perf:07552", - "shape:perf:07553", - "shape:perf:07554", - "shape:perf:07555", - "shape:perf:07556", - "shape:perf:07557", - "shape:perf:07558", - "shape:perf:07559", - "shape:perf:07560", - "shape:perf:07561", - "shape:perf:07562", - "shape:perf:07563", - "shape:perf:07564", - "shape:perf:07565", - "shape:perf:07566", - "shape:perf:07567", - "shape:perf:07568", - "shape:perf:07569", - "shape:perf:07570", - "shape:perf:07571", - "shape:perf:07572", - "shape:perf:07573", - "shape:perf:07574", - "shape:perf:07575", - "shape:perf:07576", - "shape:perf:07577", - "shape:perf:07578", - "shape:perf:07579", - "shape:perf:07580", - "shape:perf:07581", - "shape:perf:07582", - "shape:perf:07583", - "shape:perf:07584", - "shape:perf:07585", - "shape:perf:07586", - "shape:perf:07587", - "shape:perf:07588", - "shape:perf:07589", - "shape:perf:07590", - "shape:perf:07591", - "shape:perf:07592", - "shape:perf:07593", - "shape:perf:07594", - "shape:perf:07595", - "shape:perf:07596", - "shape:perf:07597", - "shape:perf:07598", - "shape:perf:07599", - "shape:perf:07600", - "shape:perf:07601", - "shape:perf:07602", - "shape:perf:07603", - "shape:perf:07604", - "shape:perf:07605", - "shape:perf:07606", - "shape:perf:07607", - "shape:perf:07608", - "shape:perf:07609", - "shape:perf:07610", - "shape:perf:07611", - "shape:perf:07612", - "shape:perf:07613", - "shape:perf:07614", - "shape:perf:07615", - "shape:perf:07616", - "shape:perf:07617", - "shape:perf:07618", - "shape:perf:07619", - "shape:perf:07620", - "shape:perf:07621", - "shape:perf:07622", - "shape:perf:07623", - "shape:perf:07624", - "shape:perf:07625", - "shape:perf:07626", - "shape:perf:07627", - "shape:perf:07628", - "shape:perf:07629", - "shape:perf:07630", - "shape:perf:07631", - "shape:perf:07632", - "shape:perf:07633", - "shape:perf:07634", - "shape:perf:07635", - "shape:perf:07636", - "shape:perf:07637", - "shape:perf:07638", - "shape:perf:07639", - "shape:perf:07640", - "shape:perf:07641", - "shape:perf:07642", - "shape:perf:07643", - "shape:perf:07644", - "shape:perf:07645", - "shape:perf:07646", - "shape:perf:07647", - "shape:perf:07648", - "shape:perf:07649", - "shape:perf:07650", - "shape:perf:07651", - "shape:perf:07652", - "shape:perf:07653", - "shape:perf:07654", - "shape:perf:07655", - "shape:perf:07656", - "shape:perf:07657", - "shape:perf:07658", - "shape:perf:07659", - "shape:perf:07660", - "shape:perf:07661", - "shape:perf:07662", - "shape:perf:07663", - "shape:perf:07664", - "shape:perf:07665", - "shape:perf:07666", - "shape:perf:07667", - "shape:perf:07668", - "shape:perf:07669", - "shape:perf:07670", - "shape:perf:07671", - "shape:perf:07672", - "shape:perf:07673", - "shape:perf:07674", - "shape:perf:07675", - "shape:perf:07676", - "shape:perf:07677", - "shape:perf:07678", - "shape:perf:07679", - "shape:perf:07680", - "shape:perf:07681", - "shape:perf:07682", - "shape:perf:07683", - "shape:perf:07684", - "shape:perf:07685", - "shape:perf:07686", - "shape:perf:07687", - "shape:perf:07688", - "shape:perf:07689", - "shape:perf:07690", - "shape:perf:07691", - "shape:perf:07692", - "shape:perf:07693", - "shape:perf:07694", - "shape:perf:07695", - "shape:perf:07696", - "shape:perf:07697", - "shape:perf:07698", - "shape:perf:07699", - "shape:perf:07700", - "shape:perf:07701", - "shape:perf:07702", - "shape:perf:07703", - "shape:perf:07704", - "shape:perf:07705", - "shape:perf:07706", - "shape:perf:07707", - "shape:perf:07708", - "shape:perf:07709", - "shape:perf:07710", - "shape:perf:07711", - "shape:perf:07712", - "shape:perf:07713", - "shape:perf:07714", - "shape:perf:07715", - "shape:perf:07716", - "shape:perf:07717", - "shape:perf:07718", - "shape:perf:07719", - "shape:perf:07720", - "shape:perf:07721", - "shape:perf:07722", - "shape:perf:07723", - "shape:perf:07724", - "shape:perf:07725", - "shape:perf:07726", - "shape:perf:07727", - "shape:perf:07728", - "shape:perf:07729", - "shape:perf:07730", - "shape:perf:07731", - "shape:perf:07732", - "shape:perf:07733", - "shape:perf:07734", - "shape:perf:07735", - "shape:perf:07736", - "shape:perf:07737", - "shape:perf:07738", - "shape:perf:07739", - "shape:perf:07740", - "shape:perf:07741", - "shape:perf:07742", - "shape:perf:07743", - "shape:perf:07744", - "shape:perf:07745", - "shape:perf:07746", - "shape:perf:07747", - "shape:perf:07748", - "shape:perf:07749", - "shape:perf:07750", - "shape:perf:07751", - "shape:perf:07752", - "shape:perf:07753", - "shape:perf:07754", - "shape:perf:07755", - "shape:perf:07756", - "shape:perf:07757", - "shape:perf:07758", - "shape:perf:07759", - "shape:perf:07760", - "shape:perf:07761", - "shape:perf:07762", - "shape:perf:07763", - "shape:perf:07764", - "shape:perf:07765", - "shape:perf:07766", - "shape:perf:07767", - "shape:perf:07768", - "shape:perf:07769", - "shape:perf:07770", - "shape:perf:07771", - "shape:perf:07772", - "shape:perf:07773", - "shape:perf:07774", - "shape:perf:07775", - "shape:perf:07776", - "shape:perf:07777", - "shape:perf:07778", - "shape:perf:07779", - "shape:perf:07780", - "shape:perf:07781", - "shape:perf:07782", - "shape:perf:07783", - "shape:perf:07784", - "shape:perf:07785", - "shape:perf:07786", - "shape:perf:07787", - "shape:perf:07788", - "shape:perf:07789", - "shape:perf:07790", - "shape:perf:07791", - "shape:perf:07792", - "shape:perf:07793", - "shape:perf:07794", - "shape:perf:07795", - "shape:perf:07796", - "shape:perf:07797", - "shape:perf:07798", - "shape:perf:07799", - "shape:perf:07800", - "shape:perf:07801", - "shape:perf:07802", - "shape:perf:07803", - "shape:perf:07804", - "shape:perf:07805", - "shape:perf:07806", - "shape:perf:07807", - "shape:perf:07808", - "shape:perf:07809", - "shape:perf:07810", - "shape:perf:07811", - "shape:perf:07812", - "shape:perf:07813", - "shape:perf:07814", - "shape:perf:07815", - "shape:perf:07816", - "shape:perf:07817", - "shape:perf:07818", - "shape:perf:07819", - "shape:perf:07820", - "shape:perf:07821", - "shape:perf:07822", - "shape:perf:07823", - "shape:perf:07824", - "shape:perf:07825", - "shape:perf:07826", - "shape:perf:07827", - "shape:perf:07828", - "shape:perf:07829", - "shape:perf:07830", - "shape:perf:07831", - "shape:perf:07832", - "shape:perf:07833", - "shape:perf:07834", - "shape:perf:07835", - "shape:perf:07836", - "shape:perf:07837", - "shape:perf:07838", - "shape:perf:07839", - "shape:perf:07840", - "shape:perf:07841", - "shape:perf:07842", - "shape:perf:07843", - "shape:perf:07844", - "shape:perf:07845", - "shape:perf:07846", - "shape:perf:07847", - "shape:perf:07848", - "shape:perf:07849", - "shape:perf:07850", - "shape:perf:07851", - "shape:perf:07852", - "shape:perf:07853", - "shape:perf:07854", - "shape:perf:07855", - "shape:perf:07856", - "shape:perf:07857", - "shape:perf:07858", - "shape:perf:07859", - "shape:perf:07860", - "shape:perf:07861", - "shape:perf:07862", - "shape:perf:07863", - "shape:perf:07864", - "shape:perf:07865", - "shape:perf:07866", - "shape:perf:07867", - "shape:perf:07868", - "shape:perf:07869", - "shape:perf:07870", - "shape:perf:07871", - "shape:perf:07872", - "shape:perf:07873", - "shape:perf:07874", - "shape:perf:07875", - "shape:perf:07876", - "shape:perf:07877", - "shape:perf:07878", - "shape:perf:07879", - "shape:perf:07880", - "shape:perf:07881", - "shape:perf:07882", - "shape:perf:07883", - "shape:perf:07884", - "shape:perf:07885", - "shape:perf:07886", - "shape:perf:07887", - "shape:perf:07888", - "shape:perf:07889", - "shape:perf:07890", - "shape:perf:07891", - "shape:perf:07892", - "shape:perf:07893", - "shape:perf:07894", - "shape:perf:07895", - "shape:perf:07896", - "shape:perf:07897", - "shape:perf:07898", - "shape:perf:07899", - "shape:perf:07900", - "shape:perf:07901", - "shape:perf:07902", - "shape:perf:07903", - "shape:perf:07904", - "shape:perf:07905", - "shape:perf:07906", - "shape:perf:07907", - "shape:perf:07908", - "shape:perf:07909", - "shape:perf:07910", - "shape:perf:07911", - "shape:perf:07912", - "shape:perf:07913", - "shape:perf:07914", - "shape:perf:07915", - "shape:perf:07916", - "shape:perf:07917", - "shape:perf:07918", - "shape:perf:07919", - "shape:perf:07920", - "shape:perf:07921", - "shape:perf:07922", - "shape:perf:07923", - "shape:perf:07924", - "shape:perf:07925", - "shape:perf:07926", - "shape:perf:07927", - "shape:perf:07928", - "shape:perf:07929", - "shape:perf:07930", - "shape:perf:07931", - "shape:perf:07932", - "shape:perf:07933", - "shape:perf:07934", - "shape:perf:07935", - "shape:perf:07936", - "shape:perf:07937", - "shape:perf:07938", - "shape:perf:07939", - "shape:perf:07940", - "shape:perf:07941", - "shape:perf:07942", - "shape:perf:07943", - "shape:perf:07944", - "shape:perf:07945", - "shape:perf:07946", - "shape:perf:07947", - "shape:perf:07948", - "shape:perf:07949", - "shape:perf:07950", - "shape:perf:07951", - "shape:perf:07952", - "shape:perf:07953", - "shape:perf:07954", - "shape:perf:07955", - "shape:perf:07956", - "shape:perf:07957", - "shape:perf:07958", - "shape:perf:07959", - "shape:perf:07960", - "shape:perf:07961", - "shape:perf:07962", - "shape:perf:07963", - "shape:perf:07964", - "shape:perf:07965", - "shape:perf:07966", - "shape:perf:07967", - "shape:perf:07968", - "shape:perf:07969", - "shape:perf:07970", - "shape:perf:07971", - "shape:perf:07972", - "shape:perf:07973", - "shape:perf:07974", - "shape:perf:07975", - "shape:perf:07976", - "shape:perf:07977", - "shape:perf:07978", - "shape:perf:07979", - "shape:perf:07980", - "shape:perf:07981", - "shape:perf:07982", - "shape:perf:07983", - "shape:perf:07984", - "shape:perf:07985", - "shape:perf:07986", - "shape:perf:07987", - "shape:perf:07988", - "shape:perf:07989", - "shape:perf:07990", - "shape:perf:07991", - "shape:perf:07992", - "shape:perf:07993", - "shape:perf:07994", - "shape:perf:07995", - "shape:perf:07996", - "shape:perf:07997", - "shape:perf:07998", - "shape:perf:07999", - "shape:perf:08000", - "shape:perf:08001", - "shape:perf:08002", - "shape:perf:08003", - "shape:perf:08004", - "shape:perf:08005", - "shape:perf:08006", - "shape:perf:08007", - "shape:perf:08008", - "shape:perf:08009", - "shape:perf:08010", - "shape:perf:08011", - "shape:perf:08012", - "shape:perf:08013", - "shape:perf:08014", - "shape:perf:08015", - "shape:perf:08016", - "shape:perf:08017", - "shape:perf:08018", - "shape:perf:08019", - "shape:perf:08020", - "shape:perf:08021", - "shape:perf:08022", - "shape:perf:08023", - "shape:perf:08024", - "shape:perf:08025", - "shape:perf:08026", - "shape:perf:08027", - "shape:perf:08028", - "shape:perf:08029", - "shape:perf:08030", - "shape:perf:08031", - "shape:perf:08032", - "shape:perf:08033", - "shape:perf:08034", - "shape:perf:08035", - "shape:perf:08036", - "shape:perf:08037", - "shape:perf:08038", - "shape:perf:08039", - "shape:perf:08040", - "shape:perf:08041", - "shape:perf:08042", - "shape:perf:08043", - "shape:perf:08044", - "shape:perf:08045", - "shape:perf:08046", - "shape:perf:08047", - "shape:perf:08048", - "shape:perf:08049", - "shape:perf:08050", - "shape:perf:08051", - "shape:perf:08052", - "shape:perf:08053", - "shape:perf:08054", - "shape:perf:08055", - "shape:perf:08056", - "shape:perf:08057", - "shape:perf:08058", - "shape:perf:08059", - "shape:perf:08060", - "shape:perf:08061", - "shape:perf:08062", - "shape:perf:08063", - "shape:perf:08064", - "shape:perf:08065", - "shape:perf:08066", - "shape:perf:08067", - "shape:perf:08068", - "shape:perf:08069", - "shape:perf:08070", - "shape:perf:08071", - "shape:perf:08072", - "shape:perf:08073", - "shape:perf:08074", - "shape:perf:08075", - "shape:perf:08076", - "shape:perf:08077", - "shape:perf:08078", - "shape:perf:08079", - "shape:perf:08080", - "shape:perf:08081", - "shape:perf:08082", - "shape:perf:08083", - "shape:perf:08084", - "shape:perf:08085", - "shape:perf:08086", - "shape:perf:08087", - "shape:perf:08088", - "shape:perf:08089", - "shape:perf:08090", - "shape:perf:08091", - "shape:perf:08092", - "shape:perf:08093", - "shape:perf:08094", - "shape:perf:08095", - "shape:perf:08096", - "shape:perf:08097", - "shape:perf:08098", - "shape:perf:08099", - "shape:perf:08100", - "shape:perf:08101", - "shape:perf:08102", - "shape:perf:08103", - "shape:perf:08104", - "shape:perf:08105", - "shape:perf:08106", - "shape:perf:08107", - "shape:perf:08108", - "shape:perf:08109", - "shape:perf:08110", - "shape:perf:08111", - "shape:perf:08112", - "shape:perf:08113", - "shape:perf:08114", - "shape:perf:08115", - "shape:perf:08116", - "shape:perf:08117", - "shape:perf:08118", - "shape:perf:08119", - "shape:perf:08120", - "shape:perf:08121", - "shape:perf:08122", - "shape:perf:08123", - "shape:perf:08124", - "shape:perf:08125", - "shape:perf:08126", - "shape:perf:08127", - "shape:perf:08128", - "shape:perf:08129", - "shape:perf:08130", - "shape:perf:08131", - "shape:perf:08132", - "shape:perf:08133", - "shape:perf:08134", - "shape:perf:08135", - "shape:perf:08136", - "shape:perf:08137", - "shape:perf:08138", - "shape:perf:08139", - "shape:perf:08140", - "shape:perf:08141", - "shape:perf:08142", - "shape:perf:08143", - "shape:perf:08144", - "shape:perf:08145", - "shape:perf:08146", - "shape:perf:08147", - "shape:perf:08148", - "shape:perf:08149", - "shape:perf:08150", - "shape:perf:08151", - "shape:perf:08152", - "shape:perf:08153", - "shape:perf:08154", - "shape:perf:08155", - "shape:perf:08156", - "shape:perf:08157", - "shape:perf:08158", - "shape:perf:08159", - "shape:perf:08160", - "shape:perf:08161", - "shape:perf:08162", - "shape:perf:08163", - "shape:perf:08164", - "shape:perf:08165", - "shape:perf:08166", - "shape:perf:08167", - "shape:perf:08168", - "shape:perf:08169", - "shape:perf:08170", - "shape:perf:08171", - "shape:perf:08172", - "shape:perf:08173", - "shape:perf:08174", - "shape:perf:08175", - "shape:perf:08176", - "shape:perf:08177", - "shape:perf:08178", - "shape:perf:08179", - "shape:perf:08180", - "shape:perf:08181", - "shape:perf:08182", - "shape:perf:08183", - "shape:perf:08184", - "shape:perf:08185", - "shape:perf:08186", - "shape:perf:08187", - "shape:perf:08188", - "shape:perf:08189", - "shape:perf:08190", - "shape:perf:08191", - "shape:perf:08192", - "shape:perf:08193", - "shape:perf:08194", - "shape:perf:08195", - "shape:perf:08196", - "shape:perf:08197", - "shape:perf:08198", - "shape:perf:08199", - "shape:perf:08200", - "shape:perf:08201", - "shape:perf:08202", - "shape:perf:08203", - "shape:perf:08204", - "shape:perf:08205", - "shape:perf:08206", - "shape:perf:08207", - "shape:perf:08208", - "shape:perf:08209", - "shape:perf:08210", - "shape:perf:08211", - "shape:perf:08212", - "shape:perf:08213", - "shape:perf:08214", - "shape:perf:08215", - "shape:perf:08216", - "shape:perf:08217", - "shape:perf:08218", - "shape:perf:08219", - "shape:perf:08220", - "shape:perf:08221", - "shape:perf:08222", - "shape:perf:08223", - "shape:perf:08224", - "shape:perf:08225", - "shape:perf:08226", - "shape:perf:08227", - "shape:perf:08228", - "shape:perf:08229", - "shape:perf:08230", - "shape:perf:08231", - "shape:perf:08232", - "shape:perf:08233", - "shape:perf:08234", - "shape:perf:08235", - "shape:perf:08236", - "shape:perf:08237", - "shape:perf:08238", - "shape:perf:08239", - "shape:perf:08240", - "shape:perf:08241", - "shape:perf:08242", - "shape:perf:08243", - "shape:perf:08244", - "shape:perf:08245", - "shape:perf:08246", - "shape:perf:08247", - "shape:perf:08248", - "shape:perf:08249", - "shape:perf:08250", - "shape:perf:08251", - "shape:perf:08252", - "shape:perf:08253", - "shape:perf:08254", - "shape:perf:08255", - "shape:perf:08256", - "shape:perf:08257", - "shape:perf:08258", - "shape:perf:08259", - "shape:perf:08260", - "shape:perf:08261", - "shape:perf:08262", - "shape:perf:08263", - "shape:perf:08264", - "shape:perf:08265", - "shape:perf:08266", - "shape:perf:08267", - "shape:perf:08268", - "shape:perf:08269", - "shape:perf:08270", - "shape:perf:08271", - "shape:perf:08272", - "shape:perf:08273", - "shape:perf:08274", - "shape:perf:08275", - "shape:perf:08276", - "shape:perf:08277", - "shape:perf:08278", - "shape:perf:08279", - "shape:perf:08280", - "shape:perf:08281", - "shape:perf:08282", - "shape:perf:08283", - "shape:perf:08284", - "shape:perf:08285", - "shape:perf:08286", - "shape:perf:08287", - "shape:perf:08288", - "shape:perf:08289", - "shape:perf:08290", - "shape:perf:08291", - "shape:perf:08292", - "shape:perf:08293", - "shape:perf:08294", - "shape:perf:08295", - "shape:perf:08296", - "shape:perf:08297", - "shape:perf:08298", - "shape:perf:08299", - "shape:perf:08300", - "shape:perf:08301", - "shape:perf:08302", - "shape:perf:08303", - "shape:perf:08304", - "shape:perf:08305", - "shape:perf:08306", - "shape:perf:08307", - "shape:perf:08308", - "shape:perf:08309", - "shape:perf:08310", - "shape:perf:08311", - "shape:perf:08312", - "shape:perf:08313", - "shape:perf:08314", - "shape:perf:08315", - "shape:perf:08316", - "shape:perf:08317", - "shape:perf:08318", - "shape:perf:08319", - "shape:perf:08320", - "shape:perf:08321", - "shape:perf:08322", - "shape:perf:08323", - "shape:perf:08324", - "shape:perf:08325", - "shape:perf:08326", - "shape:perf:08327", - "shape:perf:08328", - "shape:perf:08329", - "shape:perf:08330", - "shape:perf:08331", - "shape:perf:08332", - "shape:perf:08333", - "shape:perf:08334", - "shape:perf:08335", - "shape:perf:08336", - "shape:perf:08337", - "shape:perf:08338", - "shape:perf:08339", - "shape:perf:08340", - "shape:perf:08341", - "shape:perf:08342", - "shape:perf:08343", - "shape:perf:08344", - "shape:perf:08345", - "shape:perf:08346", - "shape:perf:08347", - "shape:perf:08348", - "shape:perf:08349", - "shape:perf:08350", - "shape:perf:08351", - "shape:perf:08352", - "shape:perf:08353", - "shape:perf:08354", - "shape:perf:08355", - "shape:perf:08356", - "shape:perf:08357", - "shape:perf:08358", - "shape:perf:08359", - "shape:perf:08360", - "shape:perf:08361", - "shape:perf:08362", - "shape:perf:08363", - "shape:perf:08364", - "shape:perf:08365", - "shape:perf:08366", - "shape:perf:08367", - "shape:perf:08368", - "shape:perf:08369", - "shape:perf:08370", - "shape:perf:08371", - "shape:perf:08372", - "shape:perf:08373", - "shape:perf:08374", - "shape:perf:08375", - "shape:perf:08376", - "shape:perf:08377", - "shape:perf:08378", - "shape:perf:08379", - "shape:perf:08380", - "shape:perf:08381", - "shape:perf:08382", - "shape:perf:08383", - "shape:perf:08384", - "shape:perf:08385", - "shape:perf:08386", - "shape:perf:08387", - "shape:perf:08388", - "shape:perf:08389", - "shape:perf:08390", - "shape:perf:08391", - "shape:perf:08392", - "shape:perf:08393", - "shape:perf:08394", - "shape:perf:08395", - "shape:perf:08396", - "shape:perf:08397", - "shape:perf:08398", - "shape:perf:08399", - "shape:perf:08400", - "shape:perf:08401", - "shape:perf:08402", - "shape:perf:08403", - "shape:perf:08404", - "shape:perf:08405", - "shape:perf:08406", - "shape:perf:08407", - "shape:perf:08408", - "shape:perf:08409", - "shape:perf:08410", - "shape:perf:08411", - "shape:perf:08412", - "shape:perf:08413", - "shape:perf:08414", - "shape:perf:08415", - "shape:perf:08416", - "shape:perf:08417", - "shape:perf:08418", - "shape:perf:08419", - "shape:perf:08420", - "shape:perf:08421", - "shape:perf:08422", - "shape:perf:08423", - "shape:perf:08424", - "shape:perf:08425", - "shape:perf:08426", - "shape:perf:08427", - "shape:perf:08428", - "shape:perf:08429", - "shape:perf:08430", - "shape:perf:08431", - "shape:perf:08432", - "shape:perf:08433", - "shape:perf:08434", - "shape:perf:08435", - "shape:perf:08436", - "shape:perf:08437", - "shape:perf:08438", - "shape:perf:08439", - "shape:perf:08440", - "shape:perf:08441", - "shape:perf:08442", - "shape:perf:08443", - "shape:perf:08444", - "shape:perf:08445", - "shape:perf:08446", - "shape:perf:08447", - "shape:perf:08448", - "shape:perf:08449", - "shape:perf:08450", - "shape:perf:08451", - "shape:perf:08452", - "shape:perf:08453", - "shape:perf:08454", - "shape:perf:08455", - "shape:perf:08456", - "shape:perf:08457", - "shape:perf:08458", - "shape:perf:08459", - "shape:perf:08460", - "shape:perf:08461", - "shape:perf:08462", - "shape:perf:08463", - "shape:perf:08464", - "shape:perf:08465", - "shape:perf:08466", - "shape:perf:08467", - "shape:perf:08468", - "shape:perf:08469", - "shape:perf:08470", - "shape:perf:08471", - "shape:perf:08472", - "shape:perf:08473", - "shape:perf:08474", - "shape:perf:08475", - "shape:perf:08476", - "shape:perf:08477", - "shape:perf:08478", - "shape:perf:08479", - "shape:perf:08480", - "shape:perf:08481", - "shape:perf:08482", - "shape:perf:08483", - "shape:perf:08484", - "shape:perf:08485", - "shape:perf:08486", - "shape:perf:08487", - "shape:perf:08488", - "shape:perf:08489", - "shape:perf:08490", - "shape:perf:08491", - "shape:perf:08492", - "shape:perf:08493", - "shape:perf:08494", - "shape:perf:08495", - "shape:perf:08496", - "shape:perf:08497", - "shape:perf:08498", - "shape:perf:08499", - "shape:perf:08500", - "shape:perf:08501", - "shape:perf:08502", - "shape:perf:08503", - "shape:perf:08504", - "shape:perf:08505", - "shape:perf:08506", - "shape:perf:08507", - "shape:perf:08508", - "shape:perf:08509", - "shape:perf:08510", - "shape:perf:08511", - "shape:perf:08512", - "shape:perf:08513", - "shape:perf:08514", - "shape:perf:08515", - "shape:perf:08516", - "shape:perf:08517", - "shape:perf:08518", - "shape:perf:08519", - "shape:perf:08520", - "shape:perf:08521", - "shape:perf:08522", - "shape:perf:08523", - "shape:perf:08524", - "shape:perf:08525", - "shape:perf:08526", - "shape:perf:08527", - "shape:perf:08528", - "shape:perf:08529", - "shape:perf:08530", - "shape:perf:08531", - "shape:perf:08532", - "shape:perf:08533", - "shape:perf:08534", - "shape:perf:08535", - "shape:perf:08536", - "shape:perf:08537", - "shape:perf:08538", - "shape:perf:08539", - "shape:perf:08540", - "shape:perf:08541", - "shape:perf:08542", - "shape:perf:08543", - "shape:perf:08544", - "shape:perf:08545", - "shape:perf:08546", - "shape:perf:08547", - "shape:perf:08548", - "shape:perf:08549", - "shape:perf:08550", - "shape:perf:08551", - "shape:perf:08552", - "shape:perf:08553", - "shape:perf:08554", - "shape:perf:08555", - "shape:perf:08556", - "shape:perf:08557", - "shape:perf:08558", - "shape:perf:08559", - "shape:perf:08560", - "shape:perf:08561", - "shape:perf:08562", - "shape:perf:08563", - "shape:perf:08564", - "shape:perf:08565", - "shape:perf:08566", - "shape:perf:08567", - "shape:perf:08568", - "shape:perf:08569", - "shape:perf:08570", - "shape:perf:08571", - "shape:perf:08572", - "shape:perf:08573", - "shape:perf:08574", - "shape:perf:08575", - "shape:perf:08576", - "shape:perf:08577", - "shape:perf:08578", - "shape:perf:08579", - "shape:perf:08580", - "shape:perf:08581", - "shape:perf:08582", - "shape:perf:08583", - "shape:perf:08584", - "shape:perf:08585", - "shape:perf:08586", - "shape:perf:08587", - "shape:perf:08588", - "shape:perf:08589", - "shape:perf:08590", - "shape:perf:08591", - "shape:perf:08592", - "shape:perf:08593", - "shape:perf:08594", - "shape:perf:08595", - "shape:perf:08596", - "shape:perf:08597", - "shape:perf:08598", - "shape:perf:08599", - "shape:perf:08600", - "shape:perf:08601", - "shape:perf:08602", - "shape:perf:08603", - "shape:perf:08604", - "shape:perf:08605", - "shape:perf:08606", - "shape:perf:08607", - "shape:perf:08608", - "shape:perf:08609", - "shape:perf:08610", - "shape:perf:08611", - "shape:perf:08612", - "shape:perf:08613", - "shape:perf:08614", - "shape:perf:08615", - "shape:perf:08616", - "shape:perf:08617", - "shape:perf:08618", - "shape:perf:08619", - "shape:perf:08620", - "shape:perf:08621", - "shape:perf:08622", - "shape:perf:08623", - "shape:perf:08624", - "shape:perf:08625", - "shape:perf:08626", - "shape:perf:08627", - "shape:perf:08628", - "shape:perf:08629", - "shape:perf:08630", - "shape:perf:08631", - "shape:perf:08632", - "shape:perf:08633", - "shape:perf:08634", - "shape:perf:08635", - "shape:perf:08636", - "shape:perf:08637", - "shape:perf:08638", - "shape:perf:08639", - "shape:perf:08640", - "shape:perf:08641", - "shape:perf:08642", - "shape:perf:08643", - "shape:perf:08644", - "shape:perf:08645", - "shape:perf:08646", - "shape:perf:08647", - "shape:perf:08648", - "shape:perf:08649", - "shape:perf:08650", - "shape:perf:08651", - "shape:perf:08652", - "shape:perf:08653", - "shape:perf:08654", - "shape:perf:08655", - "shape:perf:08656", - "shape:perf:08657", - "shape:perf:08658", - "shape:perf:08659", - "shape:perf:08660", - "shape:perf:08661", - "shape:perf:08662", - "shape:perf:08663", - "shape:perf:08664", - "shape:perf:08665", - "shape:perf:08666", - "shape:perf:08667", - "shape:perf:08668", - "shape:perf:08669", - "shape:perf:08670", - "shape:perf:08671", - "shape:perf:08672", - "shape:perf:08673", - "shape:perf:08674", - "shape:perf:08675", - "shape:perf:08676", - "shape:perf:08677", - "shape:perf:08678", - "shape:perf:08679", - "shape:perf:08680", - "shape:perf:08681", - "shape:perf:08682", - "shape:perf:08683", - "shape:perf:08684", - "shape:perf:08685", - "shape:perf:08686", - "shape:perf:08687", - "shape:perf:08688", - "shape:perf:08689", - "shape:perf:08690", - "shape:perf:08691", - "shape:perf:08692", - "shape:perf:08693", - "shape:perf:08694", - "shape:perf:08695", - "shape:perf:08696", - "shape:perf:08697", - "shape:perf:08698", - "shape:perf:08699", - "shape:perf:08700", - "shape:perf:08701", - "shape:perf:08702", - "shape:perf:08703", - "shape:perf:08704", - "shape:perf:08705", - "shape:perf:08706", - "shape:perf:08707", - "shape:perf:08708", - "shape:perf:08709", - "shape:perf:08710", - "shape:perf:08711", - "shape:perf:08712", - "shape:perf:08713", - "shape:perf:08714", - "shape:perf:08715", - "shape:perf:08716", - "shape:perf:08717", - "shape:perf:08718", - "shape:perf:08719", - "shape:perf:08720", - "shape:perf:08721", - "shape:perf:08722", - "shape:perf:08723", - "shape:perf:08724", - "shape:perf:08725", - "shape:perf:08726", - "shape:perf:08727", - "shape:perf:08728", - "shape:perf:08729", - "shape:perf:08730", - "shape:perf:08731", - "shape:perf:08732", - "shape:perf:08733", - "shape:perf:08734", - "shape:perf:08735", - "shape:perf:08736", - "shape:perf:08737", - "shape:perf:08738", - "shape:perf:08739", - "shape:perf:08740", - "shape:perf:08741", - "shape:perf:08742", - "shape:perf:08743", - "shape:perf:08744", - "shape:perf:08745", - "shape:perf:08746", - "shape:perf:08747", - "shape:perf:08748", - "shape:perf:08749", - "shape:perf:08750", - "shape:perf:08751", - "shape:perf:08752", - "shape:perf:08753", - "shape:perf:08754", - "shape:perf:08755", - "shape:perf:08756", - "shape:perf:08757", - "shape:perf:08758", - "shape:perf:08759", - "shape:perf:08760", - "shape:perf:08761", - "shape:perf:08762", - "shape:perf:08763", - "shape:perf:08764", - "shape:perf:08765", - "shape:perf:08766", - "shape:perf:08767", - "shape:perf:08768", - "shape:perf:08769", - "shape:perf:08770", - "shape:perf:08771", - "shape:perf:08772", - "shape:perf:08773", - "shape:perf:08774", - "shape:perf:08775", - "shape:perf:08776", - "shape:perf:08777", - "shape:perf:08778", - "shape:perf:08779", - "shape:perf:08780", - "shape:perf:08781", - "shape:perf:08782", - "shape:perf:08783", - "shape:perf:08784", - "shape:perf:08785", - "shape:perf:08786", - "shape:perf:08787", - "shape:perf:08788", - "shape:perf:08789", - "shape:perf:08790", - "shape:perf:08791", - "shape:perf:08792", - "shape:perf:08793", - "shape:perf:08794", - "shape:perf:08795", - "shape:perf:08796", - "shape:perf:08797", - "shape:perf:08798", - "shape:perf:08799", - "shape:perf:08800", - "shape:perf:08801", - "shape:perf:08802", - "shape:perf:08803", - "shape:perf:08804", - "shape:perf:08805", - "shape:perf:08806", - "shape:perf:08807", - "shape:perf:08808", - "shape:perf:08809", - "shape:perf:08810", - "shape:perf:08811", - "shape:perf:08812", - "shape:perf:08813", - "shape:perf:08814", - "shape:perf:08815", - "shape:perf:08816", - "shape:perf:08817", - "shape:perf:08818", - "shape:perf:08819", - "shape:perf:08820", - "shape:perf:08821", - "shape:perf:08822", - "shape:perf:08823", - "shape:perf:08824", - "shape:perf:08825", - "shape:perf:08826", - "shape:perf:08827", - "shape:perf:08828", - "shape:perf:08829", - "shape:perf:08830", - "shape:perf:08831", - "shape:perf:08832", - "shape:perf:08833", - "shape:perf:08834", - "shape:perf:08835", - "shape:perf:08836", - "shape:perf:08837", - "shape:perf:08838", - "shape:perf:08839", - "shape:perf:08840", - "shape:perf:08841", - "shape:perf:08842", - "shape:perf:08843", - "shape:perf:08844", - "shape:perf:08845", - "shape:perf:08846", - "shape:perf:08847", - "shape:perf:08848", - "shape:perf:08849", - "shape:perf:08850", - "shape:perf:08851", - "shape:perf:08852", - "shape:perf:08853", - "shape:perf:08854", - "shape:perf:08855", - "shape:perf:08856", - "shape:perf:08857", - "shape:perf:08858", - "shape:perf:08859", - "shape:perf:08860", - "shape:perf:08861", - "shape:perf:08862", - "shape:perf:08863", - "shape:perf:08864", - "shape:perf:08865", - "shape:perf:08866", - "shape:perf:08867", - "shape:perf:08868", - "shape:perf:08869", - "shape:perf:08870", - "shape:perf:08871", - "shape:perf:08872", - "shape:perf:08873", - "shape:perf:08874", - "shape:perf:08875", - "shape:perf:08876", - "shape:perf:08877", - "shape:perf:08878", - "shape:perf:08879", - "shape:perf:08880", - "shape:perf:08881", - "shape:perf:08882", - "shape:perf:08883", - "shape:perf:08884", - "shape:perf:08885", - "shape:perf:08886", - "shape:perf:08887", - "shape:perf:08888", - "shape:perf:08889", - "shape:perf:08890", - "shape:perf:08891", - "shape:perf:08892", - "shape:perf:08893", - "shape:perf:08894", - "shape:perf:08895", - "shape:perf:08896", - "shape:perf:08897", - "shape:perf:08898", - "shape:perf:08899", - "shape:perf:08900", - "shape:perf:08901", - "shape:perf:08902", - "shape:perf:08903", - "shape:perf:08904", - "shape:perf:08905", - "shape:perf:08906", - "shape:perf:08907", - "shape:perf:08908", - "shape:perf:08909", - "shape:perf:08910", - "shape:perf:08911", - "shape:perf:08912", - "shape:perf:08913", - "shape:perf:08914", - "shape:perf:08915", - "shape:perf:08916", - "shape:perf:08917", - "shape:perf:08918", - "shape:perf:08919", - "shape:perf:08920", - "shape:perf:08921", - "shape:perf:08922", - "shape:perf:08923", - "shape:perf:08924", - "shape:perf:08925", - "shape:perf:08926", - "shape:perf:08927", - "shape:perf:08928", - "shape:perf:08929", - "shape:perf:08930", - "shape:perf:08931", - "shape:perf:08932", - "shape:perf:08933", - "shape:perf:08934", - "shape:perf:08935", - "shape:perf:08936", - "shape:perf:08937", - "shape:perf:08938", - "shape:perf:08939", - "shape:perf:08940", - "shape:perf:08941", - "shape:perf:08942", - "shape:perf:08943", - "shape:perf:08944", - "shape:perf:08945", - "shape:perf:08946", - "shape:perf:08947", - "shape:perf:08948", - "shape:perf:08949", - "shape:perf:08950", - "shape:perf:08951", - "shape:perf:08952", - "shape:perf:08953", - "shape:perf:08954", - "shape:perf:08955", - "shape:perf:08956", - "shape:perf:08957", - "shape:perf:08958", - "shape:perf:08959", - "shape:perf:08960", - "shape:perf:08961", - "shape:perf:08962", - "shape:perf:08963", - "shape:perf:08964", - "shape:perf:08965", - "shape:perf:08966", - "shape:perf:08967", - "shape:perf:08968", - "shape:perf:08969", - "shape:perf:08970", - "shape:perf:08971", - "shape:perf:08972", - "shape:perf:08973", - "shape:perf:08974", - "shape:perf:08975", - "shape:perf:08976", - "shape:perf:08977", - "shape:perf:08978", - "shape:perf:08979", - "shape:perf:08980", - "shape:perf:08981", - "shape:perf:08982", - "shape:perf:08983", - "shape:perf:08984", - "shape:perf:08985", - "shape:perf:08986", - "shape:perf:08987", - "shape:perf:08988", - "shape:perf:08989", - "shape:perf:08990", - "shape:perf:08991", - "shape:perf:08992", - "shape:perf:08993", - "shape:perf:08994", - "shape:perf:08995", - "shape:perf:08996", - "shape:perf:08997", - "shape:perf:08998", - "shape:perf:08999", - "shape:perf:09000", - "shape:perf:09001", - "shape:perf:09002", - "shape:perf:09003", - "shape:perf:09004", - "shape:perf:09005", - "shape:perf:09006", - "shape:perf:09007", - "shape:perf:09008", - "shape:perf:09009", - "shape:perf:09010", - "shape:perf:09011", - "shape:perf:09012", - "shape:perf:09013", - "shape:perf:09014", - "shape:perf:09015", - "shape:perf:09016", - "shape:perf:09017", - "shape:perf:09018", - "shape:perf:09019", - "shape:perf:09020", - "shape:perf:09021", - "shape:perf:09022", - "shape:perf:09023", - "shape:perf:09024", - "shape:perf:09025", - "shape:perf:09026", - "shape:perf:09027", - "shape:perf:09028", - "shape:perf:09029", - "shape:perf:09030", - "shape:perf:09031", - "shape:perf:09032", - "shape:perf:09033", - "shape:perf:09034", - "shape:perf:09035", - "shape:perf:09036", - "shape:perf:09037", - "shape:perf:09038", - "shape:perf:09039", - "shape:perf:09040", - "shape:perf:09041", - "shape:perf:09042", - "shape:perf:09043", - "shape:perf:09044", - "shape:perf:09045", - "shape:perf:09046", - "shape:perf:09047", - "shape:perf:09048", - "shape:perf:09049", - "shape:perf:09050", - "shape:perf:09051", - "shape:perf:09052", - "shape:perf:09053", - "shape:perf:09054", - "shape:perf:09055", - "shape:perf:09056", - "shape:perf:09057", - "shape:perf:09058", - "shape:perf:09059", - "shape:perf:09060", - "shape:perf:09061", - "shape:perf:09062", - "shape:perf:09063", - "shape:perf:09064", - "shape:perf:09065", - "shape:perf:09066", - "shape:perf:09067", - "shape:perf:09068", - "shape:perf:09069", - "shape:perf:09070", - "shape:perf:09071", - "shape:perf:09072", - "shape:perf:09073", - "shape:perf:09074", - "shape:perf:09075", - "shape:perf:09076", - "shape:perf:09077", - "shape:perf:09078", - "shape:perf:09079", - "shape:perf:09080", - "shape:perf:09081", - "shape:perf:09082", - "shape:perf:09083", - "shape:perf:09084", - "shape:perf:09085", - "shape:perf:09086", - "shape:perf:09087", - "shape:perf:09088", - "shape:perf:09089", - "shape:perf:09090", - "shape:perf:09091", - "shape:perf:09092", - "shape:perf:09093", - "shape:perf:09094", - "shape:perf:09095", - "shape:perf:09096", - "shape:perf:09097", - "shape:perf:09098", - "shape:perf:09099", - "shape:perf:09100", - "shape:perf:09101", - "shape:perf:09102", - "shape:perf:09103", - "shape:perf:09104", - "shape:perf:09105", - "shape:perf:09106", - "shape:perf:09107", - "shape:perf:09108", - "shape:perf:09109", - "shape:perf:09110", - "shape:perf:09111", - "shape:perf:09112", - "shape:perf:09113", - "shape:perf:09114", - "shape:perf:09115", - "shape:perf:09116", - "shape:perf:09117", - "shape:perf:09118", - "shape:perf:09119", - "shape:perf:09120", - "shape:perf:09121", - "shape:perf:09122", - "shape:perf:09123", - "shape:perf:09124", - "shape:perf:09125", - "shape:perf:09126", - "shape:perf:09127", - "shape:perf:09128", - "shape:perf:09129", - "shape:perf:09130", - "shape:perf:09131", - "shape:perf:09132", - "shape:perf:09133", - "shape:perf:09134", - "shape:perf:09135", - "shape:perf:09136", - "shape:perf:09137", - "shape:perf:09138", - "shape:perf:09139", - "shape:perf:09140", - "shape:perf:09141", - "shape:perf:09142", - "shape:perf:09143", - "shape:perf:09144", - "shape:perf:09145", - "shape:perf:09146", - "shape:perf:09147", - "shape:perf:09148", - "shape:perf:09149", - "shape:perf:09150", - "shape:perf:09151", - "shape:perf:09152", - "shape:perf:09153", - "shape:perf:09154", - "shape:perf:09155", - "shape:perf:09156", - "shape:perf:09157", - "shape:perf:09158", - "shape:perf:09159", - "shape:perf:09160", - "shape:perf:09161", - "shape:perf:09162", - "shape:perf:09163", - "shape:perf:09164", - "shape:perf:09165", - "shape:perf:09166", - "shape:perf:09167", - "shape:perf:09168", - "shape:perf:09169", - "shape:perf:09170", - "shape:perf:09171", - "shape:perf:09172", - "shape:perf:09173", - "shape:perf:09174", - "shape:perf:09175", - "shape:perf:09176", - "shape:perf:09177", - "shape:perf:09178", - "shape:perf:09179", - "shape:perf:09180", - "shape:perf:09181", - "shape:perf:09182", - "shape:perf:09183", - "shape:perf:09184", - "shape:perf:09185", - "shape:perf:09186", - "shape:perf:09187", - "shape:perf:09188", - "shape:perf:09189", - "shape:perf:09190", - "shape:perf:09191", - "shape:perf:09192", - "shape:perf:09193", - "shape:perf:09194", - "shape:perf:09195", - "shape:perf:09196", - "shape:perf:09197", - "shape:perf:09198", - "shape:perf:09199", - "shape:perf:09200", - "shape:perf:09201", - "shape:perf:09202", - "shape:perf:09203", - "shape:perf:09204", - "shape:perf:09205", - "shape:perf:09206", - "shape:perf:09207", - "shape:perf:09208", - "shape:perf:09209", - "shape:perf:09210", - "shape:perf:09211", - "shape:perf:09212", - "shape:perf:09213", - "shape:perf:09214", - "shape:perf:09215", - "shape:perf:09216", - "shape:perf:09217", - "shape:perf:09218", - "shape:perf:09219", - "shape:perf:09220", - "shape:perf:09221", - "shape:perf:09222", - "shape:perf:09223", - "shape:perf:09224", - "shape:perf:09225", - "shape:perf:09226", - "shape:perf:09227", - "shape:perf:09228", - "shape:perf:09229", - "shape:perf:09230", - "shape:perf:09231", - "shape:perf:09232", - "shape:perf:09233", - "shape:perf:09234", - "shape:perf:09235", - "shape:perf:09236", - "shape:perf:09237", - "shape:perf:09238", - "shape:perf:09239", - "shape:perf:09240", - "shape:perf:09241", - "shape:perf:09242", - "shape:perf:09243", - "shape:perf:09244", - "shape:perf:09245", - "shape:perf:09246", - "shape:perf:09247", - "shape:perf:09248", - "shape:perf:09249", - "shape:perf:09250", - "shape:perf:09251", - "shape:perf:09252", - "shape:perf:09253", - "shape:perf:09254", - "shape:perf:09255", - "shape:perf:09256", - "shape:perf:09257", - "shape:perf:09258", - "shape:perf:09259", - "shape:perf:09260", - "shape:perf:09261", - "shape:perf:09262", - "shape:perf:09263", - "shape:perf:09264", - "shape:perf:09265", - "shape:perf:09266", - "shape:perf:09267", - "shape:perf:09268", - "shape:perf:09269", - "shape:perf:09270", - "shape:perf:09271", - "shape:perf:09272", - "shape:perf:09273", - "shape:perf:09274", - "shape:perf:09275", - "shape:perf:09276", - "shape:perf:09277", - "shape:perf:09278", - "shape:perf:09279", - "shape:perf:09280", - "shape:perf:09281", - "shape:perf:09282", - "shape:perf:09283", - "shape:perf:09284", - "shape:perf:09285", - "shape:perf:09286", - "shape:perf:09287", - "shape:perf:09288", - "shape:perf:09289", - "shape:perf:09290", - "shape:perf:09291", - "shape:perf:09292", - "shape:perf:09293", - "shape:perf:09294", - "shape:perf:09295", - "shape:perf:09296", - "shape:perf:09297", - "shape:perf:09298", - "shape:perf:09299", - "shape:perf:09300", - "shape:perf:09301", - "shape:perf:09302", - "shape:perf:09303", - "shape:perf:09304", - "shape:perf:09305", - "shape:perf:09306", - "shape:perf:09307", - "shape:perf:09308", - "shape:perf:09309", - "shape:perf:09310", - "shape:perf:09311", - "shape:perf:09312", - "shape:perf:09313", - "shape:perf:09314", - "shape:perf:09315", - "shape:perf:09316", - "shape:perf:09317", - "shape:perf:09318", - "shape:perf:09319", - "shape:perf:09320", - "shape:perf:09321", - "shape:perf:09322", - "shape:perf:09323", - "shape:perf:09324", - "shape:perf:09325", - "shape:perf:09326", - "shape:perf:09327", - "shape:perf:09328", - "shape:perf:09329", - "shape:perf:09330", - "shape:perf:09331", - "shape:perf:09332", - "shape:perf:09333", - "shape:perf:09334", - "shape:perf:09335", - "shape:perf:09336", - "shape:perf:09337", - "shape:perf:09338", - "shape:perf:09339", - "shape:perf:09340", - "shape:perf:09341", - "shape:perf:09342", - "shape:perf:09343", - "shape:perf:09344", - "shape:perf:09345", - "shape:perf:09346", - "shape:perf:09347", - "shape:perf:09348", - "shape:perf:09349", - "shape:perf:09350", - "shape:perf:09351", - "shape:perf:09352", - "shape:perf:09353", - "shape:perf:09354", - "shape:perf:09355", - "shape:perf:09356", - "shape:perf:09357", - "shape:perf:09358", - "shape:perf:09359", - "shape:perf:09360", - "shape:perf:09361", - "shape:perf:09362", - "shape:perf:09363", - "shape:perf:09364", - "shape:perf:09365", - "shape:perf:09366", - "shape:perf:09367", - "shape:perf:09368", - "shape:perf:09369", - "shape:perf:09370", - "shape:perf:09371", - "shape:perf:09372", - "shape:perf:09373", - "shape:perf:09374", - "shape:perf:09375", - "shape:perf:09376", - "shape:perf:09377", - "shape:perf:09378", - "shape:perf:09379", - "shape:perf:09380", - "shape:perf:09381", - "shape:perf:09382", - "shape:perf:09383", - "shape:perf:09384", - "shape:perf:09385", - "shape:perf:09386", - "shape:perf:09387", - "shape:perf:09388", - "shape:perf:09389", - "shape:perf:09390", - "shape:perf:09391", - "shape:perf:09392", - "shape:perf:09393", - "shape:perf:09394", - "shape:perf:09395", - "shape:perf:09396", - "shape:perf:09397", - "shape:perf:09398", - "shape:perf:09399", - "shape:perf:09400", - "shape:perf:09401", - "shape:perf:09402", - "shape:perf:09403", - "shape:perf:09404", - "shape:perf:09405", - "shape:perf:09406", - "shape:perf:09407", - "shape:perf:09408", - "shape:perf:09409", - "shape:perf:09410", - "shape:perf:09411", - "shape:perf:09412", - "shape:perf:09413", - "shape:perf:09414", - "shape:perf:09415", - "shape:perf:09416", - "shape:perf:09417", - "shape:perf:09418", - "shape:perf:09419", - "shape:perf:09420", - "shape:perf:09421", - "shape:perf:09422", - "shape:perf:09423", - "shape:perf:09424", - "shape:perf:09425", - "shape:perf:09426", - "shape:perf:09427", - "shape:perf:09428", - "shape:perf:09429", - "shape:perf:09430", - "shape:perf:09431", - "shape:perf:09432", - "shape:perf:09433", - "shape:perf:09434", - "shape:perf:09435", - "shape:perf:09436", - "shape:perf:09437", - "shape:perf:09438", - "shape:perf:09439", - "shape:perf:09440", - "shape:perf:09441", - "shape:perf:09442", - "shape:perf:09443", - "shape:perf:09444", - "shape:perf:09445", - "shape:perf:09446", - "shape:perf:09447", - "shape:perf:09448", - "shape:perf:09449", - "shape:perf:09450", - "shape:perf:09451", - "shape:perf:09452", - "shape:perf:09453", - "shape:perf:09454", - "shape:perf:09455", - "shape:perf:09456", - "shape:perf:09457", - "shape:perf:09458", - "shape:perf:09459", - "shape:perf:09460", - "shape:perf:09461", - "shape:perf:09462", - "shape:perf:09463", - "shape:perf:09464", - "shape:perf:09465", - "shape:perf:09466", - "shape:perf:09467", - "shape:perf:09468", - "shape:perf:09469", - "shape:perf:09470", - "shape:perf:09471", - "shape:perf:09472", - "shape:perf:09473", - "shape:perf:09474", - "shape:perf:09475", - "shape:perf:09476", - "shape:perf:09477", - "shape:perf:09478", - "shape:perf:09479", - "shape:perf:09480", - "shape:perf:09481", - "shape:perf:09482", - "shape:perf:09483", - "shape:perf:09484", - "shape:perf:09485", - "shape:perf:09486", - "shape:perf:09487", - "shape:perf:09488", - "shape:perf:09489", - "shape:perf:09490", - "shape:perf:09491", - "shape:perf:09492", - "shape:perf:09493", - "shape:perf:09494", - "shape:perf:09495", - "shape:perf:09496", - "shape:perf:09497", - "shape:perf:09498", - "shape:perf:09499", - "shape:perf:09500", - "shape:perf:09501", - "shape:perf:09502", - "shape:perf:09503", - "shape:perf:09504", - "shape:perf:09505", - "shape:perf:09506", - "shape:perf:09507", - "shape:perf:09508", - "shape:perf:09509", - "shape:perf:09510", - "shape:perf:09511", - "shape:perf:09512", - "shape:perf:09513", - "shape:perf:09514", - "shape:perf:09515", - "shape:perf:09516", - "shape:perf:09517", - "shape:perf:09518", - "shape:perf:09519", - "shape:perf:09520", - "shape:perf:09521", - "shape:perf:09522", - "shape:perf:09523", - "shape:perf:09524", - "shape:perf:09525", - "shape:perf:09526", - "shape:perf:09527", - "shape:perf:09528", - "shape:perf:09529", - "shape:perf:09530", - "shape:perf:09531", - "shape:perf:09532", - "shape:perf:09533", - "shape:perf:09534", - "shape:perf:09535", - "shape:perf:09536", - "shape:perf:09537", - "shape:perf:09538", - "shape:perf:09539", - "shape:perf:09540", - "shape:perf:09541", - "shape:perf:09542", - "shape:perf:09543", - "shape:perf:09544", - "shape:perf:09545", - "shape:perf:09546", - "shape:perf:09547", - "shape:perf:09548", - "shape:perf:09549", - "shape:perf:09550", - "shape:perf:09551", - "shape:perf:09552", - "shape:perf:09553", - "shape:perf:09554", - "shape:perf:09555", - "shape:perf:09556", - "shape:perf:09557", - "shape:perf:09558", - "shape:perf:09559", - "shape:perf:09560", - "shape:perf:09561", - "shape:perf:09562", - "shape:perf:09563", - "shape:perf:09564", - "shape:perf:09565", - "shape:perf:09566", - "shape:perf:09567", - "shape:perf:09568", - "shape:perf:09569", - "shape:perf:09570", - "shape:perf:09571", - "shape:perf:09572", - "shape:perf:09573", - "shape:perf:09574", - "shape:perf:09575", - "shape:perf:09576", - "shape:perf:09577", - "shape:perf:09578", - "shape:perf:09579", - "shape:perf:09580", - "shape:perf:09581", - "shape:perf:09582", - "shape:perf:09583", - "shape:perf:09584", - "shape:perf:09585", - "shape:perf:09586", - "shape:perf:09587", - "shape:perf:09588", - "shape:perf:09589", - "shape:perf:09590", - "shape:perf:09591", - "shape:perf:09592", - "shape:perf:09593", - "shape:perf:09594", - "shape:perf:09595", - "shape:perf:09596", - "shape:perf:09597", - "shape:perf:09598", - "shape:perf:09599", - "shape:perf:09600", - "shape:perf:09601", - "shape:perf:09602", - "shape:perf:09603", - "shape:perf:09604", - "shape:perf:09605", - "shape:perf:09606", - "shape:perf:09607", - "shape:perf:09608", - "shape:perf:09609", - "shape:perf:09610", - "shape:perf:09611", - "shape:perf:09612", - "shape:perf:09613", - "shape:perf:09614", - "shape:perf:09615", - "shape:perf:09616", - "shape:perf:09617", - "shape:perf:09618", - "shape:perf:09619", - "shape:perf:09620", - "shape:perf:09621", - "shape:perf:09622", - "shape:perf:09623", - "shape:perf:09624", - "shape:perf:09625", - "shape:perf:09626", - "shape:perf:09627", - "shape:perf:09628", - "shape:perf:09629", - "shape:perf:09630", - "shape:perf:09631", - "shape:perf:09632", - "shape:perf:09633", - "shape:perf:09634", - "shape:perf:09635", - "shape:perf:09636", - "shape:perf:09637", - "shape:perf:09638", - "shape:perf:09639", - "shape:perf:09640", - "shape:perf:09641", - "shape:perf:09642", - "shape:perf:09643", - "shape:perf:09644", - "shape:perf:09645", - "shape:perf:09646", - "shape:perf:09647", - "shape:perf:09648", - "shape:perf:09649", - "shape:perf:09650", - "shape:perf:09651", - "shape:perf:09652", - "shape:perf:09653", - "shape:perf:09654", - "shape:perf:09655", - "shape:perf:09656", - "shape:perf:09657", - "shape:perf:09658", - "shape:perf:09659", - "shape:perf:09660", - "shape:perf:09661", - "shape:perf:09662", - "shape:perf:09663", - "shape:perf:09664", - "shape:perf:09665", - "shape:perf:09666", - "shape:perf:09667", - "shape:perf:09668", - "shape:perf:09669", - "shape:perf:09670", - "shape:perf:09671", - "shape:perf:09672", - "shape:perf:09673", - "shape:perf:09674", - "shape:perf:09675", - "shape:perf:09676", - "shape:perf:09677", - "shape:perf:09678", - "shape:perf:09679", - "shape:perf:09680", - "shape:perf:09681", - "shape:perf:09682", - "shape:perf:09683", - "shape:perf:09684", - "shape:perf:09685", - "shape:perf:09686", - "shape:perf:09687", - "shape:perf:09688", - "shape:perf:09689", - "shape:perf:09690", - "shape:perf:09691", - "shape:perf:09692", - "shape:perf:09693", - "shape:perf:09694", - "shape:perf:09695", - "shape:perf:09696", - "shape:perf:09697", - "shape:perf:09698", - "shape:perf:09699", - "shape:perf:09700", - "shape:perf:09701", - "shape:perf:09702", - "shape:perf:09703", - "shape:perf:09704", - "shape:perf:09705", - "shape:perf:09706", - "shape:perf:09707", - "shape:perf:09708", - "shape:perf:09709", - "shape:perf:09710", - "shape:perf:09711", - "shape:perf:09712", - "shape:perf:09713", - "shape:perf:09714", - "shape:perf:09715", - "shape:perf:09716", - "shape:perf:09717", - "shape:perf:09718", - "shape:perf:09719", - "shape:perf:09720", - "shape:perf:09721", - "shape:perf:09722", - "shape:perf:09723", - "shape:perf:09724", - "shape:perf:09725", - "shape:perf:09726", - "shape:perf:09727", - "shape:perf:09728", - "shape:perf:09729", - "shape:perf:09730", - "shape:perf:09731", - "shape:perf:09732", - "shape:perf:09733", - "shape:perf:09734", - "shape:perf:09735", - "shape:perf:09736", - "shape:perf:09737", - "shape:perf:09738", - "shape:perf:09739", - "shape:perf:09740", - "shape:perf:09741", - "shape:perf:09742", - "shape:perf:09743", - "shape:perf:09744", - "shape:perf:09745", - "shape:perf:09746", - "shape:perf:09747", - "shape:perf:09748", - "shape:perf:09749", - "shape:perf:09750", - "shape:perf:09751", - "shape:perf:09752", - "shape:perf:09753", - "shape:perf:09754", - "shape:perf:09755", - "shape:perf:09756", - "shape:perf:09757", - "shape:perf:09758", - "shape:perf:09759", - "shape:perf:09760", - "shape:perf:09761", - "shape:perf:09762", - "shape:perf:09763", - "shape:perf:09764", - "shape:perf:09765", - "shape:perf:09766", - "shape:perf:09767", - "shape:perf:09768", - "shape:perf:09769", - "shape:perf:09770", - "shape:perf:09771", - "shape:perf:09772", - "shape:perf:09773", - "shape:perf:09774", - "shape:perf:09775", - "shape:perf:09776", - "shape:perf:09777", - "shape:perf:09778", - "shape:perf:09779", - "shape:perf:09780", - "shape:perf:09781", - "shape:perf:09782", - "shape:perf:09783", - "shape:perf:09784", - "shape:perf:09785", - "shape:perf:09786", - "shape:perf:09787", - "shape:perf:09788", - "shape:perf:09789", - "shape:perf:09790", - "shape:perf:09791", - "shape:perf:09792", - "shape:perf:09793", - "shape:perf:09794", - "shape:perf:09795", - "shape:perf:09796", - "shape:perf:09797", - "shape:perf:09798", - "shape:perf:09799", - "shape:perf:09800", - "shape:perf:09801", - "shape:perf:09802", - "shape:perf:09803", - "shape:perf:09804", - "shape:perf:09805", - "shape:perf:09806", - "shape:perf:09807", - "shape:perf:09808", - "shape:perf:09809", - "shape:perf:09810", - "shape:perf:09811", - "shape:perf:09812", - "shape:perf:09813", - "shape:perf:09814", - "shape:perf:09815", - "shape:perf:09816", - "shape:perf:09817", - "shape:perf:09818", - "shape:perf:09819", - "shape:perf:09820", - "shape:perf:09821", - "shape:perf:09822", - "shape:perf:09823", - "shape:perf:09824", - "shape:perf:09825", - "shape:perf:09826", - "shape:perf:09827", - "shape:perf:09828", - "shape:perf:09829", - "shape:perf:09830", - "shape:perf:09831", - "shape:perf:09832", - "shape:perf:09833", - "shape:perf:09834", - "shape:perf:09835", - "shape:perf:09836", - "shape:perf:09837", - "shape:perf:09838", - "shape:perf:09839", - "shape:perf:09840", - "shape:perf:09841", - "shape:perf:09842", - "shape:perf:09843", - "shape:perf:09844", - "shape:perf:09845", - "shape:perf:09846", - "shape:perf:09847", - "shape:perf:09848", - "shape:perf:09849", - "shape:perf:09850", - "shape:perf:09851", - "shape:perf:09852", - "shape:perf:09853", - "shape:perf:09854", - "shape:perf:09855", - "shape:perf:09856", - "shape:perf:09857", - "shape:perf:09858", - "shape:perf:09859", - "shape:perf:09860", - "shape:perf:09861", - "shape:perf:09862", - "shape:perf:09863", - "shape:perf:09864", - "shape:perf:09865", - "shape:perf:09866", - "shape:perf:09867", - "shape:perf:09868", - "shape:perf:09869", - "shape:perf:09870", - "shape:perf:09871", - "shape:perf:09872", - "shape:perf:09873", - "shape:perf:09874", - "shape:perf:09875", - "shape:perf:09876", - "shape:perf:09877", - "shape:perf:09878", - "shape:perf:09879", - "shape:perf:09880", - "shape:perf:09881", - "shape:perf:09882", - "shape:perf:09883", - "shape:perf:09884", - "shape:perf:09885", - "shape:perf:09886", - "shape:perf:09887", - "shape:perf:09888", - "shape:perf:09889", - "shape:perf:09890", - "shape:perf:09891", - "shape:perf:09892", - "shape:perf:09893", - "shape:perf:09894", - "shape:perf:09895", - "shape:perf:09896", - "shape:perf:09897", - "shape:perf:09898", - "shape:perf:09899", - "shape:perf:09900", - "shape:perf:09901", - "shape:perf:09902", - "shape:perf:09903", - "shape:perf:09904", - "shape:perf:09905", - "shape:perf:09906", - "shape:perf:09907", - "shape:perf:09908", - "shape:perf:09909", - "shape:perf:09910", - "shape:perf:09911", - "shape:perf:09912", - "shape:perf:09913", - "shape:perf:09914", - "shape:perf:09915", - "shape:perf:09916", - "shape:perf:09917", - "shape:perf:09918", - "shape:perf:09919", - "shape:perf:09920", - "shape:perf:09921", - "shape:perf:09922", - "shape:perf:09923", - "shape:perf:09924", - "shape:perf:09925", - "shape:perf:09926", - "shape:perf:09927", - "shape:perf:09928", - "shape:perf:09929", - "shape:perf:09930", - "shape:perf:09931", - "shape:perf:09932", - "shape:perf:09933", - "shape:perf:09934", - "shape:perf:09935", - "shape:perf:09936", - "shape:perf:09937", - "shape:perf:09938", - "shape:perf:09939", - "shape:perf:09940", - "shape:perf:09941", - "shape:perf:09942", - "shape:perf:09943", - "shape:perf:09944", - "shape:perf:09945", - "shape:perf:09946", - "shape:perf:09947", - "shape:perf:09948", - "shape:perf:09949", - "shape:perf:09950", - "shape:perf:09951", - "shape:perf:09952", - "shape:perf:09953", - "shape:perf:09954", - "shape:perf:09955", - "shape:perf:09956", - "shape:perf:09957", - "shape:perf:09958", - "shape:perf:09959", - "shape:perf:09960", - "shape:perf:09961", - "shape:perf:09962", - "shape:perf:09963", - "shape:perf:09964", - "shape:perf:09965", - "shape:perf:09966", - "shape:perf:09967", - "shape:perf:09968", - "shape:perf:09969", - "shape:perf:09970", - "shape:perf:09971", - "shape:perf:09972", - "shape:perf:09973", - "shape:perf:09974", - "shape:perf:09975", - "shape:perf:09976", - "shape:perf:09977", - "shape:perf:09978", - "shape:perf:09979", - "shape:perf:09980", - "shape:perf:09981", - "shape:perf:09982", - "shape:perf:09983", - "shape:perf:09984", - "shape:perf:09985", - "shape:perf:09986", - "shape:perf:09987", - "shape:perf:09988", - "shape:perf:09989", - "shape:perf:09990", - "shape:perf:09991", - "shape:perf:09992", - "shape:perf:09993", - "shape:perf:09994", - "shape:perf:09995", - "shape:perf:09996", - "shape:perf:09997", - "shape:perf:09998", - "shape:perf:09999" - ] - } - }, - "shapes": { - "shape:perf:00000": { - "id": "shape:perf:00000", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 0, - "rot": 0, - "props": { - "w": 40, - "h": 28, - "fill": "hsl(205 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00001": { - "id": "shape:perf:00001", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 0, - "rot": 0, - "props": { - "w": 41, - "h": 47, - "fill": "hsl(337 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00002": { - "id": "shape:perf:00002", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 0, - "rot": 0, - "props": { - "w": 37, - "h": 39, - "fill": "hsl(280 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00003": { - "id": "shape:perf:00003", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 0, - "rot": 0, - "props": { - "w": 34, - "h": 47, - "fill": "hsl(260 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00004": { - "id": "shape:perf:00004", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 0, - "rot": 0, - "props": { - "w": 47, - "h": 45, - "fill": "hsl(264 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00005": { - "id": "shape:perf:00005", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 0, - "rot": 0, - "props": { - "w": 46, - "h": 40, - "fill": "hsl(298 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00006": { - "id": "shape:perf:00006", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 0, - "rot": 0, - "props": { - "w": 45, - "h": 42, - "fill": "hsl(26 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00007": { - "id": "shape:perf:00007", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 0, - "rot": 0, - "props": { - "w": 45, - "h": 34, - "fill": "hsl(236 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00008": { - "id": "shape:perf:00008", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 0, - "rot": 0, - "props": { - "w": 42, - "h": 30, - "fill": "hsl(330 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00009": { - "id": "shape:perf:00009", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 0, - "rot": 0, - "props": { - "w": 26, - "h": 25, - "fill": "hsl(190 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00010": { - "id": "shape:perf:00010", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 0, - "rot": 0, - "props": { - "w": 43, - "h": 44, - "fill": "hsl(354 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00011": { - "id": "shape:perf:00011", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 0, - "rot": 0, - "props": { - "w": 35, - "h": 32, - "fill": "hsl(336 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00012": { - "id": "shape:perf:00012", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 0, - "rot": 0, - "props": { - "w": 38, - "h": 39, - "fill": "hsl(267 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00013": { - "id": "shape:perf:00013", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 0, - "rot": 0, - "props": { - "w": 36, - "h": 36, - "fill": "hsl(347 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00014": { - "id": "shape:perf:00014", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 0, - "rot": 0, - "props": { - "w": 37, - "h": 24, - "fill": "hsl(67 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00015": { - "id": "shape:perf:00015", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 0, - "rot": 0, - "props": { - "w": 40, - "h": 25, - "fill": "hsl(242 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00016": { - "id": "shape:perf:00016", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 0, - "rot": 0, - "props": { - "w": 37, - "h": 30, - "fill": "hsl(110 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00017": { - "id": "shape:perf:00017", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 0, - "rot": 0, - "props": { - "w": 42, - "h": 32, - "fill": "hsl(88 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00018": { - "id": "shape:perf:00018", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 0, - "rot": 0, - "props": { - "w": 30, - "h": 25, - "fill": "hsl(201 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00019": { - "id": "shape:perf:00019", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 0, - "rot": 0, - "props": { - "w": 24, - "h": 42, - "fill": "hsl(34 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00020": { - "id": "shape:perf:00020", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 0, - "rot": 0, - "props": { - "w": 32, - "h": 29, - "fill": "hsl(165 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00021": { - "id": "shape:perf:00021", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 0, - "rot": 0, - "props": { - "w": 36, - "h": 37, - "fill": "hsl(29 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00022": { - "id": "shape:perf:00022", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 0, - "rot": 0, - "props": { - "w": 31, - "h": 39, - "fill": "hsl(331 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00023": { - "id": "shape:perf:00023", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 0, - "rot": 0, - "props": { - "w": 37, - "h": 39, - "fill": "hsl(261 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00024": { - "id": "shape:perf:00024", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 0, - "rot": 0, - "props": { - "w": 27, - "h": 24, - "fill": "hsl(119 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00025": { - "id": "shape:perf:00025", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 0, - "rot": 0, - "props": { - "w": 40, - "h": 36, - "fill": "hsl(263 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00026": { - "id": "shape:perf:00026", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 0, - "rot": 0, - "props": { - "w": 30, - "h": 37, - "fill": "hsl(159 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00027": { - "id": "shape:perf:00027", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 0, - "rot": 0, - "props": { - "w": 30, - "h": 39, - "fill": "hsl(155 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00028": { - "id": "shape:perf:00028", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 0, - "rot": 0, - "props": { - "w": 46, - "h": 30, - "fill": "hsl(85 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00029": { - "id": "shape:perf:00029", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 0, - "rot": 0, - "props": { - "w": 26, - "h": 37, - "fill": "hsl(250 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00030": { - "id": "shape:perf:00030", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 0, - "rot": 0, - "props": { - "w": 43, - "h": 29, - "fill": "hsl(338 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00031": { - "id": "shape:perf:00031", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 0, - "rot": 0, - "props": { - "w": 38, - "h": 44, - "fill": "hsl(85 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00032": { - "id": "shape:perf:00032", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 0, - "rot": 0, - "props": { - "w": 33, - "h": 47, - "fill": "hsl(109 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00033": { - "id": "shape:perf:00033", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 0, - "rot": 0, - "props": { - "w": 46, - "h": 36, - "fill": "hsl(267 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00034": { - "id": "shape:perf:00034", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 0, - "rot": 0, - "props": { - "w": 42, - "h": 37, - "fill": "hsl(196 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00035": { - "id": "shape:perf:00035", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 0, - "rot": 0, - "props": { - "w": 25, - "h": 32, - "fill": "hsl(25 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00036": { - "id": "shape:perf:00036", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 0, - "rot": 0, - "props": { - "w": 32, - "h": 26, - "fill": "hsl(147 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00037": { - "id": "shape:perf:00037", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 0, - "rot": 0, - "props": { - "w": 29, - "h": 40, - "fill": "hsl(18 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00038": { - "id": "shape:perf:00038", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 0, - "rot": 0, - "props": { - "w": 41, - "h": 36, - "fill": "hsl(168 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00039": { - "id": "shape:perf:00039", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 0, - "rot": 0, - "props": { - "w": 33, - "h": 33, - "fill": "hsl(314 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00040": { - "id": "shape:perf:00040", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 0, - "rot": 0, - "props": { - "w": 33, - "h": 35, - "fill": "hsl(125 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00041": { - "id": "shape:perf:00041", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 0, - "rot": 0, - "props": { - "w": 43, - "h": 34, - "fill": "hsl(182 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00042": { - "id": "shape:perf:00042", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 0, - "rot": 0, - "props": { - "w": 43, - "h": 40, - "fill": "hsl(309 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00043": { - "id": "shape:perf:00043", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 0, - "rot": 0, - "props": { - "w": 30, - "h": 38, - "fill": "hsl(267 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00044": { - "id": "shape:perf:00044", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 0, - "rot": 0, - "props": { - "w": 38, - "h": 37, - "fill": "hsl(94 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00045": { - "id": "shape:perf:00045", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 0, - "rot": 0, - "props": { - "w": 37, - "h": 34, - "fill": "hsl(175 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00046": { - "id": "shape:perf:00046", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 0, - "rot": 0, - "props": { - "w": 36, - "h": 46, - "fill": "hsl(5 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00047": { - "id": "shape:perf:00047", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 0, - "rot": 0, - "props": { - "w": 47, - "h": 37, - "fill": "hsl(6 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00048": { - "id": "shape:perf:00048", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 0, - "rot": 0, - "props": { - "w": 26, - "h": 28, - "fill": "hsl(276 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00049": { - "id": "shape:perf:00049", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 0, - "rot": 0, - "props": { - "w": 41, - "h": 27, - "fill": "hsl(224 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00050": { - "id": "shape:perf:00050", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 0, - "rot": 0, - "props": { - "w": 35, - "h": 40, - "fill": "hsl(127 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00051": { - "id": "shape:perf:00051", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 0, - "rot": 0, - "props": { - "w": 29, - "h": 35, - "fill": "hsl(183 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00052": { - "id": "shape:perf:00052", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 0, - "rot": 0, - "props": { - "w": 35, - "h": 44, - "fill": "hsl(118 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00053": { - "id": "shape:perf:00053", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 0, - "rot": 0, - "props": { - "w": 30, - "h": 37, - "fill": "hsl(141 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00054": { - "id": "shape:perf:00054", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 0, - "rot": 0, - "props": { - "w": 46, - "h": 46, - "fill": "hsl(347 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00055": { - "id": "shape:perf:00055", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 0, - "rot": 0, - "props": { - "w": 24, - "h": 46, - "fill": "hsl(97 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00056": { - "id": "shape:perf:00056", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 0, - "rot": 0, - "props": { - "w": 33, - "h": 30, - "fill": "hsl(275 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00057": { - "id": "shape:perf:00057", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 0, - "rot": 0, - "props": { - "w": 35, - "h": 24, - "fill": "hsl(197 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00058": { - "id": "shape:perf:00058", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 0, - "rot": 0, - "props": { - "w": 25, - "h": 45, - "fill": "hsl(245 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00059": { - "id": "shape:perf:00059", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 0, - "rot": 0, - "props": { - "w": 35, - "h": 35, - "fill": "hsl(206 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00060": { - "id": "shape:perf:00060", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 0, - "rot": 0, - "props": { - "w": 44, - "h": 34, - "fill": "hsl(3 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00061": { - "id": "shape:perf:00061", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 0, - "rot": 0, - "props": { - "w": 46, - "h": 40, - "fill": "hsl(254 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00062": { - "id": "shape:perf:00062", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 0, - "rot": 0, - "props": { - "w": 33, - "h": 34, - "fill": "hsl(330 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00063": { - "id": "shape:perf:00063", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 0, - "rot": 0, - "props": { - "w": 38, - "h": 37, - "fill": "hsl(17 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00064": { - "id": "shape:perf:00064", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 0, - "rot": 0, - "props": { - "w": 35, - "h": 25, - "fill": "hsl(160 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00065": { - "id": "shape:perf:00065", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 0, - "rot": 0, - "props": { - "w": 29, - "h": 46, - "fill": "hsl(225 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00066": { - "id": "shape:perf:00066", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 0, - "rot": 0, - "props": { - "w": 33, - "h": 34, - "fill": "hsl(263 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00067": { - "id": "shape:perf:00067", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 0, - "rot": 0, - "props": { - "w": 30, - "h": 46, - "fill": "hsl(47 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00068": { - "id": "shape:perf:00068", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 0, - "rot": 0, - "props": { - "w": 46, - "h": 46, - "fill": "hsl(171 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00069": { - "id": "shape:perf:00069", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 0, - "rot": 0, - "props": { - "w": 34, - "h": 44, - "fill": "hsl(354 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00070": { - "id": "shape:perf:00070", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 0, - "rot": 0, - "props": { - "w": 25, - "h": 35, - "fill": "hsl(325 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00071": { - "id": "shape:perf:00071", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 0, - "rot": 0, - "props": { - "w": 42, - "h": 26, - "fill": "hsl(83 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00072": { - "id": "shape:perf:00072", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 0, - "rot": 0, - "props": { - "w": 34, - "h": 31, - "fill": "hsl(51 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00073": { - "id": "shape:perf:00073", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 0, - "rot": 0, - "props": { - "w": 24, - "h": 37, - "fill": "hsl(248 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00074": { - "id": "shape:perf:00074", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 0, - "rot": 0, - "props": { - "w": 46, - "h": 39, - "fill": "hsl(342 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00075": { - "id": "shape:perf:00075", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 0, - "rot": 0, - "props": { - "w": 29, - "h": 43, - "fill": "hsl(115 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00076": { - "id": "shape:perf:00076", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 0, - "rot": 0, - "props": { - "w": 33, - "h": 32, - "fill": "hsl(332 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00077": { - "id": "shape:perf:00077", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 0, - "rot": 0, - "props": { - "w": 47, - "h": 41, - "fill": "hsl(12 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00078": { - "id": "shape:perf:00078", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 0, - "rot": 0, - "props": { - "w": 44, - "h": 44, - "fill": "hsl(129 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00079": { - "id": "shape:perf:00079", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 0, - "rot": 0, - "props": { - "w": 33, - "h": 37, - "fill": "hsl(308 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00080": { - "id": "shape:perf:00080", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 0, - "rot": 0, - "props": { - "w": 32, - "h": 25, - "fill": "hsl(24 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00081": { - "id": "shape:perf:00081", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 0, - "rot": 0, - "props": { - "w": 43, - "h": 31, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00082": { - "id": "shape:perf:00082", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 0, - "rot": 0, - "props": { - "w": 38, - "h": 29, - "fill": "hsl(180 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00083": { - "id": "shape:perf:00083", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 0, - "rot": 0, - "props": { - "w": 31, - "h": 42, - "fill": "hsl(69 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00084": { - "id": "shape:perf:00084", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 0, - "rot": 0, - "props": { - "w": 31, - "h": 24, - "fill": "hsl(32 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00085": { - "id": "shape:perf:00085", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 0, - "rot": 0, - "props": { - "w": 32, - "h": 38, - "fill": "hsl(39 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00086": { - "id": "shape:perf:00086", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 0, - "rot": 0, - "props": { - "w": 25, - "h": 40, - "fill": "hsl(343 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00087": { - "id": "shape:perf:00087", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 0, - "rot": 0, - "props": { - "w": 41, - "h": 34, - "fill": "hsl(328 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00088": { - "id": "shape:perf:00088", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 0, - "rot": 0, - "props": { - "w": 32, - "h": 46, - "fill": "hsl(87 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00089": { - "id": "shape:perf:00089", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 0, - "rot": 0, - "props": { - "w": 47, - "h": 24, - "fill": "hsl(35 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00090": { - "id": "shape:perf:00090", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 0, - "rot": 0, - "props": { - "w": 30, - "h": 25, - "fill": "hsl(86 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00091": { - "id": "shape:perf:00091", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 0, - "rot": 0, - "props": { - "w": 32, - "h": 37, - "fill": "hsl(278 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00092": { - "id": "shape:perf:00092", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 0, - "rot": 0, - "props": { - "w": 38, - "h": 42, - "fill": "hsl(47 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00093": { - "id": "shape:perf:00093", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 0, - "rot": 0, - "props": { - "w": 44, - "h": 36, - "fill": "hsl(235 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00094": { - "id": "shape:perf:00094", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 0, - "rot": 0, - "props": { - "w": 29, - "h": 27, - "fill": "hsl(71 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00095": { - "id": "shape:perf:00095", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 0, - "rot": 0, - "props": { - "w": 39, - "h": 42, - "fill": "hsl(54 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00096": { - "id": "shape:perf:00096", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 0, - "rot": 0, - "props": { - "w": 33, - "h": 28, - "fill": "hsl(281 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00097": { - "id": "shape:perf:00097", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 0, - "rot": 0, - "props": { - "w": 41, - "h": 38, - "fill": "hsl(297 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00098": { - "id": "shape:perf:00098", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 0, - "rot": 0, - "props": { - "w": 39, - "h": 33, - "fill": "hsl(173 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00099": { - "id": "shape:perf:00099", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 0, - "rot": 0, - "props": { - "w": 26, - "h": 44, - "fill": "hsl(63 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00100": { - "id": "shape:perf:00100", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 64, - "rot": 0, - "props": { - "w": 42, - "h": 30, - "fill": "hsl(287 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00101": { - "id": "shape:perf:00101", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 64, - "rot": 0, - "props": { - "w": 37, - "h": 44, - "fill": "hsl(231 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00102": { - "id": "shape:perf:00102", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 64, - "rot": 0, - "props": { - "w": 26, - "h": 35, - "fill": "hsl(322 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00103": { - "id": "shape:perf:00103", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 64, - "rot": 0, - "props": { - "w": 47, - "h": 46, - "fill": "hsl(358 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00104": { - "id": "shape:perf:00104", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 64, - "rot": 0, - "props": { - "w": 25, - "h": 26, - "fill": "hsl(165 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00105": { - "id": "shape:perf:00105", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 64, - "rot": 0, - "props": { - "w": 37, - "h": 31, - "fill": "hsl(161 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00106": { - "id": "shape:perf:00106", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 64, - "rot": 0, - "props": { - "w": 24, - "h": 38, - "fill": "hsl(216 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00107": { - "id": "shape:perf:00107", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 64, - "rot": 0, - "props": { - "w": 29, - "h": 46, - "fill": "hsl(282 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00108": { - "id": "shape:perf:00108", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 64, - "rot": 0, - "props": { - "w": 25, - "h": 27, - "fill": "hsl(320 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00109": { - "id": "shape:perf:00109", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 64, - "rot": 0, - "props": { - "w": 41, - "h": 43, - "fill": "hsl(157 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00110": { - "id": "shape:perf:00110", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 64, - "rot": 0, - "props": { - "w": 31, - "h": 37, - "fill": "hsl(135 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00111": { - "id": "shape:perf:00111", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 64, - "rot": 0, - "props": { - "w": 29, - "h": 34, - "fill": "hsl(180 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00112": { - "id": "shape:perf:00112", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 64, - "rot": 0, - "props": { - "w": 46, - "h": 27, - "fill": "hsl(214 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00113": { - "id": "shape:perf:00113", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 64, - "rot": 0, - "props": { - "w": 45, - "h": 45, - "fill": "hsl(334 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00114": { - "id": "shape:perf:00114", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 64, - "rot": 0, - "props": { - "w": 24, - "h": 44, - "fill": "hsl(156 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00115": { - "id": "shape:perf:00115", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 64, - "rot": 0, - "props": { - "w": 27, - "h": 33, - "fill": "hsl(174 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00116": { - "id": "shape:perf:00116", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 64, - "rot": 0, - "props": { - "w": 42, - "h": 36, - "fill": "hsl(27 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00117": { - "id": "shape:perf:00117", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 64, - "rot": 0, - "props": { - "w": 46, - "h": 45, - "fill": "hsl(88 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00118": { - "id": "shape:perf:00118", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 64, - "rot": 0, - "props": { - "w": 47, - "h": 24, - "fill": "hsl(202 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00119": { - "id": "shape:perf:00119", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 64, - "rot": 0, - "props": { - "w": 43, - "h": 30, - "fill": "hsl(133 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00120": { - "id": "shape:perf:00120", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 64, - "rot": 0, - "props": { - "w": 45, - "h": 36, - "fill": "hsl(96 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00121": { - "id": "shape:perf:00121", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 64, - "rot": 0, - "props": { - "w": 37, - "h": 44, - "fill": "hsl(46 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00122": { - "id": "shape:perf:00122", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 64, - "rot": 0, - "props": { - "w": 43, - "h": 40, - "fill": "hsl(179 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00123": { - "id": "shape:perf:00123", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 64, - "rot": 0, - "props": { - "w": 29, - "h": 35, - "fill": "hsl(349 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00124": { - "id": "shape:perf:00124", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 64, - "rot": 0, - "props": { - "w": 46, - "h": 27, - "fill": "hsl(0 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00125": { - "id": "shape:perf:00125", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 64, - "rot": 0, - "props": { - "w": 39, - "h": 44, - "fill": "hsl(44 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00126": { - "id": "shape:perf:00126", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 64, - "rot": 0, - "props": { - "w": 44, - "h": 31, - "fill": "hsl(306 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00127": { - "id": "shape:perf:00127", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 64, - "rot": 0, - "props": { - "w": 43, - "h": 31, - "fill": "hsl(14 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00128": { - "id": "shape:perf:00128", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 64, - "rot": 0, - "props": { - "w": 28, - "h": 36, - "fill": "hsl(291 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00129": { - "id": "shape:perf:00129", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 64, - "rot": 0, - "props": { - "w": 37, - "h": 45, - "fill": "hsl(125 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00130": { - "id": "shape:perf:00130", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 64, - "rot": 0, - "props": { - "w": 37, - "h": 45, - "fill": "hsl(3 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00131": { - "id": "shape:perf:00131", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 64, - "rot": 0, - "props": { - "w": 44, - "h": 30, - "fill": "hsl(41 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00132": { - "id": "shape:perf:00132", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 64, - "rot": 0, - "props": { - "w": 28, - "h": 31, - "fill": "hsl(246 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00133": { - "id": "shape:perf:00133", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 64, - "rot": 0, - "props": { - "w": 36, - "h": 46, - "fill": "hsl(196 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00134": { - "id": "shape:perf:00134", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 64, - "rot": 0, - "props": { - "w": 40, - "h": 34, - "fill": "hsl(280 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00135": { - "id": "shape:perf:00135", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 64, - "rot": 0, - "props": { - "w": 42, - "h": 31, - "fill": "hsl(297 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00136": { - "id": "shape:perf:00136", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 64, - "rot": 0, - "props": { - "w": 31, - "h": 24, - "fill": "hsl(234 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00137": { - "id": "shape:perf:00137", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 64, - "rot": 0, - "props": { - "w": 44, - "h": 44, - "fill": "hsl(149 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00138": { - "id": "shape:perf:00138", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 64, - "rot": 0, - "props": { - "w": 33, - "h": 33, - "fill": "hsl(266 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00139": { - "id": "shape:perf:00139", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 64, - "rot": 0, - "props": { - "w": 38, - "h": 42, - "fill": "hsl(140 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00140": { - "id": "shape:perf:00140", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 64, - "rot": 0, - "props": { - "w": 35, - "h": 45, - "fill": "hsl(98 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00141": { - "id": "shape:perf:00141", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 64, - "rot": 0, - "props": { - "w": 25, - "h": 32, - "fill": "hsl(190 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00142": { - "id": "shape:perf:00142", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 64, - "rot": 0, - "props": { - "w": 45, - "h": 34, - "fill": "hsl(196 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00143": { - "id": "shape:perf:00143", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 64, - "rot": 0, - "props": { - "w": 25, - "h": 47, - "fill": "hsl(50 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00144": { - "id": "shape:perf:00144", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 64, - "rot": 0, - "props": { - "w": 45, - "h": 25, - "fill": "hsl(162 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00145": { - "id": "shape:perf:00145", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 64, - "rot": 0, - "props": { - "w": 24, - "h": 46, - "fill": "hsl(132 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00146": { - "id": "shape:perf:00146", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 64, - "rot": 0, - "props": { - "w": 24, - "h": 46, - "fill": "hsl(239 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00147": { - "id": "shape:perf:00147", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 64, - "rot": 0, - "props": { - "w": 40, - "h": 36, - "fill": "hsl(129 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00148": { - "id": "shape:perf:00148", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 64, - "rot": 0, - "props": { - "w": 28, - "h": 32, - "fill": "hsl(30 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00149": { - "id": "shape:perf:00149", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 64, - "rot": 0, - "props": { - "w": 27, - "h": 28, - "fill": "hsl(119 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00150": { - "id": "shape:perf:00150", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 64, - "rot": 0, - "props": { - "w": 39, - "h": 31, - "fill": "hsl(106 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00151": { - "id": "shape:perf:00151", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 64, - "rot": 0, - "props": { - "w": 25, - "h": 37, - "fill": "hsl(268 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00152": { - "id": "shape:perf:00152", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 64, - "rot": 0, - "props": { - "w": 47, - "h": 37, - "fill": "hsl(196 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00153": { - "id": "shape:perf:00153", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 64, - "rot": 0, - "props": { - "w": 29, - "h": 25, - "fill": "hsl(238 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00154": { - "id": "shape:perf:00154", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 64, - "rot": 0, - "props": { - "w": 46, - "h": 29, - "fill": "hsl(153 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00155": { - "id": "shape:perf:00155", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 64, - "rot": 0, - "props": { - "w": 47, - "h": 38, - "fill": "hsl(85 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00156": { - "id": "shape:perf:00156", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 64, - "rot": 0, - "props": { - "w": 33, - "h": 26, - "fill": "hsl(342 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00157": { - "id": "shape:perf:00157", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 64, - "rot": 0, - "props": { - "w": 39, - "h": 37, - "fill": "hsl(255 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00158": { - "id": "shape:perf:00158", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 64, - "rot": 0, - "props": { - "w": 28, - "h": 33, - "fill": "hsl(98 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00159": { - "id": "shape:perf:00159", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 64, - "rot": 0, - "props": { - "w": 40, - "h": 35, - "fill": "hsl(38 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00160": { - "id": "shape:perf:00160", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 64, - "rot": 0, - "props": { - "w": 35, - "h": 42, - "fill": "hsl(258 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00161": { - "id": "shape:perf:00161", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 64, - "rot": 0, - "props": { - "w": 27, - "h": 45, - "fill": "hsl(346 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00162": { - "id": "shape:perf:00162", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 64, - "rot": 0, - "props": { - "w": 31, - "h": 46, - "fill": "hsl(222 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00163": { - "id": "shape:perf:00163", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 64, - "rot": 0, - "props": { - "w": 38, - "h": 40, - "fill": "hsl(177 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00164": { - "id": "shape:perf:00164", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 64, - "rot": 0, - "props": { - "w": 47, - "h": 34, - "fill": "hsl(325 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00165": { - "id": "shape:perf:00165", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 64, - "rot": 0, - "props": { - "w": 27, - "h": 45, - "fill": "hsl(263 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00166": { - "id": "shape:perf:00166", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 64, - "rot": 0, - "props": { - "w": 32, - "h": 37, - "fill": "hsl(261 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00167": { - "id": "shape:perf:00167", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 64, - "rot": 0, - "props": { - "w": 37, - "h": 37, - "fill": "hsl(280 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00168": { - "id": "shape:perf:00168", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 64, - "rot": 0, - "props": { - "w": 35, - "h": 33, - "fill": "hsl(98 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00169": { - "id": "shape:perf:00169", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 64, - "rot": 0, - "props": { - "w": 47, - "h": 41, - "fill": "hsl(176 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00170": { - "id": "shape:perf:00170", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 64, - "rot": 0, - "props": { - "w": 41, - "h": 40, - "fill": "hsl(314 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00171": { - "id": "shape:perf:00171", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 64, - "rot": 0, - "props": { - "w": 30, - "h": 40, - "fill": "hsl(191 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00172": { - "id": "shape:perf:00172", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 64, - "rot": 0, - "props": { - "w": 32, - "h": 30, - "fill": "hsl(53 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00173": { - "id": "shape:perf:00173", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 64, - "rot": 0, - "props": { - "w": 42, - "h": 47, - "fill": "hsl(59 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00174": { - "id": "shape:perf:00174", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 64, - "rot": 0, - "props": { - "w": 41, - "h": 40, - "fill": "hsl(245 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00175": { - "id": "shape:perf:00175", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 64, - "rot": 0, - "props": { - "w": 42, - "h": 34, - "fill": "hsl(311 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00176": { - "id": "shape:perf:00176", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 64, - "rot": 0, - "props": { - "w": 46, - "h": 25, - "fill": "hsl(152 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00177": { - "id": "shape:perf:00177", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 64, - "rot": 0, - "props": { - "w": 32, - "h": 27, - "fill": "hsl(341 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00178": { - "id": "shape:perf:00178", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 64, - "rot": 0, - "props": { - "w": 24, - "h": 32, - "fill": "hsl(279 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00179": { - "id": "shape:perf:00179", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 64, - "rot": 0, - "props": { - "w": 45, - "h": 34, - "fill": "hsl(159 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00180": { - "id": "shape:perf:00180", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 64, - "rot": 0, - "props": { - "w": 26, - "h": 45, - "fill": "hsl(128 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00181": { - "id": "shape:perf:00181", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 64, - "rot": 0, - "props": { - "w": 47, - "h": 46, - "fill": "hsl(148 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00182": { - "id": "shape:perf:00182", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 64, - "rot": 0, - "props": { - "w": 41, - "h": 47, - "fill": "hsl(174 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00183": { - "id": "shape:perf:00183", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 64, - "rot": 0, - "props": { - "w": 26, - "h": 32, - "fill": "hsl(194 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00184": { - "id": "shape:perf:00184", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 64, - "rot": 0, - "props": { - "w": 37, - "h": 35, - "fill": "hsl(355 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00185": { - "id": "shape:perf:00185", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 64, - "rot": 0, - "props": { - "w": 38, - "h": 37, - "fill": "hsl(351 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00186": { - "id": "shape:perf:00186", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 64, - "rot": 0, - "props": { - "w": 33, - "h": 25, - "fill": "hsl(203 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00187": { - "id": "shape:perf:00187", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 64, - "rot": 0, - "props": { - "w": 47, - "h": 45, - "fill": "hsl(286 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00188": { - "id": "shape:perf:00188", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 64, - "rot": 0, - "props": { - "w": 32, - "h": 45, - "fill": "hsl(102 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00189": { - "id": "shape:perf:00189", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 64, - "rot": 0, - "props": { - "w": 34, - "h": 37, - "fill": "hsl(8 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00190": { - "id": "shape:perf:00190", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 64, - "rot": 0, - "props": { - "w": 28, - "h": 38, - "fill": "hsl(67 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00191": { - "id": "shape:perf:00191", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 64, - "rot": 0, - "props": { - "w": 46, - "h": 46, - "fill": "hsl(229 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00192": { - "id": "shape:perf:00192", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 64, - "rot": 0, - "props": { - "w": 38, - "h": 27, - "fill": "hsl(148 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00193": { - "id": "shape:perf:00193", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 64, - "rot": 0, - "props": { - "w": 46, - "h": 35, - "fill": "hsl(73 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00194": { - "id": "shape:perf:00194", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 64, - "rot": 0, - "props": { - "w": 45, - "h": 41, - "fill": "hsl(244 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00195": { - "id": "shape:perf:00195", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 64, - "rot": 0, - "props": { - "w": 38, - "h": 41, - "fill": "hsl(180 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00196": { - "id": "shape:perf:00196", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 64, - "rot": 0, - "props": { - "w": 26, - "h": 34, - "fill": "hsl(245 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00197": { - "id": "shape:perf:00197", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 64, - "rot": 0, - "props": { - "w": 24, - "h": 27, - "fill": "hsl(272 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00198": { - "id": "shape:perf:00198", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 64, - "rot": 0, - "props": { - "w": 34, - "h": 25, - "fill": "hsl(261 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00199": { - "id": "shape:perf:00199", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 64, - "rot": 0, - "props": { - "w": 39, - "h": 46, - "fill": "hsl(105 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00200": { - "id": "shape:perf:00200", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 128, - "rot": 0, - "props": { - "w": 44, - "h": 35, - "fill": "hsl(33 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00201": { - "id": "shape:perf:00201", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 128, - "rot": 0, - "props": { - "w": 38, - "h": 41, - "fill": "hsl(302 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00202": { - "id": "shape:perf:00202", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 128, - "rot": 0, - "props": { - "w": 32, - "h": 25, - "fill": "hsl(29 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00203": { - "id": "shape:perf:00203", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 128, - "rot": 0, - "props": { - "w": 36, - "h": 44, - "fill": "hsl(270 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00204": { - "id": "shape:perf:00204", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 128, - "rot": 0, - "props": { - "w": 30, - "h": 41, - "fill": "hsl(191 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00205": { - "id": "shape:perf:00205", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 128, - "rot": 0, - "props": { - "w": 44, - "h": 34, - "fill": "hsl(79 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00206": { - "id": "shape:perf:00206", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 128, - "rot": 0, - "props": { - "w": 30, - "h": 47, - "fill": "hsl(331 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00207": { - "id": "shape:perf:00207", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 128, - "rot": 0, - "props": { - "w": 36, - "h": 36, - "fill": "hsl(233 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00208": { - "id": "shape:perf:00208", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 128, - "rot": 0, - "props": { - "w": 31, - "h": 45, - "fill": "hsl(5 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00209": { - "id": "shape:perf:00209", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 128, - "rot": 0, - "props": { - "w": 27, - "h": 27, - "fill": "hsl(301 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00210": { - "id": "shape:perf:00210", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 128, - "rot": 0, - "props": { - "w": 29, - "h": 31, - "fill": "hsl(155 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00211": { - "id": "shape:perf:00211", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 128, - "rot": 0, - "props": { - "w": 39, - "h": 38, - "fill": "hsl(357 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00212": { - "id": "shape:perf:00212", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 128, - "rot": 0, - "props": { - "w": 37, - "h": 40, - "fill": "hsl(211 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00213": { - "id": "shape:perf:00213", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 128, - "rot": 0, - "props": { - "w": 29, - "h": 47, - "fill": "hsl(19 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00214": { - "id": "shape:perf:00214", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 128, - "rot": 0, - "props": { - "w": 37, - "h": 38, - "fill": "hsl(103 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00215": { - "id": "shape:perf:00215", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 128, - "rot": 0, - "props": { - "w": 32, - "h": 39, - "fill": "hsl(229 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00216": { - "id": "shape:perf:00216", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 128, - "rot": 0, - "props": { - "w": 43, - "h": 46, - "fill": "hsl(253 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00217": { - "id": "shape:perf:00217", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 128, - "rot": 0, - "props": { - "w": 47, - "h": 39, - "fill": "hsl(224 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00218": { - "id": "shape:perf:00218", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 128, - "rot": 0, - "props": { - "w": 32, - "h": 36, - "fill": "hsl(14 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00219": { - "id": "shape:perf:00219", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 128, - "rot": 0, - "props": { - "w": 28, - "h": 28, - "fill": "hsl(0 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00220": { - "id": "shape:perf:00220", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 128, - "rot": 0, - "props": { - "w": 25, - "h": 41, - "fill": "hsl(87 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00221": { - "id": "shape:perf:00221", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 128, - "rot": 0, - "props": { - "w": 25, - "h": 46, - "fill": "hsl(250 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00222": { - "id": "shape:perf:00222", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 128, - "rot": 0, - "props": { - "w": 27, - "h": 41, - "fill": "hsl(234 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00223": { - "id": "shape:perf:00223", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 128, - "rot": 0, - "props": { - "w": 39, - "h": 46, - "fill": "hsl(288 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00224": { - "id": "shape:perf:00224", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 128, - "rot": 0, - "props": { - "w": 29, - "h": 32, - "fill": "hsl(175 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00225": { - "id": "shape:perf:00225", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 128, - "rot": 0, - "props": { - "w": 38, - "h": 36, - "fill": "hsl(136 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00226": { - "id": "shape:perf:00226", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 128, - "rot": 0, - "props": { - "w": 31, - "h": 47, - "fill": "hsl(233 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00227": { - "id": "shape:perf:00227", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 128, - "rot": 0, - "props": { - "w": 24, - "h": 30, - "fill": "hsl(350 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00228": { - "id": "shape:perf:00228", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 128, - "rot": 0, - "props": { - "w": 47, - "h": 28, - "fill": "hsl(247 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00229": { - "id": "shape:perf:00229", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 128, - "rot": 0, - "props": { - "w": 43, - "h": 40, - "fill": "hsl(248 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00230": { - "id": "shape:perf:00230", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 128, - "rot": 0, - "props": { - "w": 44, - "h": 32, - "fill": "hsl(218 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00231": { - "id": "shape:perf:00231", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 128, - "rot": 0, - "props": { - "w": 24, - "h": 39, - "fill": "hsl(72 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00232": { - "id": "shape:perf:00232", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 128, - "rot": 0, - "props": { - "w": 43, - "h": 37, - "fill": "hsl(25 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00233": { - "id": "shape:perf:00233", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 128, - "rot": 0, - "props": { - "w": 26, - "h": 24, - "fill": "hsl(321 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00234": { - "id": "shape:perf:00234", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 128, - "rot": 0, - "props": { - "w": 44, - "h": 24, - "fill": "hsl(9 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00235": { - "id": "shape:perf:00235", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 128, - "rot": 0, - "props": { - "w": 33, - "h": 26, - "fill": "hsl(260 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00236": { - "id": "shape:perf:00236", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 128, - "rot": 0, - "props": { - "w": 38, - "h": 35, - "fill": "hsl(143 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00237": { - "id": "shape:perf:00237", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 128, - "rot": 0, - "props": { - "w": 43, - "h": 36, - "fill": "hsl(207 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00238": { - "id": "shape:perf:00238", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 128, - "rot": 0, - "props": { - "w": 24, - "h": 40, - "fill": "hsl(265 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00239": { - "id": "shape:perf:00239", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 128, - "rot": 0, - "props": { - "w": 39, - "h": 33, - "fill": "hsl(130 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00240": { - "id": "shape:perf:00240", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 128, - "rot": 0, - "props": { - "w": 44, - "h": 41, - "fill": "hsl(155 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00241": { - "id": "shape:perf:00241", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 128, - "rot": 0, - "props": { - "w": 47, - "h": 32, - "fill": "hsl(349 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00242": { - "id": "shape:perf:00242", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 128, - "rot": 0, - "props": { - "w": 45, - "h": 36, - "fill": "hsl(136 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00243": { - "id": "shape:perf:00243", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 128, - "rot": 0, - "props": { - "w": 47, - "h": 41, - "fill": "hsl(328 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00244": { - "id": "shape:perf:00244", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 128, - "rot": 0, - "props": { - "w": 42, - "h": 38, - "fill": "hsl(335 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00245": { - "id": "shape:perf:00245", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 128, - "rot": 0, - "props": { - "w": 42, - "h": 46, - "fill": "hsl(118 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00246": { - "id": "shape:perf:00246", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 128, - "rot": 0, - "props": { - "w": 29, - "h": 45, - "fill": "hsl(247 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00247": { - "id": "shape:perf:00247", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 128, - "rot": 0, - "props": { - "w": 46, - "h": 33, - "fill": "hsl(114 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00248": { - "id": "shape:perf:00248", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 128, - "rot": 0, - "props": { - "w": 45, - "h": 33, - "fill": "hsl(5 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00249": { - "id": "shape:perf:00249", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 128, - "rot": 0, - "props": { - "w": 31, - "h": 43, - "fill": "hsl(149 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00250": { - "id": "shape:perf:00250", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 128, - "rot": 0, - "props": { - "w": 34, - "h": 40, - "fill": "hsl(196 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00251": { - "id": "shape:perf:00251", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 128, - "rot": 0, - "props": { - "w": 46, - "h": 43, - "fill": "hsl(126 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00252": { - "id": "shape:perf:00252", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 128, - "rot": 0, - "props": { - "w": 37, - "h": 32, - "fill": "hsl(10 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00253": { - "id": "shape:perf:00253", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 128, - "rot": 0, - "props": { - "w": 47, - "h": 41, - "fill": "hsl(132 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00254": { - "id": "shape:perf:00254", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 128, - "rot": 0, - "props": { - "w": 34, - "h": 29, - "fill": "hsl(16 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00255": { - "id": "shape:perf:00255", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 128, - "rot": 0, - "props": { - "w": 24, - "h": 25, - "fill": "hsl(238 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00256": { - "id": "shape:perf:00256", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 128, - "rot": 0, - "props": { - "w": 43, - "h": 40, - "fill": "hsl(90 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00257": { - "id": "shape:perf:00257", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 128, - "rot": 0, - "props": { - "w": 44, - "h": 37, - "fill": "hsl(198 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00258": { - "id": "shape:perf:00258", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 128, - "rot": 0, - "props": { - "w": 36, - "h": 42, - "fill": "hsl(20 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00259": { - "id": "shape:perf:00259", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 128, - "rot": 0, - "props": { - "w": 27, - "h": 30, - "fill": "hsl(136 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00260": { - "id": "shape:perf:00260", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 128, - "rot": 0, - "props": { - "w": 29, - "h": 47, - "fill": "hsl(17 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00261": { - "id": "shape:perf:00261", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 128, - "rot": 0, - "props": { - "w": 45, - "h": 25, - "fill": "hsl(41 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00262": { - "id": "shape:perf:00262", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 128, - "rot": 0, - "props": { - "w": 30, - "h": 24, - "fill": "hsl(6 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00263": { - "id": "shape:perf:00263", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 128, - "rot": 0, - "props": { - "w": 34, - "h": 46, - "fill": "hsl(260 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00264": { - "id": "shape:perf:00264", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 128, - "rot": 0, - "props": { - "w": 43, - "h": 47, - "fill": "hsl(135 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00265": { - "id": "shape:perf:00265", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 128, - "rot": 0, - "props": { - "w": 36, - "h": 27, - "fill": "hsl(124 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00266": { - "id": "shape:perf:00266", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 128, - "rot": 0, - "props": { - "w": 32, - "h": 44, - "fill": "hsl(341 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00267": { - "id": "shape:perf:00267", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 128, - "rot": 0, - "props": { - "w": 28, - "h": 46, - "fill": "hsl(96 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00268": { - "id": "shape:perf:00268", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 128, - "rot": 0, - "props": { - "w": 36, - "h": 37, - "fill": "hsl(243 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00269": { - "id": "shape:perf:00269", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 128, - "rot": 0, - "props": { - "w": 37, - "h": 26, - "fill": "hsl(49 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00270": { - "id": "shape:perf:00270", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 128, - "rot": 0, - "props": { - "w": 43, - "h": 44, - "fill": "hsl(330 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00271": { - "id": "shape:perf:00271", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 128, - "rot": 0, - "props": { - "w": 43, - "h": 39, - "fill": "hsl(275 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00272": { - "id": "shape:perf:00272", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 128, - "rot": 0, - "props": { - "w": 24, - "h": 33, - "fill": "hsl(207 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00273": { - "id": "shape:perf:00273", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 128, - "rot": 0, - "props": { - "w": 31, - "h": 25, - "fill": "hsl(17 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00274": { - "id": "shape:perf:00274", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 128, - "rot": 0, - "props": { - "w": 26, - "h": 46, - "fill": "hsl(156 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00275": { - "id": "shape:perf:00275", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 128, - "rot": 0, - "props": { - "w": 44, - "h": 42, - "fill": "hsl(265 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00276": { - "id": "shape:perf:00276", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 128, - "rot": 0, - "props": { - "w": 32, - "h": 43, - "fill": "hsl(355 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00277": { - "id": "shape:perf:00277", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 128, - "rot": 0, - "props": { - "w": 28, - "h": 43, - "fill": "hsl(300 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00278": { - "id": "shape:perf:00278", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 128, - "rot": 0, - "props": { - "w": 36, - "h": 41, - "fill": "hsl(182 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00279": { - "id": "shape:perf:00279", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 128, - "rot": 0, - "props": { - "w": 43, - "h": 36, - "fill": "hsl(88 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00280": { - "id": "shape:perf:00280", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 128, - "rot": 0, - "props": { - "w": 24, - "h": 36, - "fill": "hsl(157 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00281": { - "id": "shape:perf:00281", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 128, - "rot": 0, - "props": { - "w": 26, - "h": 25, - "fill": "hsl(154 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00282": { - "id": "shape:perf:00282", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 128, - "rot": 0, - "props": { - "w": 42, - "h": 40, - "fill": "hsl(132 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00283": { - "id": "shape:perf:00283", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 128, - "rot": 0, - "props": { - "w": 28, - "h": 47, - "fill": "hsl(175 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00284": { - "id": "shape:perf:00284", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 128, - "rot": 0, - "props": { - "w": 41, - "h": 35, - "fill": "hsl(288 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00285": { - "id": "shape:perf:00285", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 128, - "rot": 0, - "props": { - "w": 24, - "h": 27, - "fill": "hsl(252 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00286": { - "id": "shape:perf:00286", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 128, - "rot": 0, - "props": { - "w": 41, - "h": 27, - "fill": "hsl(29 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00287": { - "id": "shape:perf:00287", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 128, - "rot": 0, - "props": { - "w": 39, - "h": 35, - "fill": "hsl(61 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00288": { - "id": "shape:perf:00288", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 128, - "rot": 0, - "props": { - "w": 31, - "h": 45, - "fill": "hsl(255 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00289": { - "id": "shape:perf:00289", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 128, - "rot": 0, - "props": { - "w": 39, - "h": 24, - "fill": "hsl(201 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00290": { - "id": "shape:perf:00290", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 128, - "rot": 0, - "props": { - "w": 32, - "h": 37, - "fill": "hsl(186 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00291": { - "id": "shape:perf:00291", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 128, - "rot": 0, - "props": { - "w": 28, - "h": 26, - "fill": "hsl(297 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00292": { - "id": "shape:perf:00292", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 128, - "rot": 0, - "props": { - "w": 44, - "h": 31, - "fill": "hsl(124 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00293": { - "id": "shape:perf:00293", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 128, - "rot": 0, - "props": { - "w": 40, - "h": 33, - "fill": "hsl(48 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00294": { - "id": "shape:perf:00294", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 128, - "rot": 0, - "props": { - "w": 25, - "h": 40, - "fill": "hsl(156 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00295": { - "id": "shape:perf:00295", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 128, - "rot": 0, - "props": { - "w": 36, - "h": 45, - "fill": "hsl(172 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00296": { - "id": "shape:perf:00296", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 128, - "rot": 0, - "props": { - "w": 34, - "h": 25, - "fill": "hsl(136 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00297": { - "id": "shape:perf:00297", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 128, - "rot": 0, - "props": { - "w": 34, - "h": 44, - "fill": "hsl(59 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00298": { - "id": "shape:perf:00298", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 128, - "rot": 0, - "props": { - "w": 34, - "h": 45, - "fill": "hsl(238 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00299": { - "id": "shape:perf:00299", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 128, - "rot": 0, - "props": { - "w": 45, - "h": 39, - "fill": "hsl(124 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00300": { - "id": "shape:perf:00300", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 192, - "rot": 0, - "props": { - "w": 25, - "h": 40, - "fill": "hsl(88 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00301": { - "id": "shape:perf:00301", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 192, - "rot": 0, - "props": { - "w": 31, - "h": 29, - "fill": "hsl(294 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00302": { - "id": "shape:perf:00302", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 192, - "rot": 0, - "props": { - "w": 38, - "h": 27, - "fill": "hsl(214 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00303": { - "id": "shape:perf:00303", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 192, - "rot": 0, - "props": { - "w": 47, - "h": 31, - "fill": "hsl(179 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00304": { - "id": "shape:perf:00304", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 192, - "rot": 0, - "props": { - "w": 42, - "h": 27, - "fill": "hsl(21 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00305": { - "id": "shape:perf:00305", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 192, - "rot": 0, - "props": { - "w": 46, - "h": 32, - "fill": "hsl(193 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00306": { - "id": "shape:perf:00306", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 192, - "rot": 0, - "props": { - "w": 26, - "h": 47, - "fill": "hsl(180 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00307": { - "id": "shape:perf:00307", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 192, - "rot": 0, - "props": { - "w": 30, - "h": 42, - "fill": "hsl(235 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00308": { - "id": "shape:perf:00308", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 192, - "rot": 0, - "props": { - "w": 28, - "h": 38, - "fill": "hsl(292 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00309": { - "id": "shape:perf:00309", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 192, - "rot": 0, - "props": { - "w": 25, - "h": 32, - "fill": "hsl(244 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00310": { - "id": "shape:perf:00310", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 192, - "rot": 0, - "props": { - "w": 45, - "h": 26, - "fill": "hsl(138 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00311": { - "id": "shape:perf:00311", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 192, - "rot": 0, - "props": { - "w": 37, - "h": 45, - "fill": "hsl(173 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00312": { - "id": "shape:perf:00312", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 192, - "rot": 0, - "props": { - "w": 36, - "h": 43, - "fill": "hsl(250 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00313": { - "id": "shape:perf:00313", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 192, - "rot": 0, - "props": { - "w": 38, - "h": 38, - "fill": "hsl(4 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00314": { - "id": "shape:perf:00314", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 192, - "rot": 0, - "props": { - "w": 46, - "h": 34, - "fill": "hsl(128 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00315": { - "id": "shape:perf:00315", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 192, - "rot": 0, - "props": { - "w": 33, - "h": 35, - "fill": "hsl(67 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00316": { - "id": "shape:perf:00316", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 192, - "rot": 0, - "props": { - "w": 28, - "h": 33, - "fill": "hsl(237 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00317": { - "id": "shape:perf:00317", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 192, - "rot": 0, - "props": { - "w": 32, - "h": 35, - "fill": "hsl(133 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00318": { - "id": "shape:perf:00318", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 192, - "rot": 0, - "props": { - "w": 44, - "h": 30, - "fill": "hsl(285 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00319": { - "id": "shape:perf:00319", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 192, - "rot": 0, - "props": { - "w": 31, - "h": 39, - "fill": "hsl(62 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00320": { - "id": "shape:perf:00320", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 192, - "rot": 0, - "props": { - "w": 30, - "h": 30, - "fill": "hsl(207 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00321": { - "id": "shape:perf:00321", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 192, - "rot": 0, - "props": { - "w": 47, - "h": 27, - "fill": "hsl(358 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00322": { - "id": "shape:perf:00322", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 192, - "rot": 0, - "props": { - "w": 41, - "h": 28, - "fill": "hsl(257 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00323": { - "id": "shape:perf:00323", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 192, - "rot": 0, - "props": { - "w": 34, - "h": 27, - "fill": "hsl(25 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00324": { - "id": "shape:perf:00324", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 192, - "rot": 0, - "props": { - "w": 31, - "h": 46, - "fill": "hsl(219 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00325": { - "id": "shape:perf:00325", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 192, - "rot": 0, - "props": { - "w": 34, - "h": 35, - "fill": "hsl(130 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00326": { - "id": "shape:perf:00326", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 192, - "rot": 0, - "props": { - "w": 32, - "h": 29, - "fill": "hsl(61 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00327": { - "id": "shape:perf:00327", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 192, - "rot": 0, - "props": { - "w": 35, - "h": 40, - "fill": "hsl(168 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00328": { - "id": "shape:perf:00328", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 192, - "rot": 0, - "props": { - "w": 29, - "h": 28, - "fill": "hsl(235 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00329": { - "id": "shape:perf:00329", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 192, - "rot": 0, - "props": { - "w": 27, - "h": 32, - "fill": "hsl(206 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00330": { - "id": "shape:perf:00330", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 192, - "rot": 0, - "props": { - "w": 28, - "h": 28, - "fill": "hsl(204 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00331": { - "id": "shape:perf:00331", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 192, - "rot": 0, - "props": { - "w": 24, - "h": 27, - "fill": "hsl(19 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00332": { - "id": "shape:perf:00332", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 192, - "rot": 0, - "props": { - "w": 27, - "h": 33, - "fill": "hsl(338 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00333": { - "id": "shape:perf:00333", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 192, - "rot": 0, - "props": { - "w": 41, - "h": 44, - "fill": "hsl(200 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00334": { - "id": "shape:perf:00334", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 192, - "rot": 0, - "props": { - "w": 38, - "h": 44, - "fill": "hsl(77 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00335": { - "id": "shape:perf:00335", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 192, - "rot": 0, - "props": { - "w": 31, - "h": 47, - "fill": "hsl(39 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00336": { - "id": "shape:perf:00336", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 192, - "rot": 0, - "props": { - "w": 40, - "h": 41, - "fill": "hsl(69 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00337": { - "id": "shape:perf:00337", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 192, - "rot": 0, - "props": { - "w": 41, - "h": 27, - "fill": "hsl(241 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00338": { - "id": "shape:perf:00338", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 192, - "rot": 0, - "props": { - "w": 44, - "h": 35, - "fill": "hsl(200 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00339": { - "id": "shape:perf:00339", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 192, - "rot": 0, - "props": { - "w": 30, - "h": 24, - "fill": "hsl(173 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00340": { - "id": "shape:perf:00340", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 192, - "rot": 0, - "props": { - "w": 39, - "h": 41, - "fill": "hsl(331 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00341": { - "id": "shape:perf:00341", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 192, - "rot": 0, - "props": { - "w": 44, - "h": 42, - "fill": "hsl(174 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00342": { - "id": "shape:perf:00342", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 192, - "rot": 0, - "props": { - "w": 37, - "h": 28, - "fill": "hsl(285 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00343": { - "id": "shape:perf:00343", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 192, - "rot": 0, - "props": { - "w": 40, - "h": 31, - "fill": "hsl(172 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00344": { - "id": "shape:perf:00344", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 192, - "rot": 0, - "props": { - "w": 44, - "h": 46, - "fill": "hsl(257 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00345": { - "id": "shape:perf:00345", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 192, - "rot": 0, - "props": { - "w": 39, - "h": 46, - "fill": "hsl(279 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00346": { - "id": "shape:perf:00346", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 192, - "rot": 0, - "props": { - "w": 45, - "h": 41, - "fill": "hsl(341 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00347": { - "id": "shape:perf:00347", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 192, - "rot": 0, - "props": { - "w": 36, - "h": 45, - "fill": "hsl(133 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00348": { - "id": "shape:perf:00348", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 192, - "rot": 0, - "props": { - "w": 37, - "h": 32, - "fill": "hsl(241 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00349": { - "id": "shape:perf:00349", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 192, - "rot": 0, - "props": { - "w": 37, - "h": 47, - "fill": "hsl(24 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00350": { - "id": "shape:perf:00350", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 192, - "rot": 0, - "props": { - "w": 45, - "h": 46, - "fill": "hsl(197 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00351": { - "id": "shape:perf:00351", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 192, - "rot": 0, - "props": { - "w": 26, - "h": 37, - "fill": "hsl(146 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00352": { - "id": "shape:perf:00352", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 192, - "rot": 0, - "props": { - "w": 41, - "h": 37, - "fill": "hsl(94 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00353": { - "id": "shape:perf:00353", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 192, - "rot": 0, - "props": { - "w": 27, - "h": 24, - "fill": "hsl(82 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00354": { - "id": "shape:perf:00354", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 192, - "rot": 0, - "props": { - "w": 34, - "h": 47, - "fill": "hsl(151 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00355": { - "id": "shape:perf:00355", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 192, - "rot": 0, - "props": { - "w": 26, - "h": 25, - "fill": "hsl(182 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00356": { - "id": "shape:perf:00356", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 192, - "rot": 0, - "props": { - "w": 27, - "h": 45, - "fill": "hsl(119 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00357": { - "id": "shape:perf:00357", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 192, - "rot": 0, - "props": { - "w": 28, - "h": 36, - "fill": "hsl(336 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00358": { - "id": "shape:perf:00358", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 192, - "rot": 0, - "props": { - "w": 45, - "h": 37, - "fill": "hsl(129 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00359": { - "id": "shape:perf:00359", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 192, - "rot": 0, - "props": { - "w": 35, - "h": 30, - "fill": "hsl(30 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00360": { - "id": "shape:perf:00360", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 192, - "rot": 0, - "props": { - "w": 46, - "h": 39, - "fill": "hsl(352 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00361": { - "id": "shape:perf:00361", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 192, - "rot": 0, - "props": { - "w": 37, - "h": 25, - "fill": "hsl(24 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00362": { - "id": "shape:perf:00362", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 192, - "rot": 0, - "props": { - "w": 47, - "h": 44, - "fill": "hsl(227 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00363": { - "id": "shape:perf:00363", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 192, - "rot": 0, - "props": { - "w": 34, - "h": 26, - "fill": "hsl(228 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00364": { - "id": "shape:perf:00364", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 192, - "rot": 0, - "props": { - "w": 33, - "h": 47, - "fill": "hsl(198 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00365": { - "id": "shape:perf:00365", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 192, - "rot": 0, - "props": { - "w": 45, - "h": 27, - "fill": "hsl(106 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00366": { - "id": "shape:perf:00366", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 192, - "rot": 0, - "props": { - "w": 29, - "h": 45, - "fill": "hsl(202 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00367": { - "id": "shape:perf:00367", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 192, - "rot": 0, - "props": { - "w": 30, - "h": 38, - "fill": "hsl(9 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00368": { - "id": "shape:perf:00368", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 192, - "rot": 0, - "props": { - "w": 46, - "h": 36, - "fill": "hsl(357 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00369": { - "id": "shape:perf:00369", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 192, - "rot": 0, - "props": { - "w": 41, - "h": 27, - "fill": "hsl(159 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00370": { - "id": "shape:perf:00370", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 192, - "rot": 0, - "props": { - "w": 35, - "h": 37, - "fill": "hsl(234 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00371": { - "id": "shape:perf:00371", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 192, - "rot": 0, - "props": { - "w": 45, - "h": 26, - "fill": "hsl(247 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00372": { - "id": "shape:perf:00372", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 192, - "rot": 0, - "props": { - "w": 28, - "h": 24, - "fill": "hsl(97 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00373": { - "id": "shape:perf:00373", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 192, - "rot": 0, - "props": { - "w": 43, - "h": 46, - "fill": "hsl(141 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00374": { - "id": "shape:perf:00374", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 192, - "rot": 0, - "props": { - "w": 33, - "h": 29, - "fill": "hsl(11 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00375": { - "id": "shape:perf:00375", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 192, - "rot": 0, - "props": { - "w": 33, - "h": 38, - "fill": "hsl(26 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00376": { - "id": "shape:perf:00376", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 192, - "rot": 0, - "props": { - "w": 34, - "h": 36, - "fill": "hsl(224 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00377": { - "id": "shape:perf:00377", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 192, - "rot": 0, - "props": { - "w": 41, - "h": 24, - "fill": "hsl(214 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00378": { - "id": "shape:perf:00378", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 192, - "rot": 0, - "props": { - "w": 25, - "h": 33, - "fill": "hsl(56 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00379": { - "id": "shape:perf:00379", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 192, - "rot": 0, - "props": { - "w": 24, - "h": 36, - "fill": "hsl(35 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00380": { - "id": "shape:perf:00380", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 192, - "rot": 0, - "props": { - "w": 26, - "h": 29, - "fill": "hsl(303 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00381": { - "id": "shape:perf:00381", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 192, - "rot": 0, - "props": { - "w": 39, - "h": 27, - "fill": "hsl(179 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00382": { - "id": "shape:perf:00382", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 192, - "rot": 0, - "props": { - "w": 24, - "h": 28, - "fill": "hsl(15 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00383": { - "id": "shape:perf:00383", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 192, - "rot": 0, - "props": { - "w": 31, - "h": 41, - "fill": "hsl(176 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00384": { - "id": "shape:perf:00384", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 192, - "rot": 0, - "props": { - "w": 35, - "h": 27, - "fill": "hsl(319 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00385": { - "id": "shape:perf:00385", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 192, - "rot": 0, - "props": { - "w": 33, - "h": 38, - "fill": "hsl(139 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00386": { - "id": "shape:perf:00386", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 192, - "rot": 0, - "props": { - "w": 29, - "h": 35, - "fill": "hsl(170 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00387": { - "id": "shape:perf:00387", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 192, - "rot": 0, - "props": { - "w": 37, - "h": 42, - "fill": "hsl(59 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00388": { - "id": "shape:perf:00388", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 192, - "rot": 0, - "props": { - "w": 34, - "h": 35, - "fill": "hsl(160 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00389": { - "id": "shape:perf:00389", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 192, - "rot": 0, - "props": { - "w": 25, - "h": 33, - "fill": "hsl(179 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00390": { - "id": "shape:perf:00390", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 192, - "rot": 0, - "props": { - "w": 27, - "h": 44, - "fill": "hsl(346 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00391": { - "id": "shape:perf:00391", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 192, - "rot": 0, - "props": { - "w": 31, - "h": 39, - "fill": "hsl(42 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00392": { - "id": "shape:perf:00392", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 192, - "rot": 0, - "props": { - "w": 32, - "h": 44, - "fill": "hsl(120 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00393": { - "id": "shape:perf:00393", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 192, - "rot": 0, - "props": { - "w": 29, - "h": 43, - "fill": "hsl(146 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00394": { - "id": "shape:perf:00394", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 192, - "rot": 0, - "props": { - "w": 43, - "h": 42, - "fill": "hsl(148 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00395": { - "id": "shape:perf:00395", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 192, - "rot": 0, - "props": { - "w": 39, - "h": 44, - "fill": "hsl(168 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00396": { - "id": "shape:perf:00396", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 192, - "rot": 0, - "props": { - "w": 33, - "h": 35, - "fill": "hsl(292 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00397": { - "id": "shape:perf:00397", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 192, - "rot": 0, - "props": { - "w": 28, - "h": 31, - "fill": "hsl(1 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00398": { - "id": "shape:perf:00398", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 192, - "rot": 0, - "props": { - "w": 24, - "h": 45, - "fill": "hsl(266 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00399": { - "id": "shape:perf:00399", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 192, - "rot": 0, - "props": { - "w": 38, - "h": 37, - "fill": "hsl(204 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00400": { - "id": "shape:perf:00400", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 256, - "rot": 0, - "props": { - "w": 29, - "h": 30, - "fill": "hsl(64 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00401": { - "id": "shape:perf:00401", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 256, - "rot": 0, - "props": { - "w": 24, - "h": 47, - "fill": "hsl(223 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00402": { - "id": "shape:perf:00402", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 256, - "rot": 0, - "props": { - "w": 45, - "h": 45, - "fill": "hsl(333 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00403": { - "id": "shape:perf:00403", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 256, - "rot": 0, - "props": { - "w": 28, - "h": 41, - "fill": "hsl(134 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00404": { - "id": "shape:perf:00404", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 256, - "rot": 0, - "props": { - "w": 43, - "h": 40, - "fill": "hsl(100 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00405": { - "id": "shape:perf:00405", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 256, - "rot": 0, - "props": { - "w": 29, - "h": 29, - "fill": "hsl(20 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00406": { - "id": "shape:perf:00406", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 256, - "rot": 0, - "props": { - "w": 46, - "h": 40, - "fill": "hsl(82 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00407": { - "id": "shape:perf:00407", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 256, - "rot": 0, - "props": { - "w": 39, - "h": 33, - "fill": "hsl(178 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00408": { - "id": "shape:perf:00408", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 256, - "rot": 0, - "props": { - "w": 44, - "h": 27, - "fill": "hsl(271 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00409": { - "id": "shape:perf:00409", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 256, - "rot": 0, - "props": { - "w": 46, - "h": 24, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00410": { - "id": "shape:perf:00410", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 256, - "rot": 0, - "props": { - "w": 34, - "h": 46, - "fill": "hsl(206 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00411": { - "id": "shape:perf:00411", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 256, - "rot": 0, - "props": { - "w": 45, - "h": 28, - "fill": "hsl(207 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00412": { - "id": "shape:perf:00412", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 256, - "rot": 0, - "props": { - "w": 26, - "h": 40, - "fill": "hsl(53 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00413": { - "id": "shape:perf:00413", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 256, - "rot": 0, - "props": { - "w": 24, - "h": 34, - "fill": "hsl(138 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00414": { - "id": "shape:perf:00414", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 256, - "rot": 0, - "props": { - "w": 41, - "h": 39, - "fill": "hsl(107 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00415": { - "id": "shape:perf:00415", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 256, - "rot": 0, - "props": { - "w": 38, - "h": 47, - "fill": "hsl(341 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00416": { - "id": "shape:perf:00416", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 256, - "rot": 0, - "props": { - "w": 41, - "h": 43, - "fill": "hsl(97 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00417": { - "id": "shape:perf:00417", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 256, - "rot": 0, - "props": { - "w": 29, - "h": 37, - "fill": "hsl(133 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00418": { - "id": "shape:perf:00418", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 256, - "rot": 0, - "props": { - "w": 43, - "h": 41, - "fill": "hsl(288 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00419": { - "id": "shape:perf:00419", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 256, - "rot": 0, - "props": { - "w": 25, - "h": 30, - "fill": "hsl(259 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00420": { - "id": "shape:perf:00420", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 256, - "rot": 0, - "props": { - "w": 34, - "h": 30, - "fill": "hsl(125 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00421": { - "id": "shape:perf:00421", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 256, - "rot": 0, - "props": { - "w": 46, - "h": 38, - "fill": "hsl(77 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00422": { - "id": "shape:perf:00422", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 256, - "rot": 0, - "props": { - "w": 32, - "h": 31, - "fill": "hsl(278 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00423": { - "id": "shape:perf:00423", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 256, - "rot": 0, - "props": { - "w": 37, - "h": 44, - "fill": "hsl(267 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00424": { - "id": "shape:perf:00424", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 256, - "rot": 0, - "props": { - "w": 30, - "h": 29, - "fill": "hsl(325 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00425": { - "id": "shape:perf:00425", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 256, - "rot": 0, - "props": { - "w": 32, - "h": 42, - "fill": "hsl(220 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00426": { - "id": "shape:perf:00426", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 256, - "rot": 0, - "props": { - "w": 25, - "h": 42, - "fill": "hsl(13 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00427": { - "id": "shape:perf:00427", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 256, - "rot": 0, - "props": { - "w": 40, - "h": 34, - "fill": "hsl(28 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00428": { - "id": "shape:perf:00428", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 256, - "rot": 0, - "props": { - "w": 33, - "h": 40, - "fill": "hsl(151 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00429": { - "id": "shape:perf:00429", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 256, - "rot": 0, - "props": { - "w": 35, - "h": 39, - "fill": "hsl(237 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00430": { - "id": "shape:perf:00430", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 256, - "rot": 0, - "props": { - "w": 43, - "h": 24, - "fill": "hsl(68 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00431": { - "id": "shape:perf:00431", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 256, - "rot": 0, - "props": { - "w": 29, - "h": 42, - "fill": "hsl(340 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00432": { - "id": "shape:perf:00432", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 256, - "rot": 0, - "props": { - "w": 46, - "h": 32, - "fill": "hsl(61 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00433": { - "id": "shape:perf:00433", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 256, - "rot": 0, - "props": { - "w": 47, - "h": 24, - "fill": "hsl(262 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00434": { - "id": "shape:perf:00434", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 256, - "rot": 0, - "props": { - "w": 24, - "h": 33, - "fill": "hsl(211 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00435": { - "id": "shape:perf:00435", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 256, - "rot": 0, - "props": { - "w": 27, - "h": 41, - "fill": "hsl(102 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00436": { - "id": "shape:perf:00436", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 256, - "rot": 0, - "props": { - "w": 40, - "h": 28, - "fill": "hsl(294 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00437": { - "id": "shape:perf:00437", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 256, - "rot": 0, - "props": { - "w": 27, - "h": 39, - "fill": "hsl(234 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00438": { - "id": "shape:perf:00438", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 256, - "rot": 0, - "props": { - "w": 36, - "h": 27, - "fill": "hsl(122 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00439": { - "id": "shape:perf:00439", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 256, - "rot": 0, - "props": { - "w": 28, - "h": 35, - "fill": "hsl(133 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00440": { - "id": "shape:perf:00440", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 256, - "rot": 0, - "props": { - "w": 43, - "h": 35, - "fill": "hsl(229 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00441": { - "id": "shape:perf:00441", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 256, - "rot": 0, - "props": { - "w": 26, - "h": 37, - "fill": "hsl(86 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00442": { - "id": "shape:perf:00442", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 256, - "rot": 0, - "props": { - "w": 31, - "h": 46, - "fill": "hsl(130 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00443": { - "id": "shape:perf:00443", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 256, - "rot": 0, - "props": { - "w": 39, - "h": 40, - "fill": "hsl(51 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00444": { - "id": "shape:perf:00444", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 256, - "rot": 0, - "props": { - "w": 36, - "h": 29, - "fill": "hsl(181 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00445": { - "id": "shape:perf:00445", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 256, - "rot": 0, - "props": { - "w": 34, - "h": 34, - "fill": "hsl(167 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00446": { - "id": "shape:perf:00446", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 256, - "rot": 0, - "props": { - "w": 39, - "h": 37, - "fill": "hsl(238 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00447": { - "id": "shape:perf:00447", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 256, - "rot": 0, - "props": { - "w": 43, - "h": 41, - "fill": "hsl(64 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00448": { - "id": "shape:perf:00448", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 256, - "rot": 0, - "props": { - "w": 31, - "h": 46, - "fill": "hsl(336 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00449": { - "id": "shape:perf:00449", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 256, - "rot": 0, - "props": { - "w": 30, - "h": 36, - "fill": "hsl(300 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00450": { - "id": "shape:perf:00450", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 256, - "rot": 0, - "props": { - "w": 43, - "h": 29, - "fill": "hsl(144 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00451": { - "id": "shape:perf:00451", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 256, - "rot": 0, - "props": { - "w": 47, - "h": 44, - "fill": "hsl(176 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00452": { - "id": "shape:perf:00452", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 256, - "rot": 0, - "props": { - "w": 45, - "h": 25, - "fill": "hsl(317 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00453": { - "id": "shape:perf:00453", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 256, - "rot": 0, - "props": { - "w": 39, - "h": 27, - "fill": "hsl(275 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00454": { - "id": "shape:perf:00454", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 256, - "rot": 0, - "props": { - "w": 32, - "h": 32, - "fill": "hsl(149 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00455": { - "id": "shape:perf:00455", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 256, - "rot": 0, - "props": { - "w": 39, - "h": 41, - "fill": "hsl(189 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00456": { - "id": "shape:perf:00456", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 256, - "rot": 0, - "props": { - "w": 39, - "h": 27, - "fill": "hsl(26 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00457": { - "id": "shape:perf:00457", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 256, - "rot": 0, - "props": { - "w": 42, - "h": 32, - "fill": "hsl(352 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00458": { - "id": "shape:perf:00458", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 256, - "rot": 0, - "props": { - "w": 37, - "h": 37, - "fill": "hsl(76 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00459": { - "id": "shape:perf:00459", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 256, - "rot": 0, - "props": { - "w": 25, - "h": 40, - "fill": "hsl(45 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00460": { - "id": "shape:perf:00460", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 256, - "rot": 0, - "props": { - "w": 40, - "h": 30, - "fill": "hsl(7 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00461": { - "id": "shape:perf:00461", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 256, - "rot": 0, - "props": { - "w": 47, - "h": 35, - "fill": "hsl(92 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00462": { - "id": "shape:perf:00462", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 256, - "rot": 0, - "props": { - "w": 39, - "h": 28, - "fill": "hsl(242 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00463": { - "id": "shape:perf:00463", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 256, - "rot": 0, - "props": { - "w": 34, - "h": 36, - "fill": "hsl(94 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00464": { - "id": "shape:perf:00464", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 256, - "rot": 0, - "props": { - "w": 44, - "h": 38, - "fill": "hsl(33 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00465": { - "id": "shape:perf:00465", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 256, - "rot": 0, - "props": { - "w": 47, - "h": 36, - "fill": "hsl(23 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00466": { - "id": "shape:perf:00466", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 256, - "rot": 0, - "props": { - "w": 44, - "h": 34, - "fill": "hsl(333 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00467": { - "id": "shape:perf:00467", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 256, - "rot": 0, - "props": { - "w": 47, - "h": 31, - "fill": "hsl(289 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00468": { - "id": "shape:perf:00468", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 256, - "rot": 0, - "props": { - "w": 34, - "h": 29, - "fill": "hsl(73 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00469": { - "id": "shape:perf:00469", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 256, - "rot": 0, - "props": { - "w": 39, - "h": 42, - "fill": "hsl(310 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00470": { - "id": "shape:perf:00470", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 256, - "rot": 0, - "props": { - "w": 26, - "h": 31, - "fill": "hsl(54 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00471": { - "id": "shape:perf:00471", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 256, - "rot": 0, - "props": { - "w": 36, - "h": 33, - "fill": "hsl(254 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00472": { - "id": "shape:perf:00472", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 256, - "rot": 0, - "props": { - "w": 46, - "h": 29, - "fill": "hsl(6 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00473": { - "id": "shape:perf:00473", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 256, - "rot": 0, - "props": { - "w": 38, - "h": 33, - "fill": "hsl(51 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00474": { - "id": "shape:perf:00474", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 256, - "rot": 0, - "props": { - "w": 36, - "h": 43, - "fill": "hsl(99 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00475": { - "id": "shape:perf:00475", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 256, - "rot": 0, - "props": { - "w": 31, - "h": 30, - "fill": "hsl(100 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00476": { - "id": "shape:perf:00476", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 256, - "rot": 0, - "props": { - "w": 28, - "h": 25, - "fill": "hsl(281 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00477": { - "id": "shape:perf:00477", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 256, - "rot": 0, - "props": { - "w": 25, - "h": 42, - "fill": "hsl(176 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00478": { - "id": "shape:perf:00478", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 256, - "rot": 0, - "props": { - "w": 40, - "h": 47, - "fill": "hsl(294 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00479": { - "id": "shape:perf:00479", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 256, - "rot": 0, - "props": { - "w": 25, - "h": 42, - "fill": "hsl(174 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00480": { - "id": "shape:perf:00480", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 256, - "rot": 0, - "props": { - "w": 41, - "h": 32, - "fill": "hsl(37 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00481": { - "id": "shape:perf:00481", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 256, - "rot": 0, - "props": { - "w": 30, - "h": 43, - "fill": "hsl(76 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00482": { - "id": "shape:perf:00482", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 256, - "rot": 0, - "props": { - "w": 45, - "h": 40, - "fill": "hsl(127 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00483": { - "id": "shape:perf:00483", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 256, - "rot": 0, - "props": { - "w": 38, - "h": 24, - "fill": "hsl(153 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00484": { - "id": "shape:perf:00484", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 256, - "rot": 0, - "props": { - "w": 41, - "h": 47, - "fill": "hsl(124 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00485": { - "id": "shape:perf:00485", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 256, - "rot": 0, - "props": { - "w": 43, - "h": 39, - "fill": "hsl(123 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00486": { - "id": "shape:perf:00486", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 256, - "rot": 0, - "props": { - "w": 42, - "h": 35, - "fill": "hsl(118 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00487": { - "id": "shape:perf:00487", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 256, - "rot": 0, - "props": { - "w": 41, - "h": 26, - "fill": "hsl(153 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00488": { - "id": "shape:perf:00488", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 256, - "rot": 0, - "props": { - "w": 36, - "h": 24, - "fill": "hsl(155 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00489": { - "id": "shape:perf:00489", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 256, - "rot": 0, - "props": { - "w": 47, - "h": 32, - "fill": "hsl(21 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00490": { - "id": "shape:perf:00490", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 256, - "rot": 0, - "props": { - "w": 38, - "h": 40, - "fill": "hsl(80 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00491": { - "id": "shape:perf:00491", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 256, - "rot": 0, - "props": { - "w": 43, - "h": 47, - "fill": "hsl(149 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00492": { - "id": "shape:perf:00492", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 256, - "rot": 0, - "props": { - "w": 28, - "h": 35, - "fill": "hsl(77 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00493": { - "id": "shape:perf:00493", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 256, - "rot": 0, - "props": { - "w": 29, - "h": 30, - "fill": "hsl(291 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00494": { - "id": "shape:perf:00494", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 256, - "rot": 0, - "props": { - "w": 39, - "h": 44, - "fill": "hsl(101 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00495": { - "id": "shape:perf:00495", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 256, - "rot": 0, - "props": { - "w": 41, - "h": 39, - "fill": "hsl(183 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00496": { - "id": "shape:perf:00496", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 256, - "rot": 0, - "props": { - "w": 35, - "h": 33, - "fill": "hsl(279 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00497": { - "id": "shape:perf:00497", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 256, - "rot": 0, - "props": { - "w": 38, - "h": 35, - "fill": "hsl(247 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00498": { - "id": "shape:perf:00498", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 256, - "rot": 0, - "props": { - "w": 26, - "h": 42, - "fill": "hsl(112 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00499": { - "id": "shape:perf:00499", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 256, - "rot": 0, - "props": { - "w": 39, - "h": 42, - "fill": "hsl(346 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00500": { - "id": "shape:perf:00500", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 320, - "rot": 0, - "props": { - "w": 47, - "h": 42, - "fill": "hsl(77 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00501": { - "id": "shape:perf:00501", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 320, - "rot": 0, - "props": { - "w": 37, - "h": 40, - "fill": "hsl(321 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00502": { - "id": "shape:perf:00502", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 320, - "rot": 0, - "props": { - "w": 34, - "h": 47, - "fill": "hsl(98 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00503": { - "id": "shape:perf:00503", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 320, - "rot": 0, - "props": { - "w": 45, - "h": 42, - "fill": "hsl(327 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00504": { - "id": "shape:perf:00504", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 320, - "rot": 0, - "props": { - "w": 25, - "h": 25, - "fill": "hsl(300 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00505": { - "id": "shape:perf:00505", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 320, - "rot": 0, - "props": { - "w": 34, - "h": 44, - "fill": "hsl(95 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00506": { - "id": "shape:perf:00506", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 320, - "rot": 0, - "props": { - "w": 32, - "h": 42, - "fill": "hsl(228 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00507": { - "id": "shape:perf:00507", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 320, - "rot": 0, - "props": { - "w": 34, - "h": 26, - "fill": "hsl(220 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00508": { - "id": "shape:perf:00508", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 320, - "rot": 0, - "props": { - "w": 42, - "h": 26, - "fill": "hsl(291 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00509": { - "id": "shape:perf:00509", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 320, - "rot": 0, - "props": { - "w": 33, - "h": 28, - "fill": "hsl(83 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00510": { - "id": "shape:perf:00510", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 320, - "rot": 0, - "props": { - "w": 44, - "h": 32, - "fill": "hsl(277 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00511": { - "id": "shape:perf:00511", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 320, - "rot": 0, - "props": { - "w": 42, - "h": 32, - "fill": "hsl(19 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00512": { - "id": "shape:perf:00512", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 320, - "rot": 0, - "props": { - "w": 45, - "h": 33, - "fill": "hsl(256 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00513": { - "id": "shape:perf:00513", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 320, - "rot": 0, - "props": { - "w": 27, - "h": 41, - "fill": "hsl(249 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00514": { - "id": "shape:perf:00514", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 320, - "rot": 0, - "props": { - "w": 38, - "h": 32, - "fill": "hsl(293 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00515": { - "id": "shape:perf:00515", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 320, - "rot": 0, - "props": { - "w": 31, - "h": 34, - "fill": "hsl(45 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00516": { - "id": "shape:perf:00516", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 320, - "rot": 0, - "props": { - "w": 30, - "h": 33, - "fill": "hsl(178 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00517": { - "id": "shape:perf:00517", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 320, - "rot": 0, - "props": { - "w": 25, - "h": 30, - "fill": "hsl(237 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00518": { - "id": "shape:perf:00518", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 320, - "rot": 0, - "props": { - "w": 44, - "h": 32, - "fill": "hsl(287 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00519": { - "id": "shape:perf:00519", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 320, - "rot": 0, - "props": { - "w": 39, - "h": 44, - "fill": "hsl(283 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00520": { - "id": "shape:perf:00520", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 320, - "rot": 0, - "props": { - "w": 46, - "h": 32, - "fill": "hsl(277 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00521": { - "id": "shape:perf:00521", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 320, - "rot": 0, - "props": { - "w": 26, - "h": 44, - "fill": "hsl(244 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00522": { - "id": "shape:perf:00522", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 320, - "rot": 0, - "props": { - "w": 46, - "h": 40, - "fill": "hsl(337 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00523": { - "id": "shape:perf:00523", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 320, - "rot": 0, - "props": { - "w": 35, - "h": 35, - "fill": "hsl(320 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00524": { - "id": "shape:perf:00524", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 320, - "rot": 0, - "props": { - "w": 42, - "h": 35, - "fill": "hsl(198 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00525": { - "id": "shape:perf:00525", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 320, - "rot": 0, - "props": { - "w": 31, - "h": 37, - "fill": "hsl(122 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00526": { - "id": "shape:perf:00526", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 320, - "rot": 0, - "props": { - "w": 31, - "h": 28, - "fill": "hsl(158 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00527": { - "id": "shape:perf:00527", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 320, - "rot": 0, - "props": { - "w": 46, - "h": 33, - "fill": "hsl(206 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00528": { - "id": "shape:perf:00528", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 320, - "rot": 0, - "props": { - "w": 45, - "h": 38, - "fill": "hsl(270 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00529": { - "id": "shape:perf:00529", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 320, - "rot": 0, - "props": { - "w": 38, - "h": 44, - "fill": "hsl(151 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00530": { - "id": "shape:perf:00530", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 320, - "rot": 0, - "props": { - "w": 40, - "h": 37, - "fill": "hsl(69 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00531": { - "id": "shape:perf:00531", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 320, - "rot": 0, - "props": { - "w": 33, - "h": 38, - "fill": "hsl(151 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00532": { - "id": "shape:perf:00532", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 320, - "rot": 0, - "props": { - "w": 35, - "h": 25, - "fill": "hsl(29 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00533": { - "id": "shape:perf:00533", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 320, - "rot": 0, - "props": { - "w": 41, - "h": 29, - "fill": "hsl(164 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00534": { - "id": "shape:perf:00534", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 320, - "rot": 0, - "props": { - "w": 44, - "h": 28, - "fill": "hsl(52 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00535": { - "id": "shape:perf:00535", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 320, - "rot": 0, - "props": { - "w": 33, - "h": 26, - "fill": "hsl(277 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00536": { - "id": "shape:perf:00536", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 320, - "rot": 0, - "props": { - "w": 25, - "h": 39, - "fill": "hsl(83 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00537": { - "id": "shape:perf:00537", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 320, - "rot": 0, - "props": { - "w": 33, - "h": 33, - "fill": "hsl(291 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00538": { - "id": "shape:perf:00538", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 320, - "rot": 0, - "props": { - "w": 35, - "h": 25, - "fill": "hsl(124 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00539": { - "id": "shape:perf:00539", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 320, - "rot": 0, - "props": { - "w": 24, - "h": 44, - "fill": "hsl(325 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00540": { - "id": "shape:perf:00540", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 320, - "rot": 0, - "props": { - "w": 42, - "h": 28, - "fill": "hsl(131 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00541": { - "id": "shape:perf:00541", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 320, - "rot": 0, - "props": { - "w": 34, - "h": 35, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00542": { - "id": "shape:perf:00542", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 320, - "rot": 0, - "props": { - "w": 33, - "h": 47, - "fill": "hsl(306 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00543": { - "id": "shape:perf:00543", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 320, - "rot": 0, - "props": { - "w": 38, - "h": 28, - "fill": "hsl(346 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00544": { - "id": "shape:perf:00544", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 320, - "rot": 0, - "props": { - "w": 35, - "h": 24, - "fill": "hsl(141 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00545": { - "id": "shape:perf:00545", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 320, - "rot": 0, - "props": { - "w": 45, - "h": 30, - "fill": "hsl(84 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00546": { - "id": "shape:perf:00546", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 320, - "rot": 0, - "props": { - "w": 35, - "h": 42, - "fill": "hsl(8 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00547": { - "id": "shape:perf:00547", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 320, - "rot": 0, - "props": { - "w": 35, - "h": 46, - "fill": "hsl(297 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00548": { - "id": "shape:perf:00548", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 320, - "rot": 0, - "props": { - "w": 27, - "h": 45, - "fill": "hsl(191 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00549": { - "id": "shape:perf:00549", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 320, - "rot": 0, - "props": { - "w": 45, - "h": 42, - "fill": "hsl(338 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00550": { - "id": "shape:perf:00550", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 320, - "rot": 0, - "props": { - "w": 40, - "h": 44, - "fill": "hsl(332 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00551": { - "id": "shape:perf:00551", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 320, - "rot": 0, - "props": { - "w": 25, - "h": 41, - "fill": "hsl(126 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00552": { - "id": "shape:perf:00552", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 320, - "rot": 0, - "props": { - "w": 25, - "h": 36, - "fill": "hsl(32 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00553": { - "id": "shape:perf:00553", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 320, - "rot": 0, - "props": { - "w": 44, - "h": 33, - "fill": "hsl(332 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00554": { - "id": "shape:perf:00554", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 320, - "rot": 0, - "props": { - "w": 41, - "h": 46, - "fill": "hsl(286 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00555": { - "id": "shape:perf:00555", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 320, - "rot": 0, - "props": { - "w": 25, - "h": 26, - "fill": "hsl(227 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00556": { - "id": "shape:perf:00556", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 320, - "rot": 0, - "props": { - "w": 25, - "h": 27, - "fill": "hsl(194 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00557": { - "id": "shape:perf:00557", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 320, - "rot": 0, - "props": { - "w": 37, - "h": 44, - "fill": "hsl(322 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00558": { - "id": "shape:perf:00558", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 320, - "rot": 0, - "props": { - "w": 28, - "h": 47, - "fill": "hsl(321 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00559": { - "id": "shape:perf:00559", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 320, - "rot": 0, - "props": { - "w": 25, - "h": 33, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00560": { - "id": "shape:perf:00560", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 320, - "rot": 0, - "props": { - "w": 40, - "h": 39, - "fill": "hsl(89 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00561": { - "id": "shape:perf:00561", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 320, - "rot": 0, - "props": { - "w": 42, - "h": 31, - "fill": "hsl(308 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00562": { - "id": "shape:perf:00562", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 320, - "rot": 0, - "props": { - "w": 30, - "h": 31, - "fill": "hsl(31 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00563": { - "id": "shape:perf:00563", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 320, - "rot": 0, - "props": { - "w": 29, - "h": 38, - "fill": "hsl(175 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00564": { - "id": "shape:perf:00564", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 320, - "rot": 0, - "props": { - "w": 36, - "h": 39, - "fill": "hsl(174 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00565": { - "id": "shape:perf:00565", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 320, - "rot": 0, - "props": { - "w": 41, - "h": 38, - "fill": "hsl(285 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00566": { - "id": "shape:perf:00566", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 320, - "rot": 0, - "props": { - "w": 36, - "h": 25, - "fill": "hsl(13 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00567": { - "id": "shape:perf:00567", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 320, - "rot": 0, - "props": { - "w": 43, - "h": 46, - "fill": "hsl(171 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00568": { - "id": "shape:perf:00568", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 320, - "rot": 0, - "props": { - "w": 46, - "h": 40, - "fill": "hsl(199 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00569": { - "id": "shape:perf:00569", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 320, - "rot": 0, - "props": { - "w": 41, - "h": 44, - "fill": "hsl(88 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00570": { - "id": "shape:perf:00570", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 320, - "rot": 0, - "props": { - "w": 27, - "h": 40, - "fill": "hsl(319 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00571": { - "id": "shape:perf:00571", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 320, - "rot": 0, - "props": { - "w": 40, - "h": 24, - "fill": "hsl(21 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00572": { - "id": "shape:perf:00572", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 320, - "rot": 0, - "props": { - "w": 36, - "h": 41, - "fill": "hsl(65 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00573": { - "id": "shape:perf:00573", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 320, - "rot": 0, - "props": { - "w": 36, - "h": 36, - "fill": "hsl(4 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00574": { - "id": "shape:perf:00574", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 320, - "rot": 0, - "props": { - "w": 43, - "h": 40, - "fill": "hsl(262 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00575": { - "id": "shape:perf:00575", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 320, - "rot": 0, - "props": { - "w": 36, - "h": 33, - "fill": "hsl(64 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00576": { - "id": "shape:perf:00576", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 320, - "rot": 0, - "props": { - "w": 37, - "h": 38, - "fill": "hsl(171 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00577": { - "id": "shape:perf:00577", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 320, - "rot": 0, - "props": { - "w": 40, - "h": 31, - "fill": "hsl(202 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00578": { - "id": "shape:perf:00578", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 320, - "rot": 0, - "props": { - "w": 47, - "h": 24, - "fill": "hsl(104 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00579": { - "id": "shape:perf:00579", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 320, - "rot": 0, - "props": { - "w": 35, - "h": 40, - "fill": "hsl(145 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00580": { - "id": "shape:perf:00580", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 320, - "rot": 0, - "props": { - "w": 32, - "h": 33, - "fill": "hsl(40 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00581": { - "id": "shape:perf:00581", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 320, - "rot": 0, - "props": { - "w": 40, - "h": 36, - "fill": "hsl(333 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00582": { - "id": "shape:perf:00582", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 320, - "rot": 0, - "props": { - "w": 45, - "h": 44, - "fill": "hsl(229 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00583": { - "id": "shape:perf:00583", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 320, - "rot": 0, - "props": { - "w": 35, - "h": 33, - "fill": "hsl(88 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00584": { - "id": "shape:perf:00584", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 320, - "rot": 0, - "props": { - "w": 27, - "h": 25, - "fill": "hsl(211 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00585": { - "id": "shape:perf:00585", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 320, - "rot": 0, - "props": { - "w": 40, - "h": 39, - "fill": "hsl(51 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00586": { - "id": "shape:perf:00586", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 320, - "rot": 0, - "props": { - "w": 39, - "h": 39, - "fill": "hsl(294 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00587": { - "id": "shape:perf:00587", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 320, - "rot": 0, - "props": { - "w": 29, - "h": 34, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00588": { - "id": "shape:perf:00588", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 320, - "rot": 0, - "props": { - "w": 37, - "h": 26, - "fill": "hsl(229 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00589": { - "id": "shape:perf:00589", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 320, - "rot": 0, - "props": { - "w": 42, - "h": 46, - "fill": "hsl(191 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00590": { - "id": "shape:perf:00590", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 320, - "rot": 0, - "props": { - "w": 26, - "h": 38, - "fill": "hsl(259 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00591": { - "id": "shape:perf:00591", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 320, - "rot": 0, - "props": { - "w": 34, - "h": 43, - "fill": "hsl(46 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00592": { - "id": "shape:perf:00592", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 320, - "rot": 0, - "props": { - "w": 25, - "h": 33, - "fill": "hsl(75 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00593": { - "id": "shape:perf:00593", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 320, - "rot": 0, - "props": { - "w": 28, - "h": 34, - "fill": "hsl(127 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00594": { - "id": "shape:perf:00594", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 320, - "rot": 0, - "props": { - "w": 37, - "h": 47, - "fill": "hsl(216 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00595": { - "id": "shape:perf:00595", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 320, - "rot": 0, - "props": { - "w": 33, - "h": 39, - "fill": "hsl(40 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00596": { - "id": "shape:perf:00596", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 320, - "rot": 0, - "props": { - "w": 46, - "h": 30, - "fill": "hsl(199 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00597": { - "id": "shape:perf:00597", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 320, - "rot": 0, - "props": { - "w": 29, - "h": 40, - "fill": "hsl(233 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00598": { - "id": "shape:perf:00598", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 320, - "rot": 0, - "props": { - "w": 28, - "h": 45, - "fill": "hsl(16 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00599": { - "id": "shape:perf:00599", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 320, - "rot": 0, - "props": { - "w": 40, - "h": 40, - "fill": "hsl(215 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00600": { - "id": "shape:perf:00600", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 384, - "rot": 0, - "props": { - "w": 39, - "h": 47, - "fill": "hsl(128 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00601": { - "id": "shape:perf:00601", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 384, - "rot": 0, - "props": { - "w": 35, - "h": 35, - "fill": "hsl(111 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00602": { - "id": "shape:perf:00602", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 384, - "rot": 0, - "props": { - "w": 45, - "h": 40, - "fill": "hsl(115 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00603": { - "id": "shape:perf:00603", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 384, - "rot": 0, - "props": { - "w": 36, - "h": 43, - "fill": "hsl(45 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00604": { - "id": "shape:perf:00604", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 384, - "rot": 0, - "props": { - "w": 27, - "h": 26, - "fill": "hsl(340 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00605": { - "id": "shape:perf:00605", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 384, - "rot": 0, - "props": { - "w": 31, - "h": 31, - "fill": "hsl(240 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00606": { - "id": "shape:perf:00606", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 384, - "rot": 0, - "props": { - "w": 43, - "h": 46, - "fill": "hsl(140 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00607": { - "id": "shape:perf:00607", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 384, - "rot": 0, - "props": { - "w": 39, - "h": 40, - "fill": "hsl(203 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00608": { - "id": "shape:perf:00608", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 384, - "rot": 0, - "props": { - "w": 46, - "h": 25, - "fill": "hsl(1 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00609": { - "id": "shape:perf:00609", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 384, - "rot": 0, - "props": { - "w": 45, - "h": 38, - "fill": "hsl(59 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00610": { - "id": "shape:perf:00610", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 384, - "rot": 0, - "props": { - "w": 36, - "h": 32, - "fill": "hsl(1 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00611": { - "id": "shape:perf:00611", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 384, - "rot": 0, - "props": { - "w": 40, - "h": 45, - "fill": "hsl(135 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00612": { - "id": "shape:perf:00612", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 384, - "rot": 0, - "props": { - "w": 27, - "h": 24, - "fill": "hsl(126 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00613": { - "id": "shape:perf:00613", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 384, - "rot": 0, - "props": { - "w": 39, - "h": 33, - "fill": "hsl(314 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00614": { - "id": "shape:perf:00614", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 384, - "rot": 0, - "props": { - "w": 45, - "h": 35, - "fill": "hsl(251 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00615": { - "id": "shape:perf:00615", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 384, - "rot": 0, - "props": { - "w": 25, - "h": 38, - "fill": "hsl(357 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00616": { - "id": "shape:perf:00616", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 384, - "rot": 0, - "props": { - "w": 37, - "h": 34, - "fill": "hsl(239 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00617": { - "id": "shape:perf:00617", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 384, - "rot": 0, - "props": { - "w": 38, - "h": 42, - "fill": "hsl(344 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00618": { - "id": "shape:perf:00618", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 384, - "rot": 0, - "props": { - "w": 43, - "h": 24, - "fill": "hsl(217 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00619": { - "id": "shape:perf:00619", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 384, - "rot": 0, - "props": { - "w": 24, - "h": 40, - "fill": "hsl(347 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00620": { - "id": "shape:perf:00620", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 384, - "rot": 0, - "props": { - "w": 38, - "h": 42, - "fill": "hsl(92 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00621": { - "id": "shape:perf:00621", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 384, - "rot": 0, - "props": { - "w": 27, - "h": 35, - "fill": "hsl(116 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00622": { - "id": "shape:perf:00622", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 384, - "rot": 0, - "props": { - "w": 26, - "h": 28, - "fill": "hsl(118 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00623": { - "id": "shape:perf:00623", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 384, - "rot": 0, - "props": { - "w": 38, - "h": 29, - "fill": "hsl(302 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00624": { - "id": "shape:perf:00624", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 384, - "rot": 0, - "props": { - "w": 43, - "h": 32, - "fill": "hsl(98 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00625": { - "id": "shape:perf:00625", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 384, - "rot": 0, - "props": { - "w": 47, - "h": 36, - "fill": "hsl(11 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00626": { - "id": "shape:perf:00626", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 384, - "rot": 0, - "props": { - "w": 29, - "h": 45, - "fill": "hsl(149 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00627": { - "id": "shape:perf:00627", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 384, - "rot": 0, - "props": { - "w": 47, - "h": 46, - "fill": "hsl(316 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00628": { - "id": "shape:perf:00628", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 384, - "rot": 0, - "props": { - "w": 24, - "h": 47, - "fill": "hsl(318 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00629": { - "id": "shape:perf:00629", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 384, - "rot": 0, - "props": { - "w": 38, - "h": 24, - "fill": "hsl(104 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00630": { - "id": "shape:perf:00630", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 384, - "rot": 0, - "props": { - "w": 32, - "h": 24, - "fill": "hsl(33 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00631": { - "id": "shape:perf:00631", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 384, - "rot": 0, - "props": { - "w": 33, - "h": 41, - "fill": "hsl(36 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00632": { - "id": "shape:perf:00632", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 384, - "rot": 0, - "props": { - "w": 31, - "h": 29, - "fill": "hsl(140 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00633": { - "id": "shape:perf:00633", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 384, - "rot": 0, - "props": { - "w": 28, - "h": 41, - "fill": "hsl(1 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00634": { - "id": "shape:perf:00634", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 384, - "rot": 0, - "props": { - "w": 45, - "h": 45, - "fill": "hsl(102 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00635": { - "id": "shape:perf:00635", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 384, - "rot": 0, - "props": { - "w": 26, - "h": 25, - "fill": "hsl(103 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00636": { - "id": "shape:perf:00636", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 384, - "rot": 0, - "props": { - "w": 39, - "h": 31, - "fill": "hsl(105 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00637": { - "id": "shape:perf:00637", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 384, - "rot": 0, - "props": { - "w": 47, - "h": 44, - "fill": "hsl(97 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00638": { - "id": "shape:perf:00638", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 384, - "rot": 0, - "props": { - "w": 27, - "h": 46, - "fill": "hsl(55 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00639": { - "id": "shape:perf:00639", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 384, - "rot": 0, - "props": { - "w": 35, - "h": 25, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00640": { - "id": "shape:perf:00640", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 384, - "rot": 0, - "props": { - "w": 46, - "h": 44, - "fill": "hsl(258 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00641": { - "id": "shape:perf:00641", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 384, - "rot": 0, - "props": { - "w": 46, - "h": 38, - "fill": "hsl(107 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00642": { - "id": "shape:perf:00642", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 384, - "rot": 0, - "props": { - "w": 36, - "h": 38, - "fill": "hsl(229 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00643": { - "id": "shape:perf:00643", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 384, - "rot": 0, - "props": { - "w": 38, - "h": 25, - "fill": "hsl(325 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00644": { - "id": "shape:perf:00644", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 384, - "rot": 0, - "props": { - "w": 28, - "h": 30, - "fill": "hsl(292 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00645": { - "id": "shape:perf:00645", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 384, - "rot": 0, - "props": { - "w": 46, - "h": 46, - "fill": "hsl(200 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00646": { - "id": "shape:perf:00646", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 384, - "rot": 0, - "props": { - "w": 44, - "h": 46, - "fill": "hsl(252 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00647": { - "id": "shape:perf:00647", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 384, - "rot": 0, - "props": { - "w": 42, - "h": 45, - "fill": "hsl(180 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00648": { - "id": "shape:perf:00648", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 384, - "rot": 0, - "props": { - "w": 38, - "h": 27, - "fill": "hsl(333 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00649": { - "id": "shape:perf:00649", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 384, - "rot": 0, - "props": { - "w": 31, - "h": 28, - "fill": "hsl(91 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00650": { - "id": "shape:perf:00650", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 384, - "rot": 0, - "props": { - "w": 42, - "h": 26, - "fill": "hsl(118 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00651": { - "id": "shape:perf:00651", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 384, - "rot": 0, - "props": { - "w": 26, - "h": 44, - "fill": "hsl(154 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00652": { - "id": "shape:perf:00652", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 384, - "rot": 0, - "props": { - "w": 31, - "h": 32, - "fill": "hsl(274 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00653": { - "id": "shape:perf:00653", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 384, - "rot": 0, - "props": { - "w": 27, - "h": 32, - "fill": "hsl(128 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00654": { - "id": "shape:perf:00654", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 384, - "rot": 0, - "props": { - "w": 33, - "h": 34, - "fill": "hsl(160 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00655": { - "id": "shape:perf:00655", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 384, - "rot": 0, - "props": { - "w": 34, - "h": 41, - "fill": "hsl(290 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00656": { - "id": "shape:perf:00656", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 384, - "rot": 0, - "props": { - "w": 30, - "h": 33, - "fill": "hsl(281 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00657": { - "id": "shape:perf:00657", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 384, - "rot": 0, - "props": { - "w": 32, - "h": 44, - "fill": "hsl(281 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00658": { - "id": "shape:perf:00658", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 384, - "rot": 0, - "props": { - "w": 45, - "h": 40, - "fill": "hsl(103 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00659": { - "id": "shape:perf:00659", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 384, - "rot": 0, - "props": { - "w": 28, - "h": 41, - "fill": "hsl(8 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00660": { - "id": "shape:perf:00660", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 384, - "rot": 0, - "props": { - "w": 30, - "h": 25, - "fill": "hsl(184 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00661": { - "id": "shape:perf:00661", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 384, - "rot": 0, - "props": { - "w": 29, - "h": 38, - "fill": "hsl(178 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00662": { - "id": "shape:perf:00662", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 384, - "rot": 0, - "props": { - "w": 31, - "h": 26, - "fill": "hsl(336 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00663": { - "id": "shape:perf:00663", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 384, - "rot": 0, - "props": { - "w": 47, - "h": 35, - "fill": "hsl(124 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00664": { - "id": "shape:perf:00664", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 384, - "rot": 0, - "props": { - "w": 28, - "h": 28, - "fill": "hsl(220 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00665": { - "id": "shape:perf:00665", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 384, - "rot": 0, - "props": { - "w": 26, - "h": 36, - "fill": "hsl(214 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00666": { - "id": "shape:perf:00666", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 384, - "rot": 0, - "props": { - "w": 38, - "h": 47, - "fill": "hsl(356 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00667": { - "id": "shape:perf:00667", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 384, - "rot": 0, - "props": { - "w": 37, - "h": 32, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00668": { - "id": "shape:perf:00668", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 384, - "rot": 0, - "props": { - "w": 44, - "h": 28, - "fill": "hsl(294 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00669": { - "id": "shape:perf:00669", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 384, - "rot": 0, - "props": { - "w": 24, - "h": 30, - "fill": "hsl(241 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00670": { - "id": "shape:perf:00670", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 384, - "rot": 0, - "props": { - "w": 24, - "h": 33, - "fill": "hsl(241 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00671": { - "id": "shape:perf:00671", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 384, - "rot": 0, - "props": { - "w": 42, - "h": 26, - "fill": "hsl(265 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00672": { - "id": "shape:perf:00672", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 384, - "rot": 0, - "props": { - "w": 33, - "h": 46, - "fill": "hsl(23 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00673": { - "id": "shape:perf:00673", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 384, - "rot": 0, - "props": { - "w": 34, - "h": 42, - "fill": "hsl(354 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00674": { - "id": "shape:perf:00674", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 384, - "rot": 0, - "props": { - "w": 30, - "h": 46, - "fill": "hsl(266 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00675": { - "id": "shape:perf:00675", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 384, - "rot": 0, - "props": { - "w": 37, - "h": 45, - "fill": "hsl(283 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00676": { - "id": "shape:perf:00676", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 384, - "rot": 0, - "props": { - "w": 33, - "h": 42, - "fill": "hsl(183 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00677": { - "id": "shape:perf:00677", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 384, - "rot": 0, - "props": { - "w": 38, - "h": 29, - "fill": "hsl(95 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00678": { - "id": "shape:perf:00678", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 384, - "rot": 0, - "props": { - "w": 36, - "h": 39, - "fill": "hsl(21 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00679": { - "id": "shape:perf:00679", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 384, - "rot": 0, - "props": { - "w": 32, - "h": 45, - "fill": "hsl(25 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00680": { - "id": "shape:perf:00680", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 384, - "rot": 0, - "props": { - "w": 44, - "h": 41, - "fill": "hsl(65 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00681": { - "id": "shape:perf:00681", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 384, - "rot": 0, - "props": { - "w": 27, - "h": 39, - "fill": "hsl(64 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00682": { - "id": "shape:perf:00682", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 384, - "rot": 0, - "props": { - "w": 36, - "h": 44, - "fill": "hsl(269 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00683": { - "id": "shape:perf:00683", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 384, - "rot": 0, - "props": { - "w": 36, - "h": 38, - "fill": "hsl(325 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00684": { - "id": "shape:perf:00684", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 384, - "rot": 0, - "props": { - "w": 40, - "h": 43, - "fill": "hsl(170 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00685": { - "id": "shape:perf:00685", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 384, - "rot": 0, - "props": { - "w": 43, - "h": 34, - "fill": "hsl(266 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00686": { - "id": "shape:perf:00686", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 384, - "rot": 0, - "props": { - "w": 33, - "h": 38, - "fill": "hsl(49 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00687": { - "id": "shape:perf:00687", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 384, - "rot": 0, - "props": { - "w": 25, - "h": 43, - "fill": "hsl(130 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00688": { - "id": "shape:perf:00688", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 384, - "rot": 0, - "props": { - "w": 33, - "h": 24, - "fill": "hsl(282 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00689": { - "id": "shape:perf:00689", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 384, - "rot": 0, - "props": { - "w": 43, - "h": 33, - "fill": "hsl(92 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00690": { - "id": "shape:perf:00690", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 384, - "rot": 0, - "props": { - "w": 26, - "h": 37, - "fill": "hsl(20 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00691": { - "id": "shape:perf:00691", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 384, - "rot": 0, - "props": { - "w": 28, - "h": 38, - "fill": "hsl(147 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00692": { - "id": "shape:perf:00692", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 384, - "rot": 0, - "props": { - "w": 37, - "h": 27, - "fill": "hsl(335 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00693": { - "id": "shape:perf:00693", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 384, - "rot": 0, - "props": { - "w": 31, - "h": 24, - "fill": "hsl(202 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00694": { - "id": "shape:perf:00694", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 384, - "rot": 0, - "props": { - "w": 45, - "h": 41, - "fill": "hsl(54 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00695": { - "id": "shape:perf:00695", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 384, - "rot": 0, - "props": { - "w": 31, - "h": 27, - "fill": "hsl(26 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00696": { - "id": "shape:perf:00696", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 384, - "rot": 0, - "props": { - "w": 35, - "h": 39, - "fill": "hsl(66 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00697": { - "id": "shape:perf:00697", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 384, - "rot": 0, - "props": { - "w": 28, - "h": 46, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00698": { - "id": "shape:perf:00698", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 384, - "rot": 0, - "props": { - "w": 24, - "h": 40, - "fill": "hsl(85 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00699": { - "id": "shape:perf:00699", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 384, - "rot": 0, - "props": { - "w": 36, - "h": 47, - "fill": "hsl(122 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00700": { - "id": "shape:perf:00700", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 448, - "rot": 0, - "props": { - "w": 32, - "h": 30, - "fill": "hsl(22 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00701": { - "id": "shape:perf:00701", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 448, - "rot": 0, - "props": { - "w": 31, - "h": 43, - "fill": "hsl(260 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00702": { - "id": "shape:perf:00702", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 448, - "rot": 0, - "props": { - "w": 38, - "h": 41, - "fill": "hsl(329 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00703": { - "id": "shape:perf:00703", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 448, - "rot": 0, - "props": { - "w": 35, - "h": 41, - "fill": "hsl(250 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00704": { - "id": "shape:perf:00704", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 448, - "rot": 0, - "props": { - "w": 43, - "h": 41, - "fill": "hsl(69 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00705": { - "id": "shape:perf:00705", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 448, - "rot": 0, - "props": { - "w": 27, - "h": 29, - "fill": "hsl(2 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00706": { - "id": "shape:perf:00706", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 448, - "rot": 0, - "props": { - "w": 25, - "h": 44, - "fill": "hsl(335 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00707": { - "id": "shape:perf:00707", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 448, - "rot": 0, - "props": { - "w": 26, - "h": 31, - "fill": "hsl(166 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00708": { - "id": "shape:perf:00708", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 448, - "rot": 0, - "props": { - "w": 25, - "h": 35, - "fill": "hsl(331 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00709": { - "id": "shape:perf:00709", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 448, - "rot": 0, - "props": { - "w": 37, - "h": 44, - "fill": "hsl(288 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00710": { - "id": "shape:perf:00710", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 448, - "rot": 0, - "props": { - "w": 35, - "h": 26, - "fill": "hsl(6 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00711": { - "id": "shape:perf:00711", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 448, - "rot": 0, - "props": { - "w": 31, - "h": 27, - "fill": "hsl(142 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00712": { - "id": "shape:perf:00712", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 448, - "rot": 0, - "props": { - "w": 43, - "h": 40, - "fill": "hsl(159 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00713": { - "id": "shape:perf:00713", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 448, - "rot": 0, - "props": { - "w": 24, - "h": 29, - "fill": "hsl(53 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00714": { - "id": "shape:perf:00714", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 448, - "rot": 0, - "props": { - "w": 36, - "h": 24, - "fill": "hsl(69 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00715": { - "id": "shape:perf:00715", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 448, - "rot": 0, - "props": { - "w": 46, - "h": 33, - "fill": "hsl(65 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00716": { - "id": "shape:perf:00716", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 448, - "rot": 0, - "props": { - "w": 35, - "h": 42, - "fill": "hsl(237 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00717": { - "id": "shape:perf:00717", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 448, - "rot": 0, - "props": { - "w": 35, - "h": 41, - "fill": "hsl(213 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00718": { - "id": "shape:perf:00718", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 448, - "rot": 0, - "props": { - "w": 42, - "h": 43, - "fill": "hsl(285 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00719": { - "id": "shape:perf:00719", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 448, - "rot": 0, - "props": { - "w": 44, - "h": 33, - "fill": "hsl(264 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00720": { - "id": "shape:perf:00720", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 448, - "rot": 0, - "props": { - "w": 39, - "h": 27, - "fill": "hsl(11 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00721": { - "id": "shape:perf:00721", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 448, - "rot": 0, - "props": { - "w": 45, - "h": 24, - "fill": "hsl(314 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00722": { - "id": "shape:perf:00722", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 448, - "rot": 0, - "props": { - "w": 32, - "h": 45, - "fill": "hsl(228 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00723": { - "id": "shape:perf:00723", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 448, - "rot": 0, - "props": { - "w": 29, - "h": 31, - "fill": "hsl(197 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00724": { - "id": "shape:perf:00724", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 448, - "rot": 0, - "props": { - "w": 25, - "h": 47, - "fill": "hsl(32 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00725": { - "id": "shape:perf:00725", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 448, - "rot": 0, - "props": { - "w": 25, - "h": 34, - "fill": "hsl(109 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00726": { - "id": "shape:perf:00726", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 448, - "rot": 0, - "props": { - "w": 41, - "h": 43, - "fill": "hsl(53 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00727": { - "id": "shape:perf:00727", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 448, - "rot": 0, - "props": { - "w": 26, - "h": 25, - "fill": "hsl(152 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00728": { - "id": "shape:perf:00728", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 448, - "rot": 0, - "props": { - "w": 36, - "h": 33, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00729": { - "id": "shape:perf:00729", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 448, - "rot": 0, - "props": { - "w": 46, - "h": 37, - "fill": "hsl(310 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00730": { - "id": "shape:perf:00730", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 448, - "rot": 0, - "props": { - "w": 39, - "h": 34, - "fill": "hsl(141 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00731": { - "id": "shape:perf:00731", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 448, - "rot": 0, - "props": { - "w": 26, - "h": 46, - "fill": "hsl(111 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00732": { - "id": "shape:perf:00732", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 448, - "rot": 0, - "props": { - "w": 39, - "h": 45, - "fill": "hsl(189 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00733": { - "id": "shape:perf:00733", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 448, - "rot": 0, - "props": { - "w": 27, - "h": 39, - "fill": "hsl(113 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00734": { - "id": "shape:perf:00734", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 448, - "rot": 0, - "props": { - "w": 34, - "h": 24, - "fill": "hsl(69 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00735": { - "id": "shape:perf:00735", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 448, - "rot": 0, - "props": { - "w": 45, - "h": 34, - "fill": "hsl(60 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00736": { - "id": "shape:perf:00736", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 448, - "rot": 0, - "props": { - "w": 30, - "h": 30, - "fill": "hsl(342 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00737": { - "id": "shape:perf:00737", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 448, - "rot": 0, - "props": { - "w": 45, - "h": 47, - "fill": "hsl(331 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00738": { - "id": "shape:perf:00738", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 448, - "rot": 0, - "props": { - "w": 28, - "h": 31, - "fill": "hsl(332 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00739": { - "id": "shape:perf:00739", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 448, - "rot": 0, - "props": { - "w": 39, - "h": 32, - "fill": "hsl(3 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00740": { - "id": "shape:perf:00740", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 448, - "rot": 0, - "props": { - "w": 43, - "h": 39, - "fill": "hsl(346 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00741": { - "id": "shape:perf:00741", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 448, - "rot": 0, - "props": { - "w": 40, - "h": 26, - "fill": "hsl(175 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00742": { - "id": "shape:perf:00742", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 448, - "rot": 0, - "props": { - "w": 44, - "h": 46, - "fill": "hsl(233 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00743": { - "id": "shape:perf:00743", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 448, - "rot": 0, - "props": { - "w": 45, - "h": 25, - "fill": "hsl(201 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00744": { - "id": "shape:perf:00744", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 448, - "rot": 0, - "props": { - "w": 26, - "h": 38, - "fill": "hsl(332 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00745": { - "id": "shape:perf:00745", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 448, - "rot": 0, - "props": { - "w": 37, - "h": 31, - "fill": "hsl(304 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00746": { - "id": "shape:perf:00746", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 448, - "rot": 0, - "props": { - "w": 41, - "h": 33, - "fill": "hsl(208 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00747": { - "id": "shape:perf:00747", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 448, - "rot": 0, - "props": { - "w": 36, - "h": 29, - "fill": "hsl(66 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00748": { - "id": "shape:perf:00748", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 448, - "rot": 0, - "props": { - "w": 32, - "h": 42, - "fill": "hsl(196 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00749": { - "id": "shape:perf:00749", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 448, - "rot": 0, - "props": { - "w": 43, - "h": 30, - "fill": "hsl(18 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00750": { - "id": "shape:perf:00750", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 448, - "rot": 0, - "props": { - "w": 30, - "h": 37, - "fill": "hsl(45 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00751": { - "id": "shape:perf:00751", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 448, - "rot": 0, - "props": { - "w": 34, - "h": 46, - "fill": "hsl(15 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00752": { - "id": "shape:perf:00752", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 448, - "rot": 0, - "props": { - "w": 28, - "h": 32, - "fill": "hsl(350 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00753": { - "id": "shape:perf:00753", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 448, - "rot": 0, - "props": { - "w": 29, - "h": 34, - "fill": "hsl(295 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00754": { - "id": "shape:perf:00754", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 448, - "rot": 0, - "props": { - "w": 27, - "h": 40, - "fill": "hsl(5 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00755": { - "id": "shape:perf:00755", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 448, - "rot": 0, - "props": { - "w": 36, - "h": 43, - "fill": "hsl(213 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00756": { - "id": "shape:perf:00756", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 448, - "rot": 0, - "props": { - "w": 31, - "h": 41, - "fill": "hsl(140 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00757": { - "id": "shape:perf:00757", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 448, - "rot": 0, - "props": { - "w": 33, - "h": 41, - "fill": "hsl(16 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00758": { - "id": "shape:perf:00758", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 448, - "rot": 0, - "props": { - "w": 28, - "h": 31, - "fill": "hsl(61 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00759": { - "id": "shape:perf:00759", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 448, - "rot": 0, - "props": { - "w": 39, - "h": 34, - "fill": "hsl(332 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00760": { - "id": "shape:perf:00760", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 448, - "rot": 0, - "props": { - "w": 42, - "h": 30, - "fill": "hsl(11 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00761": { - "id": "shape:perf:00761", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 448, - "rot": 0, - "props": { - "w": 36, - "h": 27, - "fill": "hsl(143 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00762": { - "id": "shape:perf:00762", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 448, - "rot": 0, - "props": { - "w": 31, - "h": 41, - "fill": "hsl(147 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00763": { - "id": "shape:perf:00763", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 448, - "rot": 0, - "props": { - "w": 24, - "h": 45, - "fill": "hsl(188 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00764": { - "id": "shape:perf:00764", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 448, - "rot": 0, - "props": { - "w": 47, - "h": 29, - "fill": "hsl(238 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00765": { - "id": "shape:perf:00765", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 448, - "rot": 0, - "props": { - "w": 29, - "h": 29, - "fill": "hsl(120 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00766": { - "id": "shape:perf:00766", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 448, - "rot": 0, - "props": { - "w": 29, - "h": 47, - "fill": "hsl(46 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00767": { - "id": "shape:perf:00767", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 448, - "rot": 0, - "props": { - "w": 36, - "h": 24, - "fill": "hsl(167 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00768": { - "id": "shape:perf:00768", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 448, - "rot": 0, - "props": { - "w": 32, - "h": 24, - "fill": "hsl(323 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00769": { - "id": "shape:perf:00769", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 448, - "rot": 0, - "props": { - "w": 42, - "h": 46, - "fill": "hsl(15 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00770": { - "id": "shape:perf:00770", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 448, - "rot": 0, - "props": { - "w": 42, - "h": 38, - "fill": "hsl(177 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00771": { - "id": "shape:perf:00771", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 448, - "rot": 0, - "props": { - "w": 39, - "h": 33, - "fill": "hsl(55 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00772": { - "id": "shape:perf:00772", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 448, - "rot": 0, - "props": { - "w": 37, - "h": 42, - "fill": "hsl(4 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00773": { - "id": "shape:perf:00773", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 448, - "rot": 0, - "props": { - "w": 39, - "h": 42, - "fill": "hsl(55 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00774": { - "id": "shape:perf:00774", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 448, - "rot": 0, - "props": { - "w": 39, - "h": 47, - "fill": "hsl(307 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00775": { - "id": "shape:perf:00775", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 448, - "rot": 0, - "props": { - "w": 26, - "h": 27, - "fill": "hsl(11 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00776": { - "id": "shape:perf:00776", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 448, - "rot": 0, - "props": { - "w": 35, - "h": 24, - "fill": "hsl(15 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00777": { - "id": "shape:perf:00777", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 448, - "rot": 0, - "props": { - "w": 24, - "h": 41, - "fill": "hsl(77 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00778": { - "id": "shape:perf:00778", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 448, - "rot": 0, - "props": { - "w": 35, - "h": 37, - "fill": "hsl(140 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00779": { - "id": "shape:perf:00779", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 448, - "rot": 0, - "props": { - "w": 47, - "h": 46, - "fill": "hsl(354 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00780": { - "id": "shape:perf:00780", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 448, - "rot": 0, - "props": { - "w": 42, - "h": 24, - "fill": "hsl(112 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00781": { - "id": "shape:perf:00781", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 448, - "rot": 0, - "props": { - "w": 24, - "h": 30, - "fill": "hsl(95 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00782": { - "id": "shape:perf:00782", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 448, - "rot": 0, - "props": { - "w": 24, - "h": 28, - "fill": "hsl(67 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00783": { - "id": "shape:perf:00783", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 448, - "rot": 0, - "props": { - "w": 41, - "h": 29, - "fill": "hsl(104 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00784": { - "id": "shape:perf:00784", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 448, - "rot": 0, - "props": { - "w": 40, - "h": 37, - "fill": "hsl(275 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00785": { - "id": "shape:perf:00785", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 448, - "rot": 0, - "props": { - "w": 42, - "h": 27, - "fill": "hsl(16 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00786": { - "id": "shape:perf:00786", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 448, - "rot": 0, - "props": { - "w": 45, - "h": 26, - "fill": "hsl(96 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00787": { - "id": "shape:perf:00787", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 448, - "rot": 0, - "props": { - "w": 30, - "h": 30, - "fill": "hsl(119 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00788": { - "id": "shape:perf:00788", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 448, - "rot": 0, - "props": { - "w": 28, - "h": 42, - "fill": "hsl(245 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00789": { - "id": "shape:perf:00789", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 448, - "rot": 0, - "props": { - "w": 30, - "h": 27, - "fill": "hsl(227 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00790": { - "id": "shape:perf:00790", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 448, - "rot": 0, - "props": { - "w": 29, - "h": 30, - "fill": "hsl(99 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00791": { - "id": "shape:perf:00791", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 448, - "rot": 0, - "props": { - "w": 27, - "h": 32, - "fill": "hsl(176 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00792": { - "id": "shape:perf:00792", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 448, - "rot": 0, - "props": { - "w": 41, - "h": 25, - "fill": "hsl(231 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00793": { - "id": "shape:perf:00793", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 448, - "rot": 0, - "props": { - "w": 41, - "h": 45, - "fill": "hsl(201 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00794": { - "id": "shape:perf:00794", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 448, - "rot": 0, - "props": { - "w": 32, - "h": 43, - "fill": "hsl(293 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00795": { - "id": "shape:perf:00795", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 448, - "rot": 0, - "props": { - "w": 34, - "h": 29, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00796": { - "id": "shape:perf:00796", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 448, - "rot": 0, - "props": { - "w": 37, - "h": 25, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00797": { - "id": "shape:perf:00797", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 448, - "rot": 0, - "props": { - "w": 37, - "h": 46, - "fill": "hsl(249 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00798": { - "id": "shape:perf:00798", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 448, - "rot": 0, - "props": { - "w": 42, - "h": 46, - "fill": "hsl(248 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00799": { - "id": "shape:perf:00799", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 448, - "rot": 0, - "props": { - "w": 28, - "h": 45, - "fill": "hsl(286 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00800": { - "id": "shape:perf:00800", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 512, - "rot": 0, - "props": { - "w": 30, - "h": 24, - "fill": "hsl(103 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00801": { - "id": "shape:perf:00801", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 512, - "rot": 0, - "props": { - "w": 44, - "h": 41, - "fill": "hsl(164 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00802": { - "id": "shape:perf:00802", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 512, - "rot": 0, - "props": { - "w": 24, - "h": 35, - "fill": "hsl(180 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00803": { - "id": "shape:perf:00803", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 512, - "rot": 0, - "props": { - "w": 38, - "h": 44, - "fill": "hsl(91 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00804": { - "id": "shape:perf:00804", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 512, - "rot": 0, - "props": { - "w": 38, - "h": 36, - "fill": "hsl(325 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00805": { - "id": "shape:perf:00805", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 512, - "rot": 0, - "props": { - "w": 25, - "h": 29, - "fill": "hsl(55 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00806": { - "id": "shape:perf:00806", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 512, - "rot": 0, - "props": { - "w": 34, - "h": 27, - "fill": "hsl(131 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00807": { - "id": "shape:perf:00807", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 512, - "rot": 0, - "props": { - "w": 42, - "h": 42, - "fill": "hsl(244 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00808": { - "id": "shape:perf:00808", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 512, - "rot": 0, - "props": { - "w": 40, - "h": 36, - "fill": "hsl(151 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00809": { - "id": "shape:perf:00809", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 512, - "rot": 0, - "props": { - "w": 31, - "h": 35, - "fill": "hsl(168 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00810": { - "id": "shape:perf:00810", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 512, - "rot": 0, - "props": { - "w": 37, - "h": 24, - "fill": "hsl(250 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00811": { - "id": "shape:perf:00811", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 512, - "rot": 0, - "props": { - "w": 34, - "h": 47, - "fill": "hsl(285 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00812": { - "id": "shape:perf:00812", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 512, - "rot": 0, - "props": { - "w": 47, - "h": 37, - "fill": "hsl(30 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00813": { - "id": "shape:perf:00813", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 512, - "rot": 0, - "props": { - "w": 37, - "h": 44, - "fill": "hsl(145 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00814": { - "id": "shape:perf:00814", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 512, - "rot": 0, - "props": { - "w": 29, - "h": 38, - "fill": "hsl(125 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00815": { - "id": "shape:perf:00815", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 512, - "rot": 0, - "props": { - "w": 45, - "h": 40, - "fill": "hsl(137 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00816": { - "id": "shape:perf:00816", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 512, - "rot": 0, - "props": { - "w": 31, - "h": 33, - "fill": "hsl(97 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00817": { - "id": "shape:perf:00817", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 512, - "rot": 0, - "props": { - "w": 34, - "h": 34, - "fill": "hsl(95 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00818": { - "id": "shape:perf:00818", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 512, - "rot": 0, - "props": { - "w": 46, - "h": 44, - "fill": "hsl(197 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00819": { - "id": "shape:perf:00819", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 512, - "rot": 0, - "props": { - "w": 42, - "h": 47, - "fill": "hsl(72 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00820": { - "id": "shape:perf:00820", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 512, - "rot": 0, - "props": { - "w": 43, - "h": 40, - "fill": "hsl(99 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00821": { - "id": "shape:perf:00821", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 512, - "rot": 0, - "props": { - "w": 35, - "h": 40, - "fill": "hsl(152 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00822": { - "id": "shape:perf:00822", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 512, - "rot": 0, - "props": { - "w": 39, - "h": 25, - "fill": "hsl(129 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00823": { - "id": "shape:perf:00823", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 512, - "rot": 0, - "props": { - "w": 36, - "h": 24, - "fill": "hsl(157 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00824": { - "id": "shape:perf:00824", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 512, - "rot": 0, - "props": { - "w": 47, - "h": 37, - "fill": "hsl(99 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00825": { - "id": "shape:perf:00825", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 512, - "rot": 0, - "props": { - "w": 25, - "h": 30, - "fill": "hsl(335 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00826": { - "id": "shape:perf:00826", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 512, - "rot": 0, - "props": { - "w": 38, - "h": 46, - "fill": "hsl(257 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00827": { - "id": "shape:perf:00827", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 512, - "rot": 0, - "props": { - "w": 25, - "h": 25, - "fill": "hsl(137 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00828": { - "id": "shape:perf:00828", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 512, - "rot": 0, - "props": { - "w": 29, - "h": 26, - "fill": "hsl(184 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00829": { - "id": "shape:perf:00829", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 512, - "rot": 0, - "props": { - "w": 39, - "h": 31, - "fill": "hsl(112 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00830": { - "id": "shape:perf:00830", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 512, - "rot": 0, - "props": { - "w": 29, - "h": 44, - "fill": "hsl(57 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00831": { - "id": "shape:perf:00831", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 512, - "rot": 0, - "props": { - "w": 44, - "h": 44, - "fill": "hsl(90 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00832": { - "id": "shape:perf:00832", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 512, - "rot": 0, - "props": { - "w": 44, - "h": 43, - "fill": "hsl(28 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00833": { - "id": "shape:perf:00833", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 512, - "rot": 0, - "props": { - "w": 36, - "h": 45, - "fill": "hsl(3 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00834": { - "id": "shape:perf:00834", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 512, - "rot": 0, - "props": { - "w": 24, - "h": 24, - "fill": "hsl(320 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00835": { - "id": "shape:perf:00835", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 512, - "rot": 0, - "props": { - "w": 26, - "h": 35, - "fill": "hsl(112 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00836": { - "id": "shape:perf:00836", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 512, - "rot": 0, - "props": { - "w": 35, - "h": 47, - "fill": "hsl(331 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00837": { - "id": "shape:perf:00837", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 512, - "rot": 0, - "props": { - "w": 32, - "h": 35, - "fill": "hsl(128 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00838": { - "id": "shape:perf:00838", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 512, - "rot": 0, - "props": { - "w": 37, - "h": 36, - "fill": "hsl(265 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00839": { - "id": "shape:perf:00839", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 512, - "rot": 0, - "props": { - "w": 35, - "h": 29, - "fill": "hsl(271 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00840": { - "id": "shape:perf:00840", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 512, - "rot": 0, - "props": { - "w": 39, - "h": 40, - "fill": "hsl(316 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00841": { - "id": "shape:perf:00841", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 512, - "rot": 0, - "props": { - "w": 45, - "h": 46, - "fill": "hsl(30 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00842": { - "id": "shape:perf:00842", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 512, - "rot": 0, - "props": { - "w": 31, - "h": 28, - "fill": "hsl(51 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00843": { - "id": "shape:perf:00843", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 512, - "rot": 0, - "props": { - "w": 39, - "h": 37, - "fill": "hsl(344 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00844": { - "id": "shape:perf:00844", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 512, - "rot": 0, - "props": { - "w": 26, - "h": 26, - "fill": "hsl(342 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00845": { - "id": "shape:perf:00845", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 512, - "rot": 0, - "props": { - "w": 31, - "h": 33, - "fill": "hsl(233 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00846": { - "id": "shape:perf:00846", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 512, - "rot": 0, - "props": { - "w": 31, - "h": 32, - "fill": "hsl(112 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00847": { - "id": "shape:perf:00847", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 512, - "rot": 0, - "props": { - "w": 32, - "h": 47, - "fill": "hsl(37 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00848": { - "id": "shape:perf:00848", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 512, - "rot": 0, - "props": { - "w": 46, - "h": 42, - "fill": "hsl(18 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00849": { - "id": "shape:perf:00849", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 512, - "rot": 0, - "props": { - "w": 32, - "h": 37, - "fill": "hsl(346 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00850": { - "id": "shape:perf:00850", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 512, - "rot": 0, - "props": { - "w": 39, - "h": 47, - "fill": "hsl(27 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00851": { - "id": "shape:perf:00851", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 512, - "rot": 0, - "props": { - "w": 30, - "h": 37, - "fill": "hsl(96 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00852": { - "id": "shape:perf:00852", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 512, - "rot": 0, - "props": { - "w": 41, - "h": 33, - "fill": "hsl(334 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00853": { - "id": "shape:perf:00853", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 512, - "rot": 0, - "props": { - "w": 40, - "h": 43, - "fill": "hsl(104 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00854": { - "id": "shape:perf:00854", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 512, - "rot": 0, - "props": { - "w": 43, - "h": 47, - "fill": "hsl(52 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00855": { - "id": "shape:perf:00855", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 512, - "rot": 0, - "props": { - "w": 35, - "h": 34, - "fill": "hsl(164 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00856": { - "id": "shape:perf:00856", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 512, - "rot": 0, - "props": { - "w": 27, - "h": 41, - "fill": "hsl(36 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00857": { - "id": "shape:perf:00857", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 512, - "rot": 0, - "props": { - "w": 39, - "h": 25, - "fill": "hsl(138 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00858": { - "id": "shape:perf:00858", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 512, - "rot": 0, - "props": { - "w": 31, - "h": 26, - "fill": "hsl(285 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00859": { - "id": "shape:perf:00859", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 512, - "rot": 0, - "props": { - "w": 25, - "h": 28, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00860": { - "id": "shape:perf:00860", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 512, - "rot": 0, - "props": { - "w": 44, - "h": 41, - "fill": "hsl(322 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00861": { - "id": "shape:perf:00861", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 512, - "rot": 0, - "props": { - "w": 32, - "h": 45, - "fill": "hsl(50 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00862": { - "id": "shape:perf:00862", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 512, - "rot": 0, - "props": { - "w": 45, - "h": 32, - "fill": "hsl(56 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00863": { - "id": "shape:perf:00863", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 512, - "rot": 0, - "props": { - "w": 46, - "h": 26, - "fill": "hsl(293 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00864": { - "id": "shape:perf:00864", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 512, - "rot": 0, - "props": { - "w": 34, - "h": 33, - "fill": "hsl(339 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00865": { - "id": "shape:perf:00865", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 512, - "rot": 0, - "props": { - "w": 28, - "h": 41, - "fill": "hsl(114 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00866": { - "id": "shape:perf:00866", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 512, - "rot": 0, - "props": { - "w": 42, - "h": 42, - "fill": "hsl(240 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00867": { - "id": "shape:perf:00867", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 512, - "rot": 0, - "props": { - "w": 37, - "h": 29, - "fill": "hsl(350 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00868": { - "id": "shape:perf:00868", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 512, - "rot": 0, - "props": { - "w": 28, - "h": 34, - "fill": "hsl(286 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00869": { - "id": "shape:perf:00869", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 512, - "rot": 0, - "props": { - "w": 24, - "h": 24, - "fill": "hsl(51 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00870": { - "id": "shape:perf:00870", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 512, - "rot": 0, - "props": { - "w": 26, - "h": 32, - "fill": "hsl(128 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00871": { - "id": "shape:perf:00871", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 512, - "rot": 0, - "props": { - "w": 35, - "h": 45, - "fill": "hsl(324 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00872": { - "id": "shape:perf:00872", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 512, - "rot": 0, - "props": { - "w": 30, - "h": 28, - "fill": "hsl(162 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00873": { - "id": "shape:perf:00873", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 512, - "rot": 0, - "props": { - "w": 47, - "h": 45, - "fill": "hsl(290 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00874": { - "id": "shape:perf:00874", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 512, - "rot": 0, - "props": { - "w": 34, - "h": 31, - "fill": "hsl(342 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00875": { - "id": "shape:perf:00875", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 512, - "rot": 0, - "props": { - "w": 42, - "h": 38, - "fill": "hsl(348 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00876": { - "id": "shape:perf:00876", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 512, - "rot": 0, - "props": { - "w": 26, - "h": 30, - "fill": "hsl(341 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00877": { - "id": "shape:perf:00877", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 512, - "rot": 0, - "props": { - "w": 38, - "h": 29, - "fill": "hsl(72 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00878": { - "id": "shape:perf:00878", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 512, - "rot": 0, - "props": { - "w": 46, - "h": 38, - "fill": "hsl(39 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00879": { - "id": "shape:perf:00879", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 512, - "rot": 0, - "props": { - "w": 44, - "h": 32, - "fill": "hsl(48 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00880": { - "id": "shape:perf:00880", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 512, - "rot": 0, - "props": { - "w": 47, - "h": 32, - "fill": "hsl(132 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00881": { - "id": "shape:perf:00881", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 512, - "rot": 0, - "props": { - "w": 43, - "h": 34, - "fill": "hsl(138 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00882": { - "id": "shape:perf:00882", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 512, - "rot": 0, - "props": { - "w": 30, - "h": 46, - "fill": "hsl(58 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00883": { - "id": "shape:perf:00883", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 512, - "rot": 0, - "props": { - "w": 25, - "h": 41, - "fill": "hsl(89 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00884": { - "id": "shape:perf:00884", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 512, - "rot": 0, - "props": { - "w": 42, - "h": 26, - "fill": "hsl(307 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00885": { - "id": "shape:perf:00885", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 512, - "rot": 0, - "props": { - "w": 35, - "h": 38, - "fill": "hsl(224 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00886": { - "id": "shape:perf:00886", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 512, - "rot": 0, - "props": { - "w": 44, - "h": 39, - "fill": "hsl(66 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00887": { - "id": "shape:perf:00887", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 512, - "rot": 0, - "props": { - "w": 35, - "h": 40, - "fill": "hsl(232 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00888": { - "id": "shape:perf:00888", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 512, - "rot": 0, - "props": { - "w": 24, - "h": 32, - "fill": "hsl(181 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00889": { - "id": "shape:perf:00889", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 512, - "rot": 0, - "props": { - "w": 26, - "h": 35, - "fill": "hsl(13 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00890": { - "id": "shape:perf:00890", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 512, - "rot": 0, - "props": { - "w": 28, - "h": 32, - "fill": "hsl(113 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00891": { - "id": "shape:perf:00891", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 512, - "rot": 0, - "props": { - "w": 27, - "h": 25, - "fill": "hsl(258 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00892": { - "id": "shape:perf:00892", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 512, - "rot": 0, - "props": { - "w": 47, - "h": 27, - "fill": "hsl(102 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00893": { - "id": "shape:perf:00893", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 512, - "rot": 0, - "props": { - "w": 44, - "h": 33, - "fill": "hsl(45 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00894": { - "id": "shape:perf:00894", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 512, - "rot": 0, - "props": { - "w": 29, - "h": 41, - "fill": "hsl(224 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00895": { - "id": "shape:perf:00895", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 512, - "rot": 0, - "props": { - "w": 24, - "h": 31, - "fill": "hsl(131 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00896": { - "id": "shape:perf:00896", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 512, - "rot": 0, - "props": { - "w": 47, - "h": 32, - "fill": "hsl(86 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00897": { - "id": "shape:perf:00897", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 512, - "rot": 0, - "props": { - "w": 34, - "h": 33, - "fill": "hsl(274 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00898": { - "id": "shape:perf:00898", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 512, - "rot": 0, - "props": { - "w": 32, - "h": 36, - "fill": "hsl(337 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00899": { - "id": "shape:perf:00899", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 512, - "rot": 0, - "props": { - "w": 39, - "h": 27, - "fill": "hsl(186 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00900": { - "id": "shape:perf:00900", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 576, - "rot": 0, - "props": { - "w": 45, - "h": 33, - "fill": "hsl(258 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00901": { - "id": "shape:perf:00901", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 576, - "rot": 0, - "props": { - "w": 30, - "h": 24, - "fill": "hsl(147 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00902": { - "id": "shape:perf:00902", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 576, - "rot": 0, - "props": { - "w": 40, - "h": 45, - "fill": "hsl(157 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00903": { - "id": "shape:perf:00903", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 576, - "rot": 0, - "props": { - "w": 46, - "h": 47, - "fill": "hsl(56 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00904": { - "id": "shape:perf:00904", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 576, - "rot": 0, - "props": { - "w": 37, - "h": 38, - "fill": "hsl(130 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00905": { - "id": "shape:perf:00905", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 576, - "rot": 0, - "props": { - "w": 32, - "h": 33, - "fill": "hsl(232 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00906": { - "id": "shape:perf:00906", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 576, - "rot": 0, - "props": { - "w": 27, - "h": 37, - "fill": "hsl(333 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00907": { - "id": "shape:perf:00907", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 576, - "rot": 0, - "props": { - "w": 38, - "h": 40, - "fill": "hsl(164 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00908": { - "id": "shape:perf:00908", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 576, - "rot": 0, - "props": { - "w": 41, - "h": 30, - "fill": "hsl(23 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00909": { - "id": "shape:perf:00909", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 576, - "rot": 0, - "props": { - "w": 27, - "h": 44, - "fill": "hsl(98 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00910": { - "id": "shape:perf:00910", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 576, - "rot": 0, - "props": { - "w": 46, - "h": 28, - "fill": "hsl(34 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00911": { - "id": "shape:perf:00911", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 576, - "rot": 0, - "props": { - "w": 31, - "h": 36, - "fill": "hsl(17 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00912": { - "id": "shape:perf:00912", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 576, - "rot": 0, - "props": { - "w": 33, - "h": 27, - "fill": "hsl(70 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00913": { - "id": "shape:perf:00913", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 576, - "rot": 0, - "props": { - "w": 29, - "h": 45, - "fill": "hsl(195 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00914": { - "id": "shape:perf:00914", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 576, - "rot": 0, - "props": { - "w": 24, - "h": 37, - "fill": "hsl(68 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00915": { - "id": "shape:perf:00915", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 576, - "rot": 0, - "props": { - "w": 33, - "h": 35, - "fill": "hsl(179 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00916": { - "id": "shape:perf:00916", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 576, - "rot": 0, - "props": { - "w": 26, - "h": 29, - "fill": "hsl(257 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00917": { - "id": "shape:perf:00917", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 576, - "rot": 0, - "props": { - "w": 32, - "h": 41, - "fill": "hsl(119 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00918": { - "id": "shape:perf:00918", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 576, - "rot": 0, - "props": { - "w": 40, - "h": 40, - "fill": "hsl(305 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00919": { - "id": "shape:perf:00919", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 576, - "rot": 0, - "props": { - "w": 42, - "h": 39, - "fill": "hsl(173 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00920": { - "id": "shape:perf:00920", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 576, - "rot": 0, - "props": { - "w": 31, - "h": 33, - "fill": "hsl(23 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00921": { - "id": "shape:perf:00921", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 576, - "rot": 0, - "props": { - "w": 46, - "h": 45, - "fill": "hsl(103 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00922": { - "id": "shape:perf:00922", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 576, - "rot": 0, - "props": { - "w": 33, - "h": 37, - "fill": "hsl(42 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00923": { - "id": "shape:perf:00923", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 576, - "rot": 0, - "props": { - "w": 39, - "h": 47, - "fill": "hsl(109 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00924": { - "id": "shape:perf:00924", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 576, - "rot": 0, - "props": { - "w": 24, - "h": 28, - "fill": "hsl(322 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00925": { - "id": "shape:perf:00925", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 576, - "rot": 0, - "props": { - "w": 43, - "h": 36, - "fill": "hsl(89 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00926": { - "id": "shape:perf:00926", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 576, - "rot": 0, - "props": { - "w": 47, - "h": 44, - "fill": "hsl(299 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00927": { - "id": "shape:perf:00927", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 576, - "rot": 0, - "props": { - "w": 45, - "h": 41, - "fill": "hsl(239 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00928": { - "id": "shape:perf:00928", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 576, - "rot": 0, - "props": { - "w": 46, - "h": 42, - "fill": "hsl(15 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00929": { - "id": "shape:perf:00929", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 576, - "rot": 0, - "props": { - "w": 24, - "h": 45, - "fill": "hsl(175 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00930": { - "id": "shape:perf:00930", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 576, - "rot": 0, - "props": { - "w": 39, - "h": 39, - "fill": "hsl(312 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00931": { - "id": "shape:perf:00931", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 576, - "rot": 0, - "props": { - "w": 42, - "h": 37, - "fill": "hsl(314 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00932": { - "id": "shape:perf:00932", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 576, - "rot": 0, - "props": { - "w": 29, - "h": 40, - "fill": "hsl(119 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00933": { - "id": "shape:perf:00933", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 576, - "rot": 0, - "props": { - "w": 30, - "h": 27, - "fill": "hsl(204 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00934": { - "id": "shape:perf:00934", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 576, - "rot": 0, - "props": { - "w": 44, - "h": 42, - "fill": "hsl(6 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00935": { - "id": "shape:perf:00935", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 576, - "rot": 0, - "props": { - "w": 39, - "h": 39, - "fill": "hsl(341 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00936": { - "id": "shape:perf:00936", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 576, - "rot": 0, - "props": { - "w": 40, - "h": 38, - "fill": "hsl(16 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00937": { - "id": "shape:perf:00937", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 576, - "rot": 0, - "props": { - "w": 36, - "h": 42, - "fill": "hsl(315 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00938": { - "id": "shape:perf:00938", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 576, - "rot": 0, - "props": { - "w": 24, - "h": 24, - "fill": "hsl(160 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00939": { - "id": "shape:perf:00939", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 576, - "rot": 0, - "props": { - "w": 32, - "h": 27, - "fill": "hsl(71 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00940": { - "id": "shape:perf:00940", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 576, - "rot": 0, - "props": { - "w": 38, - "h": 29, - "fill": "hsl(88 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00941": { - "id": "shape:perf:00941", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 576, - "rot": 0, - "props": { - "w": 47, - "h": 41, - "fill": "hsl(34 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00942": { - "id": "shape:perf:00942", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 576, - "rot": 0, - "props": { - "w": 33, - "h": 38, - "fill": "hsl(345 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00943": { - "id": "shape:perf:00943", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 576, - "rot": 0, - "props": { - "w": 25, - "h": 37, - "fill": "hsl(109 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00944": { - "id": "shape:perf:00944", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 576, - "rot": 0, - "props": { - "w": 42, - "h": 41, - "fill": "hsl(72 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00945": { - "id": "shape:perf:00945", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 576, - "rot": 0, - "props": { - "w": 25, - "h": 39, - "fill": "hsl(78 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00946": { - "id": "shape:perf:00946", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 576, - "rot": 0, - "props": { - "w": 27, - "h": 24, - "fill": "hsl(222 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00947": { - "id": "shape:perf:00947", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 576, - "rot": 0, - "props": { - "w": 40, - "h": 47, - "fill": "hsl(2 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00948": { - "id": "shape:perf:00948", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 576, - "rot": 0, - "props": { - "w": 28, - "h": 33, - "fill": "hsl(229 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00949": { - "id": "shape:perf:00949", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 576, - "rot": 0, - "props": { - "w": 39, - "h": 34, - "fill": "hsl(299 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00950": { - "id": "shape:perf:00950", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 576, - "rot": 0, - "props": { - "w": 42, - "h": 46, - "fill": "hsl(125 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00951": { - "id": "shape:perf:00951", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 576, - "rot": 0, - "props": { - "w": 30, - "h": 32, - "fill": "hsl(301 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00952": { - "id": "shape:perf:00952", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 576, - "rot": 0, - "props": { - "w": 24, - "h": 40, - "fill": "hsl(203 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00953": { - "id": "shape:perf:00953", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 576, - "rot": 0, - "props": { - "w": 25, - "h": 28, - "fill": "hsl(283 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00954": { - "id": "shape:perf:00954", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 576, - "rot": 0, - "props": { - "w": 35, - "h": 34, - "fill": "hsl(224 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00955": { - "id": "shape:perf:00955", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 576, - "rot": 0, - "props": { - "w": 30, - "h": 41, - "fill": "hsl(209 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00956": { - "id": "shape:perf:00956", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 576, - "rot": 0, - "props": { - "w": 31, - "h": 39, - "fill": "hsl(323 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00957": { - "id": "shape:perf:00957", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 576, - "rot": 0, - "props": { - "w": 30, - "h": 26, - "fill": "hsl(176 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00958": { - "id": "shape:perf:00958", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 576, - "rot": 0, - "props": { - "w": 47, - "h": 29, - "fill": "hsl(138 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00959": { - "id": "shape:perf:00959", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 576, - "rot": 0, - "props": { - "w": 40, - "h": 44, - "fill": "hsl(133 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00960": { - "id": "shape:perf:00960", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 576, - "rot": 0, - "props": { - "w": 35, - "h": 29, - "fill": "hsl(45 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00961": { - "id": "shape:perf:00961", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 576, - "rot": 0, - "props": { - "w": 41, - "h": 24, - "fill": "hsl(145 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00962": { - "id": "shape:perf:00962", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 576, - "rot": 0, - "props": { - "w": 39, - "h": 43, - "fill": "hsl(255 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00963": { - "id": "shape:perf:00963", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 576, - "rot": 0, - "props": { - "w": 39, - "h": 47, - "fill": "hsl(217 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00964": { - "id": "shape:perf:00964", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 576, - "rot": 0, - "props": { - "w": 25, - "h": 34, - "fill": "hsl(263 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00965": { - "id": "shape:perf:00965", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 576, - "rot": 0, - "props": { - "w": 25, - "h": 40, - "fill": "hsl(199 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00966": { - "id": "shape:perf:00966", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 576, - "rot": 0, - "props": { - "w": 41, - "h": 36, - "fill": "hsl(351 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00967": { - "id": "shape:perf:00967", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 576, - "rot": 0, - "props": { - "w": 31, - "h": 26, - "fill": "hsl(32 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00968": { - "id": "shape:perf:00968", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 576, - "rot": 0, - "props": { - "w": 42, - "h": 43, - "fill": "hsl(50 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00969": { - "id": "shape:perf:00969", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 576, - "rot": 0, - "props": { - "w": 35, - "h": 42, - "fill": "hsl(13 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00970": { - "id": "shape:perf:00970", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 576, - "rot": 0, - "props": { - "w": 27, - "h": 39, - "fill": "hsl(168 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00971": { - "id": "shape:perf:00971", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 576, - "rot": 0, - "props": { - "w": 42, - "h": 46, - "fill": "hsl(35 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00972": { - "id": "shape:perf:00972", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 576, - "rot": 0, - "props": { - "w": 26, - "h": 47, - "fill": "hsl(138 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00973": { - "id": "shape:perf:00973", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 576, - "rot": 0, - "props": { - "w": 37, - "h": 36, - "fill": "hsl(329 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00974": { - "id": "shape:perf:00974", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 576, - "rot": 0, - "props": { - "w": 36, - "h": 46, - "fill": "hsl(257 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00975": { - "id": "shape:perf:00975", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 576, - "rot": 0, - "props": { - "w": 35, - "h": 26, - "fill": "hsl(92 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00976": { - "id": "shape:perf:00976", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 576, - "rot": 0, - "props": { - "w": 28, - "h": 29, - "fill": "hsl(274 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00977": { - "id": "shape:perf:00977", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 576, - "rot": 0, - "props": { - "w": 26, - "h": 27, - "fill": "hsl(343 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00978": { - "id": "shape:perf:00978", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 576, - "rot": 0, - "props": { - "w": 41, - "h": 47, - "fill": "hsl(355 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00979": { - "id": "shape:perf:00979", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 576, - "rot": 0, - "props": { - "w": 28, - "h": 38, - "fill": "hsl(149 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00980": { - "id": "shape:perf:00980", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 576, - "rot": 0, - "props": { - "w": 44, - "h": 39, - "fill": "hsl(66 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00981": { - "id": "shape:perf:00981", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 576, - "rot": 0, - "props": { - "w": 38, - "h": 37, - "fill": "hsl(23 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00982": { - "id": "shape:perf:00982", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 576, - "rot": 0, - "props": { - "w": 32, - "h": 31, - "fill": "hsl(257 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00983": { - "id": "shape:perf:00983", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 576, - "rot": 0, - "props": { - "w": 42, - "h": 39, - "fill": "hsl(351 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00984": { - "id": "shape:perf:00984", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 576, - "rot": 0, - "props": { - "w": 25, - "h": 27, - "fill": "hsl(358 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00985": { - "id": "shape:perf:00985", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 576, - "rot": 0, - "props": { - "w": 29, - "h": 35, - "fill": "hsl(167 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00986": { - "id": "shape:perf:00986", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 576, - "rot": 0, - "props": { - "w": 38, - "h": 40, - "fill": "hsl(298 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00987": { - "id": "shape:perf:00987", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 576, - "rot": 0, - "props": { - "w": 30, - "h": 24, - "fill": "hsl(100 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00988": { - "id": "shape:perf:00988", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 576, - "rot": 0, - "props": { - "w": 45, - "h": 47, - "fill": "hsl(149 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00989": { - "id": "shape:perf:00989", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 576, - "rot": 0, - "props": { - "w": 38, - "h": 25, - "fill": "hsl(307 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00990": { - "id": "shape:perf:00990", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 576, - "rot": 0, - "props": { - "w": 32, - "h": 26, - "fill": "hsl(75 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00991": { - "id": "shape:perf:00991", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 576, - "rot": 0, - "props": { - "w": 44, - "h": 43, - "fill": "hsl(11 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00992": { - "id": "shape:perf:00992", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 576, - "rot": 0, - "props": { - "w": 30, - "h": 44, - "fill": "hsl(347 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00993": { - "id": "shape:perf:00993", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 576, - "rot": 0, - "props": { - "w": 39, - "h": 34, - "fill": "hsl(69 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00994": { - "id": "shape:perf:00994", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 576, - "rot": 0, - "props": { - "w": 27, - "h": 24, - "fill": "hsl(286 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:00995": { - "id": "shape:perf:00995", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 576, - "rot": 0, - "props": { - "w": 42, - "h": 28, - "fill": "hsl(329 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:00996": { - "id": "shape:perf:00996", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 576, - "rot": 0, - "props": { - "w": 39, - "h": 46, - "fill": "hsl(168 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:00997": { - "id": "shape:perf:00997", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 576, - "rot": 0, - "props": { - "w": 39, - "h": 35, - "fill": "hsl(289 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:00998": { - "id": "shape:perf:00998", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 576, - "rot": 0, - "props": { - "w": 25, - "h": 24, - "fill": "hsl(0 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:00999": { - "id": "shape:perf:00999", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 576, - "rot": 0, - "props": { - "w": 29, - "h": 35, - "fill": "hsl(284 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01000": { - "id": "shape:perf:01000", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 640, - "rot": 0, - "props": { - "w": 25, - "h": 46, - "fill": "hsl(175 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01001": { - "id": "shape:perf:01001", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 640, - "rot": 0, - "props": { - "w": 24, - "h": 34, - "fill": "hsl(335 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01002": { - "id": "shape:perf:01002", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 640, - "rot": 0, - "props": { - "w": 27, - "h": 30, - "fill": "hsl(190 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01003": { - "id": "shape:perf:01003", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 640, - "rot": 0, - "props": { - "w": 29, - "h": 43, - "fill": "hsl(78 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01004": { - "id": "shape:perf:01004", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 640, - "rot": 0, - "props": { - "w": 37, - "h": 25, - "fill": "hsl(119 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01005": { - "id": "shape:perf:01005", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 640, - "rot": 0, - "props": { - "w": 42, - "h": 45, - "fill": "hsl(355 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01006": { - "id": "shape:perf:01006", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 640, - "rot": 0, - "props": { - "w": 43, - "h": 47, - "fill": "hsl(254 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01007": { - "id": "shape:perf:01007", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 640, - "rot": 0, - "props": { - "w": 33, - "h": 27, - "fill": "hsl(51 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01008": { - "id": "shape:perf:01008", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 640, - "rot": 0, - "props": { - "w": 34, - "h": 31, - "fill": "hsl(343 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01009": { - "id": "shape:perf:01009", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 640, - "rot": 0, - "props": { - "w": 26, - "h": 39, - "fill": "hsl(21 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01010": { - "id": "shape:perf:01010", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 640, - "rot": 0, - "props": { - "w": 45, - "h": 34, - "fill": "hsl(330 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01011": { - "id": "shape:perf:01011", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 640, - "rot": 0, - "props": { - "w": 29, - "h": 45, - "fill": "hsl(358 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01012": { - "id": "shape:perf:01012", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 640, - "rot": 0, - "props": { - "w": 31, - "h": 28, - "fill": "hsl(140 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01013": { - "id": "shape:perf:01013", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 640, - "rot": 0, - "props": { - "w": 33, - "h": 34, - "fill": "hsl(173 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01014": { - "id": "shape:perf:01014", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 640, - "rot": 0, - "props": { - "w": 34, - "h": 24, - "fill": "hsl(293 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01015": { - "id": "shape:perf:01015", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 640, - "rot": 0, - "props": { - "w": 43, - "h": 32, - "fill": "hsl(196 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01016": { - "id": "shape:perf:01016", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 640, - "rot": 0, - "props": { - "w": 36, - "h": 42, - "fill": "hsl(197 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01017": { - "id": "shape:perf:01017", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 640, - "rot": 0, - "props": { - "w": 39, - "h": 27, - "fill": "hsl(182 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01018": { - "id": "shape:perf:01018", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 640, - "rot": 0, - "props": { - "w": 29, - "h": 42, - "fill": "hsl(110 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01019": { - "id": "shape:perf:01019", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 640, - "rot": 0, - "props": { - "w": 35, - "h": 27, - "fill": "hsl(97 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01020": { - "id": "shape:perf:01020", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 640, - "rot": 0, - "props": { - "w": 41, - "h": 33, - "fill": "hsl(189 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01021": { - "id": "shape:perf:01021", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 640, - "rot": 0, - "props": { - "w": 39, - "h": 32, - "fill": "hsl(131 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01022": { - "id": "shape:perf:01022", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 640, - "rot": 0, - "props": { - "w": 35, - "h": 30, - "fill": "hsl(203 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01023": { - "id": "shape:perf:01023", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 640, - "rot": 0, - "props": { - "w": 47, - "h": 26, - "fill": "hsl(31 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01024": { - "id": "shape:perf:01024", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 640, - "rot": 0, - "props": { - "w": 37, - "h": 30, - "fill": "hsl(266 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01025": { - "id": "shape:perf:01025", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 640, - "rot": 0, - "props": { - "w": 45, - "h": 39, - "fill": "hsl(105 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01026": { - "id": "shape:perf:01026", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 640, - "rot": 0, - "props": { - "w": 24, - "h": 41, - "fill": "hsl(189 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01027": { - "id": "shape:perf:01027", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 640, - "rot": 0, - "props": { - "w": 42, - "h": 25, - "fill": "hsl(234 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01028": { - "id": "shape:perf:01028", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 640, - "rot": 0, - "props": { - "w": 37, - "h": 42, - "fill": "hsl(194 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01029": { - "id": "shape:perf:01029", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 640, - "rot": 0, - "props": { - "w": 43, - "h": 47, - "fill": "hsl(102 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01030": { - "id": "shape:perf:01030", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 640, - "rot": 0, - "props": { - "w": 36, - "h": 26, - "fill": "hsl(225 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01031": { - "id": "shape:perf:01031", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 640, - "rot": 0, - "props": { - "w": 38, - "h": 41, - "fill": "hsl(233 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01032": { - "id": "shape:perf:01032", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 640, - "rot": 0, - "props": { - "w": 46, - "h": 39, - "fill": "hsl(45 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01033": { - "id": "shape:perf:01033", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 640, - "rot": 0, - "props": { - "w": 35, - "h": 27, - "fill": "hsl(229 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01034": { - "id": "shape:perf:01034", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 640, - "rot": 0, - "props": { - "w": 45, - "h": 39, - "fill": "hsl(267 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01035": { - "id": "shape:perf:01035", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 640, - "rot": 0, - "props": { - "w": 33, - "h": 28, - "fill": "hsl(267 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01036": { - "id": "shape:perf:01036", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 640, - "rot": 0, - "props": { - "w": 47, - "h": 46, - "fill": "hsl(320 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01037": { - "id": "shape:perf:01037", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 640, - "rot": 0, - "props": { - "w": 44, - "h": 39, - "fill": "hsl(214 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01038": { - "id": "shape:perf:01038", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 640, - "rot": 0, - "props": { - "w": 45, - "h": 25, - "fill": "hsl(216 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01039": { - "id": "shape:perf:01039", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 640, - "rot": 0, - "props": { - "w": 44, - "h": 27, - "fill": "hsl(37 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01040": { - "id": "shape:perf:01040", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 640, - "rot": 0, - "props": { - "w": 42, - "h": 24, - "fill": "hsl(202 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01041": { - "id": "shape:perf:01041", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 640, - "rot": 0, - "props": { - "w": 25, - "h": 32, - "fill": "hsl(220 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01042": { - "id": "shape:perf:01042", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 640, - "rot": 0, - "props": { - "w": 40, - "h": 42, - "fill": "hsl(37 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01043": { - "id": "shape:perf:01043", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 640, - "rot": 0, - "props": { - "w": 30, - "h": 39, - "fill": "hsl(239 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01044": { - "id": "shape:perf:01044", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 640, - "rot": 0, - "props": { - "w": 46, - "h": 36, - "fill": "hsl(261 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01045": { - "id": "shape:perf:01045", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 640, - "rot": 0, - "props": { - "w": 24, - "h": 26, - "fill": "hsl(18 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01046": { - "id": "shape:perf:01046", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 640, - "rot": 0, - "props": { - "w": 38, - "h": 28, - "fill": "hsl(120 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01047": { - "id": "shape:perf:01047", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 640, - "rot": 0, - "props": { - "w": 39, - "h": 29, - "fill": "hsl(213 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01048": { - "id": "shape:perf:01048", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 640, - "rot": 0, - "props": { - "w": 35, - "h": 34, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01049": { - "id": "shape:perf:01049", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 640, - "rot": 0, - "props": { - "w": 31, - "h": 24, - "fill": "hsl(131 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01050": { - "id": "shape:perf:01050", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 640, - "rot": 0, - "props": { - "w": 31, - "h": 28, - "fill": "hsl(75 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01051": { - "id": "shape:perf:01051", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 640, - "rot": 0, - "props": { - "w": 27, - "h": 25, - "fill": "hsl(206 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01052": { - "id": "shape:perf:01052", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 640, - "rot": 0, - "props": { - "w": 35, - "h": 44, - "fill": "hsl(91 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01053": { - "id": "shape:perf:01053", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 640, - "rot": 0, - "props": { - "w": 37, - "h": 25, - "fill": "hsl(18 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01054": { - "id": "shape:perf:01054", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 640, - "rot": 0, - "props": { - "w": 43, - "h": 28, - "fill": "hsl(11 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01055": { - "id": "shape:perf:01055", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 640, - "rot": 0, - "props": { - "w": 24, - "h": 39, - "fill": "hsl(310 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01056": { - "id": "shape:perf:01056", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 640, - "rot": 0, - "props": { - "w": 28, - "h": 38, - "fill": "hsl(119 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01057": { - "id": "shape:perf:01057", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 640, - "rot": 0, - "props": { - "w": 42, - "h": 44, - "fill": "hsl(328 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01058": { - "id": "shape:perf:01058", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 640, - "rot": 0, - "props": { - "w": 47, - "h": 43, - "fill": "hsl(140 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01059": { - "id": "shape:perf:01059", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 640, - "rot": 0, - "props": { - "w": 31, - "h": 41, - "fill": "hsl(107 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01060": { - "id": "shape:perf:01060", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 640, - "rot": 0, - "props": { - "w": 39, - "h": 45, - "fill": "hsl(146 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01061": { - "id": "shape:perf:01061", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 640, - "rot": 0, - "props": { - "w": 30, - "h": 29, - "fill": "hsl(168 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01062": { - "id": "shape:perf:01062", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 640, - "rot": 0, - "props": { - "w": 31, - "h": 44, - "fill": "hsl(72 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01063": { - "id": "shape:perf:01063", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 640, - "rot": 0, - "props": { - "w": 31, - "h": 47, - "fill": "hsl(234 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01064": { - "id": "shape:perf:01064", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 640, - "rot": 0, - "props": { - "w": 43, - "h": 40, - "fill": "hsl(109 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01065": { - "id": "shape:perf:01065", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 640, - "rot": 0, - "props": { - "w": 45, - "h": 36, - "fill": "hsl(176 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01066": { - "id": "shape:perf:01066", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 640, - "rot": 0, - "props": { - "w": 46, - "h": 32, - "fill": "hsl(288 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01067": { - "id": "shape:perf:01067", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 640, - "rot": 0, - "props": { - "w": 40, - "h": 27, - "fill": "hsl(5 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01068": { - "id": "shape:perf:01068", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 640, - "rot": 0, - "props": { - "w": 30, - "h": 39, - "fill": "hsl(294 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01069": { - "id": "shape:perf:01069", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 640, - "rot": 0, - "props": { - "w": 33, - "h": 38, - "fill": "hsl(10 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01070": { - "id": "shape:perf:01070", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 640, - "rot": 0, - "props": { - "w": 39, - "h": 29, - "fill": "hsl(144 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01071": { - "id": "shape:perf:01071", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 640, - "rot": 0, - "props": { - "w": 27, - "h": 26, - "fill": "hsl(56 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01072": { - "id": "shape:perf:01072", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 640, - "rot": 0, - "props": { - "w": 25, - "h": 24, - "fill": "hsl(24 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01073": { - "id": "shape:perf:01073", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 640, - "rot": 0, - "props": { - "w": 26, - "h": 28, - "fill": "hsl(162 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01074": { - "id": "shape:perf:01074", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 640, - "rot": 0, - "props": { - "w": 26, - "h": 43, - "fill": "hsl(115 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01075": { - "id": "shape:perf:01075", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 640, - "rot": 0, - "props": { - "w": 38, - "h": 44, - "fill": "hsl(352 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01076": { - "id": "shape:perf:01076", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 640, - "rot": 0, - "props": { - "w": 38, - "h": 33, - "fill": "hsl(46 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01077": { - "id": "shape:perf:01077", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 640, - "rot": 0, - "props": { - "w": 34, - "h": 26, - "fill": "hsl(91 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01078": { - "id": "shape:perf:01078", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 640, - "rot": 0, - "props": { - "w": 29, - "h": 29, - "fill": "hsl(285 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01079": { - "id": "shape:perf:01079", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 640, - "rot": 0, - "props": { - "w": 32, - "h": 25, - "fill": "hsl(198 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01080": { - "id": "shape:perf:01080", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 640, - "rot": 0, - "props": { - "w": 27, - "h": 27, - "fill": "hsl(287 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01081": { - "id": "shape:perf:01081", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 640, - "rot": 0, - "props": { - "w": 43, - "h": 29, - "fill": "hsl(275 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01082": { - "id": "shape:perf:01082", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 640, - "rot": 0, - "props": { - "w": 31, - "h": 30, - "fill": "hsl(98 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01083": { - "id": "shape:perf:01083", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 640, - "rot": 0, - "props": { - "w": 27, - "h": 36, - "fill": "hsl(121 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01084": { - "id": "shape:perf:01084", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 640, - "rot": 0, - "props": { - "w": 43, - "h": 29, - "fill": "hsl(211 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01085": { - "id": "shape:perf:01085", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 640, - "rot": 0, - "props": { - "w": 47, - "h": 30, - "fill": "hsl(347 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01086": { - "id": "shape:perf:01086", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 640, - "rot": 0, - "props": { - "w": 24, - "h": 47, - "fill": "hsl(188 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01087": { - "id": "shape:perf:01087", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 640, - "rot": 0, - "props": { - "w": 26, - "h": 45, - "fill": "hsl(208 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01088": { - "id": "shape:perf:01088", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 640, - "rot": 0, - "props": { - "w": 37, - "h": 35, - "fill": "hsl(117 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01089": { - "id": "shape:perf:01089", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 640, - "rot": 0, - "props": { - "w": 40, - "h": 31, - "fill": "hsl(10 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01090": { - "id": "shape:perf:01090", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 640, - "rot": 0, - "props": { - "w": 43, - "h": 34, - "fill": "hsl(343 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01091": { - "id": "shape:perf:01091", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 640, - "rot": 0, - "props": { - "w": 47, - "h": 36, - "fill": "hsl(355 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01092": { - "id": "shape:perf:01092", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 640, - "rot": 0, - "props": { - "w": 28, - "h": 34, - "fill": "hsl(349 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01093": { - "id": "shape:perf:01093", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 640, - "rot": 0, - "props": { - "w": 40, - "h": 42, - "fill": "hsl(125 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01094": { - "id": "shape:perf:01094", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 640, - "rot": 0, - "props": { - "w": 32, - "h": 36, - "fill": "hsl(327 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01095": { - "id": "shape:perf:01095", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 640, - "rot": 0, - "props": { - "w": 26, - "h": 26, - "fill": "hsl(64 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01096": { - "id": "shape:perf:01096", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 640, - "rot": 0, - "props": { - "w": 28, - "h": 41, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01097": { - "id": "shape:perf:01097", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 640, - "rot": 0, - "props": { - "w": 46, - "h": 39, - "fill": "hsl(31 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01098": { - "id": "shape:perf:01098", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 640, - "rot": 0, - "props": { - "w": 27, - "h": 47, - "fill": "hsl(351 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01099": { - "id": "shape:perf:01099", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 640, - "rot": 0, - "props": { - "w": 44, - "h": 36, - "fill": "hsl(181 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01100": { - "id": "shape:perf:01100", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 704, - "rot": 0, - "props": { - "w": 29, - "h": 27, - "fill": "hsl(295 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01101": { - "id": "shape:perf:01101", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 704, - "rot": 0, - "props": { - "w": 36, - "h": 40, - "fill": "hsl(214 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01102": { - "id": "shape:perf:01102", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 704, - "rot": 0, - "props": { - "w": 27, - "h": 29, - "fill": "hsl(154 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01103": { - "id": "shape:perf:01103", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 704, - "rot": 0, - "props": { - "w": 43, - "h": 33, - "fill": "hsl(78 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01104": { - "id": "shape:perf:01104", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 704, - "rot": 0, - "props": { - "w": 42, - "h": 36, - "fill": "hsl(236 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01105": { - "id": "shape:perf:01105", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 704, - "rot": 0, - "props": { - "w": 34, - "h": 47, - "fill": "hsl(66 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01106": { - "id": "shape:perf:01106", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 704, - "rot": 0, - "props": { - "w": 25, - "h": 40, - "fill": "hsl(151 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01107": { - "id": "shape:perf:01107", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 704, - "rot": 0, - "props": { - "w": 39, - "h": 40, - "fill": "hsl(50 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01108": { - "id": "shape:perf:01108", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 704, - "rot": 0, - "props": { - "w": 33, - "h": 43, - "fill": "hsl(352 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01109": { - "id": "shape:perf:01109", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 704, - "rot": 0, - "props": { - "w": 33, - "h": 36, - "fill": "hsl(33 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01110": { - "id": "shape:perf:01110", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 704, - "rot": 0, - "props": { - "w": 33, - "h": 40, - "fill": "hsl(193 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01111": { - "id": "shape:perf:01111", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 704, - "rot": 0, - "props": { - "w": 42, - "h": 37, - "fill": "hsl(89 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01112": { - "id": "shape:perf:01112", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 704, - "rot": 0, - "props": { - "w": 44, - "h": 45, - "fill": "hsl(321 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01113": { - "id": "shape:perf:01113", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 704, - "rot": 0, - "props": { - "w": 31, - "h": 27, - "fill": "hsl(247 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01114": { - "id": "shape:perf:01114", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 704, - "rot": 0, - "props": { - "w": 25, - "h": 28, - "fill": "hsl(288 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01115": { - "id": "shape:perf:01115", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 704, - "rot": 0, - "props": { - "w": 42, - "h": 47, - "fill": "hsl(310 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01116": { - "id": "shape:perf:01116", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 704, - "rot": 0, - "props": { - "w": 25, - "h": 46, - "fill": "hsl(164 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01117": { - "id": "shape:perf:01117", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 704, - "rot": 0, - "props": { - "w": 42, - "h": 29, - "fill": "hsl(61 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01118": { - "id": "shape:perf:01118", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 704, - "rot": 0, - "props": { - "w": 27, - "h": 33, - "fill": "hsl(103 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01119": { - "id": "shape:perf:01119", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 704, - "rot": 0, - "props": { - "w": 41, - "h": 41, - "fill": "hsl(123 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01120": { - "id": "shape:perf:01120", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 704, - "rot": 0, - "props": { - "w": 39, - "h": 27, - "fill": "hsl(5 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01121": { - "id": "shape:perf:01121", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 704, - "rot": 0, - "props": { - "w": 29, - "h": 44, - "fill": "hsl(136 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01122": { - "id": "shape:perf:01122", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 704, - "rot": 0, - "props": { - "w": 28, - "h": 31, - "fill": "hsl(307 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01123": { - "id": "shape:perf:01123", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 704, - "rot": 0, - "props": { - "w": 34, - "h": 24, - "fill": "hsl(173 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01124": { - "id": "shape:perf:01124", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 704, - "rot": 0, - "props": { - "w": 40, - "h": 41, - "fill": "hsl(215 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01125": { - "id": "shape:perf:01125", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 704, - "rot": 0, - "props": { - "w": 37, - "h": 42, - "fill": "hsl(155 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01126": { - "id": "shape:perf:01126", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 704, - "rot": 0, - "props": { - "w": 32, - "h": 33, - "fill": "hsl(275 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01127": { - "id": "shape:perf:01127", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 704, - "rot": 0, - "props": { - "w": 33, - "h": 26, - "fill": "hsl(0 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01128": { - "id": "shape:perf:01128", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 704, - "rot": 0, - "props": { - "w": 37, - "h": 37, - "fill": "hsl(99 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01129": { - "id": "shape:perf:01129", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 704, - "rot": 0, - "props": { - "w": 43, - "h": 44, - "fill": "hsl(109 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01130": { - "id": "shape:perf:01130", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 704, - "rot": 0, - "props": { - "w": 44, - "h": 44, - "fill": "hsl(41 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01131": { - "id": "shape:perf:01131", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 704, - "rot": 0, - "props": { - "w": 31, - "h": 44, - "fill": "hsl(298 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01132": { - "id": "shape:perf:01132", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 704, - "rot": 0, - "props": { - "w": 32, - "h": 25, - "fill": "hsl(202 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01133": { - "id": "shape:perf:01133", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 704, - "rot": 0, - "props": { - "w": 37, - "h": 44, - "fill": "hsl(223 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01134": { - "id": "shape:perf:01134", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 704, - "rot": 0, - "props": { - "w": 39, - "h": 31, - "fill": "hsl(124 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01135": { - "id": "shape:perf:01135", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 704, - "rot": 0, - "props": { - "w": 41, - "h": 44, - "fill": "hsl(33 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01136": { - "id": "shape:perf:01136", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 704, - "rot": 0, - "props": { - "w": 45, - "h": 28, - "fill": "hsl(80 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01137": { - "id": "shape:perf:01137", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 704, - "rot": 0, - "props": { - "w": 35, - "h": 31, - "fill": "hsl(66 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01138": { - "id": "shape:perf:01138", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 704, - "rot": 0, - "props": { - "w": 35, - "h": 46, - "fill": "hsl(119 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01139": { - "id": "shape:perf:01139", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 704, - "rot": 0, - "props": { - "w": 43, - "h": 36, - "fill": "hsl(353 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01140": { - "id": "shape:perf:01140", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 704, - "rot": 0, - "props": { - "w": 43, - "h": 25, - "fill": "hsl(42 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01141": { - "id": "shape:perf:01141", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 704, - "rot": 0, - "props": { - "w": 40, - "h": 26, - "fill": "hsl(29 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01142": { - "id": "shape:perf:01142", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 704, - "rot": 0, - "props": { - "w": 44, - "h": 29, - "fill": "hsl(267 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01143": { - "id": "shape:perf:01143", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 704, - "rot": 0, - "props": { - "w": 33, - "h": 31, - "fill": "hsl(321 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01144": { - "id": "shape:perf:01144", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 704, - "rot": 0, - "props": { - "w": 45, - "h": 38, - "fill": "hsl(325 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01145": { - "id": "shape:perf:01145", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 704, - "rot": 0, - "props": { - "w": 41, - "h": 38, - "fill": "hsl(139 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01146": { - "id": "shape:perf:01146", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 704, - "rot": 0, - "props": { - "w": 46, - "h": 24, - "fill": "hsl(247 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01147": { - "id": "shape:perf:01147", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 704, - "rot": 0, - "props": { - "w": 45, - "h": 36, - "fill": "hsl(209 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01148": { - "id": "shape:perf:01148", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 704, - "rot": 0, - "props": { - "w": 35, - "h": 31, - "fill": "hsl(271 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01149": { - "id": "shape:perf:01149", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 704, - "rot": 0, - "props": { - "w": 33, - "h": 28, - "fill": "hsl(271 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01150": { - "id": "shape:perf:01150", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 704, - "rot": 0, - "props": { - "w": 28, - "h": 42, - "fill": "hsl(318 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01151": { - "id": "shape:perf:01151", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 704, - "rot": 0, - "props": { - "w": 37, - "h": 34, - "fill": "hsl(57 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01152": { - "id": "shape:perf:01152", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 704, - "rot": 0, - "props": { - "w": 24, - "h": 30, - "fill": "hsl(139 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01153": { - "id": "shape:perf:01153", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 704, - "rot": 0, - "props": { - "w": 25, - "h": 32, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01154": { - "id": "shape:perf:01154", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 704, - "rot": 0, - "props": { - "w": 40, - "h": 34, - "fill": "hsl(292 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01155": { - "id": "shape:perf:01155", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 704, - "rot": 0, - "props": { - "w": 32, - "h": 45, - "fill": "hsl(70 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01156": { - "id": "shape:perf:01156", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 704, - "rot": 0, - "props": { - "w": 24, - "h": 36, - "fill": "hsl(36 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01157": { - "id": "shape:perf:01157", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 704, - "rot": 0, - "props": { - "w": 30, - "h": 24, - "fill": "hsl(266 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01158": { - "id": "shape:perf:01158", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 704, - "rot": 0, - "props": { - "w": 39, - "h": 46, - "fill": "hsl(217 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01159": { - "id": "shape:perf:01159", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 704, - "rot": 0, - "props": { - "w": 34, - "h": 43, - "fill": "hsl(100 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01160": { - "id": "shape:perf:01160", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 704, - "rot": 0, - "props": { - "w": 39, - "h": 45, - "fill": "hsl(208 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01161": { - "id": "shape:perf:01161", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 704, - "rot": 0, - "props": { - "w": 37, - "h": 44, - "fill": "hsl(98 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01162": { - "id": "shape:perf:01162", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 704, - "rot": 0, - "props": { - "w": 45, - "h": 31, - "fill": "hsl(231 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01163": { - "id": "shape:perf:01163", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 704, - "rot": 0, - "props": { - "w": 44, - "h": 32, - "fill": "hsl(267 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01164": { - "id": "shape:perf:01164", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 704, - "rot": 0, - "props": { - "w": 26, - "h": 44, - "fill": "hsl(235 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01165": { - "id": "shape:perf:01165", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 704, - "rot": 0, - "props": { - "w": 32, - "h": 30, - "fill": "hsl(159 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01166": { - "id": "shape:perf:01166", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 704, - "rot": 0, - "props": { - "w": 38, - "h": 34, - "fill": "hsl(47 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01167": { - "id": "shape:perf:01167", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 704, - "rot": 0, - "props": { - "w": 46, - "h": 43, - "fill": "hsl(172 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01168": { - "id": "shape:perf:01168", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 704, - "rot": 0, - "props": { - "w": 25, - "h": 28, - "fill": "hsl(128 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01169": { - "id": "shape:perf:01169", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 704, - "rot": 0, - "props": { - "w": 42, - "h": 39, - "fill": "hsl(212 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01170": { - "id": "shape:perf:01170", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 704, - "rot": 0, - "props": { - "w": 29, - "h": 38, - "fill": "hsl(24 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01171": { - "id": "shape:perf:01171", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 704, - "rot": 0, - "props": { - "w": 37, - "h": 46, - "fill": "hsl(353 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01172": { - "id": "shape:perf:01172", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 704, - "rot": 0, - "props": { - "w": 39, - "h": 42, - "fill": "hsl(299 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01173": { - "id": "shape:perf:01173", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 704, - "rot": 0, - "props": { - "w": 43, - "h": 26, - "fill": "hsl(90 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01174": { - "id": "shape:perf:01174", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 704, - "rot": 0, - "props": { - "w": 24, - "h": 39, - "fill": "hsl(147 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01175": { - "id": "shape:perf:01175", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 704, - "rot": 0, - "props": { - "w": 40, - "h": 46, - "fill": "hsl(34 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01176": { - "id": "shape:perf:01176", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 704, - "rot": 0, - "props": { - "w": 42, - "h": 33, - "fill": "hsl(15 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01177": { - "id": "shape:perf:01177", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 704, - "rot": 0, - "props": { - "w": 37, - "h": 40, - "fill": "hsl(136 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01178": { - "id": "shape:perf:01178", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 704, - "rot": 0, - "props": { - "w": 41, - "h": 43, - "fill": "hsl(141 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01179": { - "id": "shape:perf:01179", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 704, - "rot": 0, - "props": { - "w": 44, - "h": 47, - "fill": "hsl(25 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01180": { - "id": "shape:perf:01180", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 704, - "rot": 0, - "props": { - "w": 26, - "h": 34, - "fill": "hsl(114 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01181": { - "id": "shape:perf:01181", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 704, - "rot": 0, - "props": { - "w": 38, - "h": 37, - "fill": "hsl(291 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01182": { - "id": "shape:perf:01182", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 704, - "rot": 0, - "props": { - "w": 36, - "h": 28, - "fill": "hsl(77 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01183": { - "id": "shape:perf:01183", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 704, - "rot": 0, - "props": { - "w": 38, - "h": 43, - "fill": "hsl(329 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01184": { - "id": "shape:perf:01184", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 704, - "rot": 0, - "props": { - "w": 43, - "h": 47, - "fill": "hsl(50 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01185": { - "id": "shape:perf:01185", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 704, - "rot": 0, - "props": { - "w": 25, - "h": 33, - "fill": "hsl(205 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01186": { - "id": "shape:perf:01186", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 704, - "rot": 0, - "props": { - "w": 45, - "h": 27, - "fill": "hsl(225 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01187": { - "id": "shape:perf:01187", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 704, - "rot": 0, - "props": { - "w": 33, - "h": 26, - "fill": "hsl(62 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01188": { - "id": "shape:perf:01188", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 704, - "rot": 0, - "props": { - "w": 33, - "h": 41, - "fill": "hsl(268 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01189": { - "id": "shape:perf:01189", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 704, - "rot": 0, - "props": { - "w": 27, - "h": 43, - "fill": "hsl(292 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01190": { - "id": "shape:perf:01190", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 704, - "rot": 0, - "props": { - "w": 30, - "h": 44, - "fill": "hsl(32 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01191": { - "id": "shape:perf:01191", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 704, - "rot": 0, - "props": { - "w": 27, - "h": 25, - "fill": "hsl(202 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01192": { - "id": "shape:perf:01192", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 704, - "rot": 0, - "props": { - "w": 28, - "h": 36, - "fill": "hsl(156 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01193": { - "id": "shape:perf:01193", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 704, - "rot": 0, - "props": { - "w": 39, - "h": 38, - "fill": "hsl(141 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01194": { - "id": "shape:perf:01194", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 704, - "rot": 0, - "props": { - "w": 35, - "h": 37, - "fill": "hsl(204 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01195": { - "id": "shape:perf:01195", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 704, - "rot": 0, - "props": { - "w": 45, - "h": 46, - "fill": "hsl(52 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01196": { - "id": "shape:perf:01196", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 704, - "rot": 0, - "props": { - "w": 39, - "h": 40, - "fill": "hsl(241 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01197": { - "id": "shape:perf:01197", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 704, - "rot": 0, - "props": { - "w": 26, - "h": 24, - "fill": "hsl(149 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01198": { - "id": "shape:perf:01198", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 704, - "rot": 0, - "props": { - "w": 41, - "h": 28, - "fill": "hsl(35 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01199": { - "id": "shape:perf:01199", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 704, - "rot": 0, - "props": { - "w": 43, - "h": 46, - "fill": "hsl(345 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01200": { - "id": "shape:perf:01200", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 768, - "rot": 0, - "props": { - "w": 35, - "h": 29, - "fill": "hsl(129 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01201": { - "id": "shape:perf:01201", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 768, - "rot": 0, - "props": { - "w": 46, - "h": 30, - "fill": "hsl(108 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01202": { - "id": "shape:perf:01202", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 768, - "rot": 0, - "props": { - "w": 27, - "h": 47, - "fill": "hsl(255 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01203": { - "id": "shape:perf:01203", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 768, - "rot": 0, - "props": { - "w": 30, - "h": 43, - "fill": "hsl(95 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01204": { - "id": "shape:perf:01204", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 768, - "rot": 0, - "props": { - "w": 47, - "h": 40, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01205": { - "id": "shape:perf:01205", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 768, - "rot": 0, - "props": { - "w": 31, - "h": 34, - "fill": "hsl(53 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01206": { - "id": "shape:perf:01206", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 768, - "rot": 0, - "props": { - "w": 26, - "h": 45, - "fill": "hsl(134 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01207": { - "id": "shape:perf:01207", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 768, - "rot": 0, - "props": { - "w": 40, - "h": 24, - "fill": "hsl(306 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01208": { - "id": "shape:perf:01208", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 768, - "rot": 0, - "props": { - "w": 46, - "h": 29, - "fill": "hsl(257 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01209": { - "id": "shape:perf:01209", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 768, - "rot": 0, - "props": { - "w": 46, - "h": 41, - "fill": "hsl(161 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01210": { - "id": "shape:perf:01210", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 768, - "rot": 0, - "props": { - "w": 39, - "h": 34, - "fill": "hsl(346 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01211": { - "id": "shape:perf:01211", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 768, - "rot": 0, - "props": { - "w": 38, - "h": 45, - "fill": "hsl(18 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01212": { - "id": "shape:perf:01212", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 768, - "rot": 0, - "props": { - "w": 44, - "h": 26, - "fill": "hsl(341 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01213": { - "id": "shape:perf:01213", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 768, - "rot": 0, - "props": { - "w": 35, - "h": 43, - "fill": "hsl(161 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01214": { - "id": "shape:perf:01214", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 768, - "rot": 0, - "props": { - "w": 40, - "h": 30, - "fill": "hsl(182 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01215": { - "id": "shape:perf:01215", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 768, - "rot": 0, - "props": { - "w": 27, - "h": 25, - "fill": "hsl(142 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01216": { - "id": "shape:perf:01216", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 768, - "rot": 0, - "props": { - "w": 43, - "h": 25, - "fill": "hsl(242 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01217": { - "id": "shape:perf:01217", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 768, - "rot": 0, - "props": { - "w": 30, - "h": 33, - "fill": "hsl(258 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01218": { - "id": "shape:perf:01218", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 768, - "rot": 0, - "props": { - "w": 34, - "h": 30, - "fill": "hsl(61 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01219": { - "id": "shape:perf:01219", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 768, - "rot": 0, - "props": { - "w": 30, - "h": 44, - "fill": "hsl(38 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01220": { - "id": "shape:perf:01220", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 768, - "rot": 0, - "props": { - "w": 31, - "h": 37, - "fill": "hsl(92 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01221": { - "id": "shape:perf:01221", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 768, - "rot": 0, - "props": { - "w": 31, - "h": 25, - "fill": "hsl(253 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01222": { - "id": "shape:perf:01222", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 768, - "rot": 0, - "props": { - "w": 24, - "h": 44, - "fill": "hsl(260 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01223": { - "id": "shape:perf:01223", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 768, - "rot": 0, - "props": { - "w": 30, - "h": 38, - "fill": "hsl(285 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01224": { - "id": "shape:perf:01224", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 768, - "rot": 0, - "props": { - "w": 46, - "h": 28, - "fill": "hsl(38 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01225": { - "id": "shape:perf:01225", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 768, - "rot": 0, - "props": { - "w": 32, - "h": 35, - "fill": "hsl(118 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01226": { - "id": "shape:perf:01226", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 768, - "rot": 0, - "props": { - "w": 33, - "h": 39, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01227": { - "id": "shape:perf:01227", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 768, - "rot": 0, - "props": { - "w": 31, - "h": 30, - "fill": "hsl(25 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01228": { - "id": "shape:perf:01228", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 768, - "rot": 0, - "props": { - "w": 25, - "h": 36, - "fill": "hsl(46 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01229": { - "id": "shape:perf:01229", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 768, - "rot": 0, - "props": { - "w": 34, - "h": 33, - "fill": "hsl(327 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01230": { - "id": "shape:perf:01230", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 768, - "rot": 0, - "props": { - "w": 45, - "h": 44, - "fill": "hsl(318 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01231": { - "id": "shape:perf:01231", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 768, - "rot": 0, - "props": { - "w": 47, - "h": 36, - "fill": "hsl(4 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01232": { - "id": "shape:perf:01232", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 768, - "rot": 0, - "props": { - "w": 45, - "h": 37, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01233": { - "id": "shape:perf:01233", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 768, - "rot": 0, - "props": { - "w": 43, - "h": 30, - "fill": "hsl(356 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01234": { - "id": "shape:perf:01234", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 768, - "rot": 0, - "props": { - "w": 46, - "h": 43, - "fill": "hsl(154 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01235": { - "id": "shape:perf:01235", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 768, - "rot": 0, - "props": { - "w": 34, - "h": 24, - "fill": "hsl(212 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01236": { - "id": "shape:perf:01236", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 768, - "rot": 0, - "props": { - "w": 30, - "h": 46, - "fill": "hsl(153 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01237": { - "id": "shape:perf:01237", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 768, - "rot": 0, - "props": { - "w": 37, - "h": 35, - "fill": "hsl(300 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01238": { - "id": "shape:perf:01238", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 768, - "rot": 0, - "props": { - "w": 46, - "h": 24, - "fill": "hsl(104 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01239": { - "id": "shape:perf:01239", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 768, - "rot": 0, - "props": { - "w": 30, - "h": 24, - "fill": "hsl(197 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01240": { - "id": "shape:perf:01240", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 768, - "rot": 0, - "props": { - "w": 24, - "h": 26, - "fill": "hsl(192 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01241": { - "id": "shape:perf:01241", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 768, - "rot": 0, - "props": { - "w": 38, - "h": 38, - "fill": "hsl(230 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01242": { - "id": "shape:perf:01242", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 768, - "rot": 0, - "props": { - "w": 32, - "h": 39, - "fill": "hsl(7 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01243": { - "id": "shape:perf:01243", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 768, - "rot": 0, - "props": { - "w": 35, - "h": 36, - "fill": "hsl(135 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01244": { - "id": "shape:perf:01244", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 768, - "rot": 0, - "props": { - "w": 34, - "h": 46, - "fill": "hsl(139 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01245": { - "id": "shape:perf:01245", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 768, - "rot": 0, - "props": { - "w": 38, - "h": 33, - "fill": "hsl(288 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01246": { - "id": "shape:perf:01246", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 768, - "rot": 0, - "props": { - "w": 33, - "h": 32, - "fill": "hsl(112 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01247": { - "id": "shape:perf:01247", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 768, - "rot": 0, - "props": { - "w": 38, - "h": 45, - "fill": "hsl(97 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01248": { - "id": "shape:perf:01248", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 768, - "rot": 0, - "props": { - "w": 30, - "h": 42, - "fill": "hsl(30 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01249": { - "id": "shape:perf:01249", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 768, - "rot": 0, - "props": { - "w": 41, - "h": 39, - "fill": "hsl(257 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01250": { - "id": "shape:perf:01250", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 768, - "rot": 0, - "props": { - "w": 40, - "h": 47, - "fill": "hsl(145 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01251": { - "id": "shape:perf:01251", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 768, - "rot": 0, - "props": { - "w": 41, - "h": 34, - "fill": "hsl(117 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01252": { - "id": "shape:perf:01252", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 768, - "rot": 0, - "props": { - "w": 40, - "h": 34, - "fill": "hsl(289 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01253": { - "id": "shape:perf:01253", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 768, - "rot": 0, - "props": { - "w": 44, - "h": 29, - "fill": "hsl(354 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01254": { - "id": "shape:perf:01254", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 768, - "rot": 0, - "props": { - "w": 32, - "h": 43, - "fill": "hsl(297 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01255": { - "id": "shape:perf:01255", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 768, - "rot": 0, - "props": { - "w": 33, - "h": 29, - "fill": "hsl(110 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01256": { - "id": "shape:perf:01256", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 768, - "rot": 0, - "props": { - "w": 43, - "h": 42, - "fill": "hsl(21 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01257": { - "id": "shape:perf:01257", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 768, - "rot": 0, - "props": { - "w": 37, - "h": 26, - "fill": "hsl(4 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01258": { - "id": "shape:perf:01258", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 768, - "rot": 0, - "props": { - "w": 42, - "h": 37, - "fill": "hsl(184 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01259": { - "id": "shape:perf:01259", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 768, - "rot": 0, - "props": { - "w": 36, - "h": 40, - "fill": "hsl(252 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01260": { - "id": "shape:perf:01260", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 768, - "rot": 0, - "props": { - "w": 28, - "h": 25, - "fill": "hsl(182 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01261": { - "id": "shape:perf:01261", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 768, - "rot": 0, - "props": { - "w": 30, - "h": 39, - "fill": "hsl(112 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01262": { - "id": "shape:perf:01262", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 768, - "rot": 0, - "props": { - "w": 27, - "h": 30, - "fill": "hsl(165 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01263": { - "id": "shape:perf:01263", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 768, - "rot": 0, - "props": { - "w": 32, - "h": 28, - "fill": "hsl(1 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01264": { - "id": "shape:perf:01264", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 768, - "rot": 0, - "props": { - "w": 39, - "h": 46, - "fill": "hsl(238 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01265": { - "id": "shape:perf:01265", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 768, - "rot": 0, - "props": { - "w": 32, - "h": 37, - "fill": "hsl(33 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01266": { - "id": "shape:perf:01266", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 768, - "rot": 0, - "props": { - "w": 31, - "h": 29, - "fill": "hsl(166 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01267": { - "id": "shape:perf:01267", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 768, - "rot": 0, - "props": { - "w": 36, - "h": 44, - "fill": "hsl(127 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01268": { - "id": "shape:perf:01268", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 768, - "rot": 0, - "props": { - "w": 31, - "h": 44, - "fill": "hsl(54 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01269": { - "id": "shape:perf:01269", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 768, - "rot": 0, - "props": { - "w": 43, - "h": 31, - "fill": "hsl(319 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01270": { - "id": "shape:perf:01270", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 768, - "rot": 0, - "props": { - "w": 26, - "h": 30, - "fill": "hsl(232 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01271": { - "id": "shape:perf:01271", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 768, - "rot": 0, - "props": { - "w": 27, - "h": 34, - "fill": "hsl(347 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01272": { - "id": "shape:perf:01272", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 768, - "rot": 0, - "props": { - "w": 40, - "h": 28, - "fill": "hsl(114 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01273": { - "id": "shape:perf:01273", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 768, - "rot": 0, - "props": { - "w": 25, - "h": 31, - "fill": "hsl(97 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01274": { - "id": "shape:perf:01274", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 768, - "rot": 0, - "props": { - "w": 24, - "h": 26, - "fill": "hsl(274 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01275": { - "id": "shape:perf:01275", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 768, - "rot": 0, - "props": { - "w": 33, - "h": 42, - "fill": "hsl(16 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01276": { - "id": "shape:perf:01276", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 768, - "rot": 0, - "props": { - "w": 33, - "h": 30, - "fill": "hsl(121 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01277": { - "id": "shape:perf:01277", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 768, - "rot": 0, - "props": { - "w": 45, - "h": 47, - "fill": "hsl(3 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01278": { - "id": "shape:perf:01278", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 768, - "rot": 0, - "props": { - "w": 37, - "h": 33, - "fill": "hsl(184 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01279": { - "id": "shape:perf:01279", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 768, - "rot": 0, - "props": { - "w": 43, - "h": 34, - "fill": "hsl(37 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01280": { - "id": "shape:perf:01280", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 768, - "rot": 0, - "props": { - "w": 25, - "h": 42, - "fill": "hsl(64 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01281": { - "id": "shape:perf:01281", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 768, - "rot": 0, - "props": { - "w": 42, - "h": 29, - "fill": "hsl(46 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01282": { - "id": "shape:perf:01282", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 768, - "rot": 0, - "props": { - "w": 28, - "h": 45, - "fill": "hsl(126 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01283": { - "id": "shape:perf:01283", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 768, - "rot": 0, - "props": { - "w": 35, - "h": 33, - "fill": "hsl(289 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01284": { - "id": "shape:perf:01284", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 768, - "rot": 0, - "props": { - "w": 40, - "h": 28, - "fill": "hsl(5 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01285": { - "id": "shape:perf:01285", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 768, - "rot": 0, - "props": { - "w": 41, - "h": 33, - "fill": "hsl(265 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01286": { - "id": "shape:perf:01286", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 768, - "rot": 0, - "props": { - "w": 35, - "h": 44, - "fill": "hsl(197 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01287": { - "id": "shape:perf:01287", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 768, - "rot": 0, - "props": { - "w": 42, - "h": 37, - "fill": "hsl(295 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01288": { - "id": "shape:perf:01288", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 768, - "rot": 0, - "props": { - "w": 42, - "h": 24, - "fill": "hsl(345 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01289": { - "id": "shape:perf:01289", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 768, - "rot": 0, - "props": { - "w": 40, - "h": 36, - "fill": "hsl(229 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01290": { - "id": "shape:perf:01290", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 768, - "rot": 0, - "props": { - "w": 28, - "h": 27, - "fill": "hsl(155 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01291": { - "id": "shape:perf:01291", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 768, - "rot": 0, - "props": { - "w": 34, - "h": 28, - "fill": "hsl(126 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01292": { - "id": "shape:perf:01292", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 768, - "rot": 0, - "props": { - "w": 43, - "h": 44, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01293": { - "id": "shape:perf:01293", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 768, - "rot": 0, - "props": { - "w": 47, - "h": 29, - "fill": "hsl(8 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01294": { - "id": "shape:perf:01294", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 768, - "rot": 0, - "props": { - "w": 44, - "h": 46, - "fill": "hsl(42 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01295": { - "id": "shape:perf:01295", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 768, - "rot": 0, - "props": { - "w": 25, - "h": 25, - "fill": "hsl(71 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01296": { - "id": "shape:perf:01296", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 768, - "rot": 0, - "props": { - "w": 39, - "h": 37, - "fill": "hsl(26 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01297": { - "id": "shape:perf:01297", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 768, - "rot": 0, - "props": { - "w": 39, - "h": 46, - "fill": "hsl(291 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01298": { - "id": "shape:perf:01298", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 768, - "rot": 0, - "props": { - "w": 24, - "h": 42, - "fill": "hsl(48 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01299": { - "id": "shape:perf:01299", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 768, - "rot": 0, - "props": { - "w": 47, - "h": 40, - "fill": "hsl(216 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01300": { - "id": "shape:perf:01300", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 832, - "rot": 0, - "props": { - "w": 27, - "h": 25, - "fill": "hsl(54 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01301": { - "id": "shape:perf:01301", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 832, - "rot": 0, - "props": { - "w": 29, - "h": 36, - "fill": "hsl(143 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01302": { - "id": "shape:perf:01302", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 832, - "rot": 0, - "props": { - "w": 45, - "h": 25, - "fill": "hsl(273 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01303": { - "id": "shape:perf:01303", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 832, - "rot": 0, - "props": { - "w": 39, - "h": 39, - "fill": "hsl(95 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01304": { - "id": "shape:perf:01304", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 832, - "rot": 0, - "props": { - "w": 41, - "h": 35, - "fill": "hsl(30 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01305": { - "id": "shape:perf:01305", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 832, - "rot": 0, - "props": { - "w": 31, - "h": 30, - "fill": "hsl(330 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01306": { - "id": "shape:perf:01306", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 832, - "rot": 0, - "props": { - "w": 30, - "h": 33, - "fill": "hsl(349 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01307": { - "id": "shape:perf:01307", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 832, - "rot": 0, - "props": { - "w": 43, - "h": 30, - "fill": "hsl(71 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01308": { - "id": "shape:perf:01308", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 832, - "rot": 0, - "props": { - "w": 25, - "h": 29, - "fill": "hsl(163 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01309": { - "id": "shape:perf:01309", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 832, - "rot": 0, - "props": { - "w": 39, - "h": 28, - "fill": "hsl(84 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01310": { - "id": "shape:perf:01310", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 832, - "rot": 0, - "props": { - "w": 33, - "h": 46, - "fill": "hsl(113 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01311": { - "id": "shape:perf:01311", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 832, - "rot": 0, - "props": { - "w": 43, - "h": 30, - "fill": "hsl(125 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01312": { - "id": "shape:perf:01312", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 832, - "rot": 0, - "props": { - "w": 39, - "h": 33, - "fill": "hsl(167 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01313": { - "id": "shape:perf:01313", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 832, - "rot": 0, - "props": { - "w": 43, - "h": 26, - "fill": "hsl(105 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01314": { - "id": "shape:perf:01314", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 832, - "rot": 0, - "props": { - "w": 30, - "h": 46, - "fill": "hsl(46 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01315": { - "id": "shape:perf:01315", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 832, - "rot": 0, - "props": { - "w": 29, - "h": 35, - "fill": "hsl(53 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01316": { - "id": "shape:perf:01316", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 832, - "rot": 0, - "props": { - "w": 42, - "h": 41, - "fill": "hsl(349 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01317": { - "id": "shape:perf:01317", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 832, - "rot": 0, - "props": { - "w": 43, - "h": 28, - "fill": "hsl(203 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01318": { - "id": "shape:perf:01318", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 832, - "rot": 0, - "props": { - "w": 29, - "h": 26, - "fill": "hsl(312 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01319": { - "id": "shape:perf:01319", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 832, - "rot": 0, - "props": { - "w": 33, - "h": 30, - "fill": "hsl(163 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01320": { - "id": "shape:perf:01320", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 832, - "rot": 0, - "props": { - "w": 43, - "h": 42, - "fill": "hsl(244 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01321": { - "id": "shape:perf:01321", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 832, - "rot": 0, - "props": { - "w": 45, - "h": 47, - "fill": "hsl(242 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01322": { - "id": "shape:perf:01322", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 832, - "rot": 0, - "props": { - "w": 42, - "h": 27, - "fill": "hsl(197 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01323": { - "id": "shape:perf:01323", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 832, - "rot": 0, - "props": { - "w": 35, - "h": 37, - "fill": "hsl(174 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01324": { - "id": "shape:perf:01324", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 832, - "rot": 0, - "props": { - "w": 33, - "h": 27, - "fill": "hsl(242 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01325": { - "id": "shape:perf:01325", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 832, - "rot": 0, - "props": { - "w": 32, - "h": 37, - "fill": "hsl(166 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01326": { - "id": "shape:perf:01326", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 832, - "rot": 0, - "props": { - "w": 33, - "h": 25, - "fill": "hsl(173 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01327": { - "id": "shape:perf:01327", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 832, - "rot": 0, - "props": { - "w": 37, - "h": 40, - "fill": "hsl(265 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01328": { - "id": "shape:perf:01328", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 832, - "rot": 0, - "props": { - "w": 33, - "h": 30, - "fill": "hsl(205 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01329": { - "id": "shape:perf:01329", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 832, - "rot": 0, - "props": { - "w": 46, - "h": 24, - "fill": "hsl(37 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01330": { - "id": "shape:perf:01330", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 832, - "rot": 0, - "props": { - "w": 39, - "h": 32, - "fill": "hsl(303 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01331": { - "id": "shape:perf:01331", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 832, - "rot": 0, - "props": { - "w": 33, - "h": 26, - "fill": "hsl(4 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01332": { - "id": "shape:perf:01332", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 832, - "rot": 0, - "props": { - "w": 30, - "h": 34, - "fill": "hsl(352 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01333": { - "id": "shape:perf:01333", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 832, - "rot": 0, - "props": { - "w": 44, - "h": 29, - "fill": "hsl(351 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01334": { - "id": "shape:perf:01334", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 832, - "rot": 0, - "props": { - "w": 30, - "h": 43, - "fill": "hsl(277 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01335": { - "id": "shape:perf:01335", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 832, - "rot": 0, - "props": { - "w": 24, - "h": 25, - "fill": "hsl(4 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01336": { - "id": "shape:perf:01336", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 832, - "rot": 0, - "props": { - "w": 45, - "h": 26, - "fill": "hsl(20 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01337": { - "id": "shape:perf:01337", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 832, - "rot": 0, - "props": { - "w": 26, - "h": 28, - "fill": "hsl(153 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01338": { - "id": "shape:perf:01338", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 832, - "rot": 0, - "props": { - "w": 26, - "h": 46, - "fill": "hsl(0 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01339": { - "id": "shape:perf:01339", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 832, - "rot": 0, - "props": { - "w": 39, - "h": 33, - "fill": "hsl(41 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01340": { - "id": "shape:perf:01340", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 832, - "rot": 0, - "props": { - "w": 39, - "h": 41, - "fill": "hsl(124 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01341": { - "id": "shape:perf:01341", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 832, - "rot": 0, - "props": { - "w": 38, - "h": 43, - "fill": "hsl(234 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01342": { - "id": "shape:perf:01342", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 832, - "rot": 0, - "props": { - "w": 27, - "h": 30, - "fill": "hsl(94 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01343": { - "id": "shape:perf:01343", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 832, - "rot": 0, - "props": { - "w": 45, - "h": 35, - "fill": "hsl(125 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01344": { - "id": "shape:perf:01344", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 832, - "rot": 0, - "props": { - "w": 26, - "h": 33, - "fill": "hsl(55 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01345": { - "id": "shape:perf:01345", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 832, - "rot": 0, - "props": { - "w": 32, - "h": 47, - "fill": "hsl(110 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01346": { - "id": "shape:perf:01346", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 832, - "rot": 0, - "props": { - "w": 31, - "h": 35, - "fill": "hsl(331 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01347": { - "id": "shape:perf:01347", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 832, - "rot": 0, - "props": { - "w": 43, - "h": 41, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01348": { - "id": "shape:perf:01348", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 832, - "rot": 0, - "props": { - "w": 44, - "h": 33, - "fill": "hsl(73 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01349": { - "id": "shape:perf:01349", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 832, - "rot": 0, - "props": { - "w": 44, - "h": 43, - "fill": "hsl(210 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01350": { - "id": "shape:perf:01350", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 832, - "rot": 0, - "props": { - "w": 28, - "h": 46, - "fill": "hsl(214 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01351": { - "id": "shape:perf:01351", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 832, - "rot": 0, - "props": { - "w": 27, - "h": 47, - "fill": "hsl(255 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01352": { - "id": "shape:perf:01352", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 832, - "rot": 0, - "props": { - "w": 27, - "h": 45, - "fill": "hsl(105 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01353": { - "id": "shape:perf:01353", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 832, - "rot": 0, - "props": { - "w": 47, - "h": 28, - "fill": "hsl(302 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01354": { - "id": "shape:perf:01354", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 832, - "rot": 0, - "props": { - "w": 24, - "h": 29, - "fill": "hsl(272 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01355": { - "id": "shape:perf:01355", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 832, - "rot": 0, - "props": { - "w": 39, - "h": 29, - "fill": "hsl(251 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01356": { - "id": "shape:perf:01356", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 832, - "rot": 0, - "props": { - "w": 31, - "h": 45, - "fill": "hsl(64 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01357": { - "id": "shape:perf:01357", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 832, - "rot": 0, - "props": { - "w": 37, - "h": 28, - "fill": "hsl(22 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01358": { - "id": "shape:perf:01358", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 832, - "rot": 0, - "props": { - "w": 36, - "h": 34, - "fill": "hsl(182 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01359": { - "id": "shape:perf:01359", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 832, - "rot": 0, - "props": { - "w": 36, - "h": 25, - "fill": "hsl(238 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01360": { - "id": "shape:perf:01360", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 832, - "rot": 0, - "props": { - "w": 46, - "h": 31, - "fill": "hsl(346 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01361": { - "id": "shape:perf:01361", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 832, - "rot": 0, - "props": { - "w": 38, - "h": 27, - "fill": "hsl(255 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01362": { - "id": "shape:perf:01362", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 832, - "rot": 0, - "props": { - "w": 41, - "h": 29, - "fill": "hsl(24 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01363": { - "id": "shape:perf:01363", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 832, - "rot": 0, - "props": { - "w": 28, - "h": 46, - "fill": "hsl(328 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01364": { - "id": "shape:perf:01364", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 832, - "rot": 0, - "props": { - "w": 33, - "h": 27, - "fill": "hsl(231 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01365": { - "id": "shape:perf:01365", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 832, - "rot": 0, - "props": { - "w": 38, - "h": 30, - "fill": "hsl(269 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01366": { - "id": "shape:perf:01366", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 832, - "rot": 0, - "props": { - "w": 45, - "h": 28, - "fill": "hsl(235 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01367": { - "id": "shape:perf:01367", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 832, - "rot": 0, - "props": { - "w": 27, - "h": 46, - "fill": "hsl(55 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01368": { - "id": "shape:perf:01368", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 832, - "rot": 0, - "props": { - "w": 27, - "h": 26, - "fill": "hsl(238 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01369": { - "id": "shape:perf:01369", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 832, - "rot": 0, - "props": { - "w": 41, - "h": 28, - "fill": "hsl(326 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01370": { - "id": "shape:perf:01370", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 832, - "rot": 0, - "props": { - "w": 25, - "h": 25, - "fill": "hsl(282 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01371": { - "id": "shape:perf:01371", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 832, - "rot": 0, - "props": { - "w": 32, - "h": 27, - "fill": "hsl(78 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01372": { - "id": "shape:perf:01372", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 832, - "rot": 0, - "props": { - "w": 29, - "h": 32, - "fill": "hsl(205 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01373": { - "id": "shape:perf:01373", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 832, - "rot": 0, - "props": { - "w": 44, - "h": 40, - "fill": "hsl(162 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01374": { - "id": "shape:perf:01374", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 832, - "rot": 0, - "props": { - "w": 34, - "h": 28, - "fill": "hsl(78 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01375": { - "id": "shape:perf:01375", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 832, - "rot": 0, - "props": { - "w": 38, - "h": 35, - "fill": "hsl(121 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01376": { - "id": "shape:perf:01376", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 832, - "rot": 0, - "props": { - "w": 47, - "h": 26, - "fill": "hsl(58 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01377": { - "id": "shape:perf:01377", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 832, - "rot": 0, - "props": { - "w": 27, - "h": 35, - "fill": "hsl(12 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01378": { - "id": "shape:perf:01378", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 832, - "rot": 0, - "props": { - "w": 39, - "h": 30, - "fill": "hsl(358 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01379": { - "id": "shape:perf:01379", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 832, - "rot": 0, - "props": { - "w": 46, - "h": 28, - "fill": "hsl(34 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01380": { - "id": "shape:perf:01380", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 832, - "rot": 0, - "props": { - "w": 26, - "h": 39, - "fill": "hsl(252 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01381": { - "id": "shape:perf:01381", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 832, - "rot": 0, - "props": { - "w": 35, - "h": 26, - "fill": "hsl(153 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01382": { - "id": "shape:perf:01382", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 832, - "rot": 0, - "props": { - "w": 39, - "h": 42, - "fill": "hsl(131 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01383": { - "id": "shape:perf:01383", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 832, - "rot": 0, - "props": { - "w": 36, - "h": 27, - "fill": "hsl(172 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01384": { - "id": "shape:perf:01384", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 832, - "rot": 0, - "props": { - "w": 44, - "h": 29, - "fill": "hsl(28 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01385": { - "id": "shape:perf:01385", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 832, - "rot": 0, - "props": { - "w": 32, - "h": 26, - "fill": "hsl(49 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01386": { - "id": "shape:perf:01386", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 832, - "rot": 0, - "props": { - "w": 46, - "h": 45, - "fill": "hsl(190 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01387": { - "id": "shape:perf:01387", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 832, - "rot": 0, - "props": { - "w": 32, - "h": 31, - "fill": "hsl(263 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01388": { - "id": "shape:perf:01388", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 832, - "rot": 0, - "props": { - "w": 42, - "h": 46, - "fill": "hsl(11 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01389": { - "id": "shape:perf:01389", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 832, - "rot": 0, - "props": { - "w": 27, - "h": 43, - "fill": "hsl(96 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01390": { - "id": "shape:perf:01390", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 832, - "rot": 0, - "props": { - "w": 27, - "h": 35, - "fill": "hsl(170 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01391": { - "id": "shape:perf:01391", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 832, - "rot": 0, - "props": { - "w": 45, - "h": 41, - "fill": "hsl(325 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01392": { - "id": "shape:perf:01392", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 832, - "rot": 0, - "props": { - "w": 47, - "h": 36, - "fill": "hsl(276 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01393": { - "id": "shape:perf:01393", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 832, - "rot": 0, - "props": { - "w": 27, - "h": 38, - "fill": "hsl(44 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01394": { - "id": "shape:perf:01394", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 832, - "rot": 0, - "props": { - "w": 43, - "h": 26, - "fill": "hsl(130 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01395": { - "id": "shape:perf:01395", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 832, - "rot": 0, - "props": { - "w": 47, - "h": 28, - "fill": "hsl(94 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01396": { - "id": "shape:perf:01396", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 832, - "rot": 0, - "props": { - "w": 39, - "h": 37, - "fill": "hsl(220 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01397": { - "id": "shape:perf:01397", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 832, - "rot": 0, - "props": { - "w": 32, - "h": 46, - "fill": "hsl(127 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01398": { - "id": "shape:perf:01398", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 832, - "rot": 0, - "props": { - "w": 29, - "h": 24, - "fill": "hsl(74 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01399": { - "id": "shape:perf:01399", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 832, - "rot": 0, - "props": { - "w": 43, - "h": 38, - "fill": "hsl(10 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01400": { - "id": "shape:perf:01400", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 896, - "rot": 0, - "props": { - "w": 35, - "h": 40, - "fill": "hsl(190 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01401": { - "id": "shape:perf:01401", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 896, - "rot": 0, - "props": { - "w": 29, - "h": 39, - "fill": "hsl(266 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01402": { - "id": "shape:perf:01402", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 896, - "rot": 0, - "props": { - "w": 25, - "h": 24, - "fill": "hsl(301 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01403": { - "id": "shape:perf:01403", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 896, - "rot": 0, - "props": { - "w": 46, - "h": 31, - "fill": "hsl(22 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01404": { - "id": "shape:perf:01404", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 896, - "rot": 0, - "props": { - "w": 38, - "h": 38, - "fill": "hsl(231 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01405": { - "id": "shape:perf:01405", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 896, - "rot": 0, - "props": { - "w": 44, - "h": 41, - "fill": "hsl(302 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01406": { - "id": "shape:perf:01406", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 896, - "rot": 0, - "props": { - "w": 46, - "h": 30, - "fill": "hsl(135 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01407": { - "id": "shape:perf:01407", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 896, - "rot": 0, - "props": { - "w": 44, - "h": 30, - "fill": "hsl(159 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01408": { - "id": "shape:perf:01408", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 896, - "rot": 0, - "props": { - "w": 36, - "h": 31, - "fill": "hsl(36 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01409": { - "id": "shape:perf:01409", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 896, - "rot": 0, - "props": { - "w": 47, - "h": 46, - "fill": "hsl(38 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01410": { - "id": "shape:perf:01410", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 896, - "rot": 0, - "props": { - "w": 34, - "h": 34, - "fill": "hsl(251 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01411": { - "id": "shape:perf:01411", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 896, - "rot": 0, - "props": { - "w": 33, - "h": 30, - "fill": "hsl(44 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01412": { - "id": "shape:perf:01412", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 896, - "rot": 0, - "props": { - "w": 47, - "h": 32, - "fill": "hsl(323 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01413": { - "id": "shape:perf:01413", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 896, - "rot": 0, - "props": { - "w": 28, - "h": 33, - "fill": "hsl(86 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01414": { - "id": "shape:perf:01414", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 896, - "rot": 0, - "props": { - "w": 37, - "h": 29, - "fill": "hsl(230 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01415": { - "id": "shape:perf:01415", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 896, - "rot": 0, - "props": { - "w": 46, - "h": 32, - "fill": "hsl(18 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01416": { - "id": "shape:perf:01416", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 896, - "rot": 0, - "props": { - "w": 31, - "h": 41, - "fill": "hsl(184 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01417": { - "id": "shape:perf:01417", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 896, - "rot": 0, - "props": { - "w": 24, - "h": 24, - "fill": "hsl(295 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01418": { - "id": "shape:perf:01418", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 896, - "rot": 0, - "props": { - "w": 46, - "h": 37, - "fill": "hsl(329 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01419": { - "id": "shape:perf:01419", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 896, - "rot": 0, - "props": { - "w": 38, - "h": 41, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01420": { - "id": "shape:perf:01420", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 896, - "rot": 0, - "props": { - "w": 42, - "h": 43, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01421": { - "id": "shape:perf:01421", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 896, - "rot": 0, - "props": { - "w": 47, - "h": 25, - "fill": "hsl(197 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01422": { - "id": "shape:perf:01422", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 896, - "rot": 0, - "props": { - "w": 31, - "h": 30, - "fill": "hsl(355 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01423": { - "id": "shape:perf:01423", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 896, - "rot": 0, - "props": { - "w": 45, - "h": 37, - "fill": "hsl(102 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01424": { - "id": "shape:perf:01424", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 896, - "rot": 0, - "props": { - "w": 41, - "h": 28, - "fill": "hsl(73 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01425": { - "id": "shape:perf:01425", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 896, - "rot": 0, - "props": { - "w": 28, - "h": 35, - "fill": "hsl(218 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01426": { - "id": "shape:perf:01426", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 896, - "rot": 0, - "props": { - "w": 34, - "h": 26, - "fill": "hsl(129 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01427": { - "id": "shape:perf:01427", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 896, - "rot": 0, - "props": { - "w": 31, - "h": 25, - "fill": "hsl(240 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01428": { - "id": "shape:perf:01428", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 896, - "rot": 0, - "props": { - "w": 33, - "h": 34, - "fill": "hsl(287 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01429": { - "id": "shape:perf:01429", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 896, - "rot": 0, - "props": { - "w": 42, - "h": 27, - "fill": "hsl(340 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01430": { - "id": "shape:perf:01430", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 896, - "rot": 0, - "props": { - "w": 29, - "h": 29, - "fill": "hsl(20 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01431": { - "id": "shape:perf:01431", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 896, - "rot": 0, - "props": { - "w": 33, - "h": 29, - "fill": "hsl(134 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01432": { - "id": "shape:perf:01432", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 896, - "rot": 0, - "props": { - "w": 45, - "h": 45, - "fill": "hsl(174 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01433": { - "id": "shape:perf:01433", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 896, - "rot": 0, - "props": { - "w": 29, - "h": 29, - "fill": "hsl(202 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01434": { - "id": "shape:perf:01434", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 896, - "rot": 0, - "props": { - "w": 37, - "h": 46, - "fill": "hsl(90 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01435": { - "id": "shape:perf:01435", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 896, - "rot": 0, - "props": { - "w": 45, - "h": 32, - "fill": "hsl(127 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01436": { - "id": "shape:perf:01436", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 896, - "rot": 0, - "props": { - "w": 36, - "h": 38, - "fill": "hsl(10 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01437": { - "id": "shape:perf:01437", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 896, - "rot": 0, - "props": { - "w": 36, - "h": 45, - "fill": "hsl(13 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01438": { - "id": "shape:perf:01438", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 896, - "rot": 0, - "props": { - "w": 39, - "h": 38, - "fill": "hsl(93 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01439": { - "id": "shape:perf:01439", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 896, - "rot": 0, - "props": { - "w": 39, - "h": 30, - "fill": "hsl(245 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01440": { - "id": "shape:perf:01440", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 896, - "rot": 0, - "props": { - "w": 35, - "h": 31, - "fill": "hsl(106 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01441": { - "id": "shape:perf:01441", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 896, - "rot": 0, - "props": { - "w": 44, - "h": 40, - "fill": "hsl(330 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01442": { - "id": "shape:perf:01442", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 896, - "rot": 0, - "props": { - "w": 47, - "h": 36, - "fill": "hsl(162 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01443": { - "id": "shape:perf:01443", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 896, - "rot": 0, - "props": { - "w": 25, - "h": 37, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01444": { - "id": "shape:perf:01444", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 896, - "rot": 0, - "props": { - "w": 31, - "h": 36, - "fill": "hsl(250 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01445": { - "id": "shape:perf:01445", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 896, - "rot": 0, - "props": { - "w": 33, - "h": 39, - "fill": "hsl(247 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01446": { - "id": "shape:perf:01446", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 896, - "rot": 0, - "props": { - "w": 40, - "h": 25, - "fill": "hsl(256 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01447": { - "id": "shape:perf:01447", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 896, - "rot": 0, - "props": { - "w": 35, - "h": 24, - "fill": "hsl(36 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01448": { - "id": "shape:perf:01448", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 896, - "rot": 0, - "props": { - "w": 43, - "h": 28, - "fill": "hsl(102 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01449": { - "id": "shape:perf:01449", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 896, - "rot": 0, - "props": { - "w": 42, - "h": 38, - "fill": "hsl(149 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01450": { - "id": "shape:perf:01450", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 896, - "rot": 0, - "props": { - "w": 45, - "h": 38, - "fill": "hsl(198 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01451": { - "id": "shape:perf:01451", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 896, - "rot": 0, - "props": { - "w": 45, - "h": 47, - "fill": "hsl(336 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01452": { - "id": "shape:perf:01452", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 896, - "rot": 0, - "props": { - "w": 28, - "h": 44, - "fill": "hsl(248 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01453": { - "id": "shape:perf:01453", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 896, - "rot": 0, - "props": { - "w": 34, - "h": 41, - "fill": "hsl(138 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01454": { - "id": "shape:perf:01454", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 896, - "rot": 0, - "props": { - "w": 32, - "h": 37, - "fill": "hsl(354 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01455": { - "id": "shape:perf:01455", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 896, - "rot": 0, - "props": { - "w": 24, - "h": 45, - "fill": "hsl(184 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01456": { - "id": "shape:perf:01456", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 896, - "rot": 0, - "props": { - "w": 24, - "h": 27, - "fill": "hsl(69 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01457": { - "id": "shape:perf:01457", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 896, - "rot": 0, - "props": { - "w": 37, - "h": 39, - "fill": "hsl(69 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01458": { - "id": "shape:perf:01458", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 896, - "rot": 0, - "props": { - "w": 47, - "h": 39, - "fill": "hsl(278 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01459": { - "id": "shape:perf:01459", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 896, - "rot": 0, - "props": { - "w": 40, - "h": 47, - "fill": "hsl(133 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01460": { - "id": "shape:perf:01460", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 896, - "rot": 0, - "props": { - "w": 33, - "h": 40, - "fill": "hsl(205 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01461": { - "id": "shape:perf:01461", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 896, - "rot": 0, - "props": { - "w": 36, - "h": 32, - "fill": "hsl(71 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01462": { - "id": "shape:perf:01462", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 896, - "rot": 0, - "props": { - "w": 43, - "h": 44, - "fill": "hsl(238 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01463": { - "id": "shape:perf:01463", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 896, - "rot": 0, - "props": { - "w": 29, - "h": 24, - "fill": "hsl(109 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01464": { - "id": "shape:perf:01464", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 896, - "rot": 0, - "props": { - "w": 38, - "h": 47, - "fill": "hsl(205 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01465": { - "id": "shape:perf:01465", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 896, - "rot": 0, - "props": { - "w": 46, - "h": 24, - "fill": "hsl(102 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01466": { - "id": "shape:perf:01466", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 896, - "rot": 0, - "props": { - "w": 32, - "h": 43, - "fill": "hsl(248 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01467": { - "id": "shape:perf:01467", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 896, - "rot": 0, - "props": { - "w": 28, - "h": 34, - "fill": "hsl(336 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01468": { - "id": "shape:perf:01468", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 896, - "rot": 0, - "props": { - "w": 33, - "h": 32, - "fill": "hsl(53 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01469": { - "id": "shape:perf:01469", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 896, - "rot": 0, - "props": { - "w": 26, - "h": 31, - "fill": "hsl(103 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01470": { - "id": "shape:perf:01470", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 896, - "rot": 0, - "props": { - "w": 40, - "h": 25, - "fill": "hsl(259 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01471": { - "id": "shape:perf:01471", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 896, - "rot": 0, - "props": { - "w": 34, - "h": 30, - "fill": "hsl(344 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01472": { - "id": "shape:perf:01472", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 896, - "rot": 0, - "props": { - "w": 28, - "h": 47, - "fill": "hsl(276 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01473": { - "id": "shape:perf:01473", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 896, - "rot": 0, - "props": { - "w": 45, - "h": 41, - "fill": "hsl(227 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01474": { - "id": "shape:perf:01474", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 896, - "rot": 0, - "props": { - "w": 33, - "h": 34, - "fill": "hsl(271 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01475": { - "id": "shape:perf:01475", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 896, - "rot": 0, - "props": { - "w": 41, - "h": 44, - "fill": "hsl(56 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01476": { - "id": "shape:perf:01476", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 896, - "rot": 0, - "props": { - "w": 30, - "h": 36, - "fill": "hsl(154 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01477": { - "id": "shape:perf:01477", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 896, - "rot": 0, - "props": { - "w": 34, - "h": 33, - "fill": "hsl(341 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01478": { - "id": "shape:perf:01478", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 896, - "rot": 0, - "props": { - "w": 32, - "h": 28, - "fill": "hsl(253 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01479": { - "id": "shape:perf:01479", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 896, - "rot": 0, - "props": { - "w": 47, - "h": 36, - "fill": "hsl(250 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01480": { - "id": "shape:perf:01480", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 896, - "rot": 0, - "props": { - "w": 43, - "h": 36, - "fill": "hsl(98 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01481": { - "id": "shape:perf:01481", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 896, - "rot": 0, - "props": { - "w": 45, - "h": 42, - "fill": "hsl(256 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01482": { - "id": "shape:perf:01482", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 896, - "rot": 0, - "props": { - "w": 28, - "h": 28, - "fill": "hsl(229 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01483": { - "id": "shape:perf:01483", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 896, - "rot": 0, - "props": { - "w": 29, - "h": 31, - "fill": "hsl(102 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01484": { - "id": "shape:perf:01484", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 896, - "rot": 0, - "props": { - "w": 40, - "h": 26, - "fill": "hsl(301 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01485": { - "id": "shape:perf:01485", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 896, - "rot": 0, - "props": { - "w": 29, - "h": 40, - "fill": "hsl(95 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01486": { - "id": "shape:perf:01486", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 896, - "rot": 0, - "props": { - "w": 43, - "h": 39, - "fill": "hsl(263 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01487": { - "id": "shape:perf:01487", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 896, - "rot": 0, - "props": { - "w": 24, - "h": 39, - "fill": "hsl(68 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01488": { - "id": "shape:perf:01488", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 896, - "rot": 0, - "props": { - "w": 28, - "h": 42, - "fill": "hsl(129 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01489": { - "id": "shape:perf:01489", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 896, - "rot": 0, - "props": { - "w": 29, - "h": 43, - "fill": "hsl(242 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01490": { - "id": "shape:perf:01490", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 896, - "rot": 0, - "props": { - "w": 43, - "h": 38, - "fill": "hsl(140 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01491": { - "id": "shape:perf:01491", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 896, - "rot": 0, - "props": { - "w": 40, - "h": 38, - "fill": "hsl(93 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01492": { - "id": "shape:perf:01492", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 896, - "rot": 0, - "props": { - "w": 41, - "h": 35, - "fill": "hsl(270 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01493": { - "id": "shape:perf:01493", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 896, - "rot": 0, - "props": { - "w": 25, - "h": 40, - "fill": "hsl(107 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01494": { - "id": "shape:perf:01494", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 896, - "rot": 0, - "props": { - "w": 32, - "h": 26, - "fill": "hsl(110 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01495": { - "id": "shape:perf:01495", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 896, - "rot": 0, - "props": { - "w": 30, - "h": 27, - "fill": "hsl(119 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01496": { - "id": "shape:perf:01496", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 896, - "rot": 0, - "props": { - "w": 42, - "h": 24, - "fill": "hsl(7 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01497": { - "id": "shape:perf:01497", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 896, - "rot": 0, - "props": { - "w": 32, - "h": 33, - "fill": "hsl(27 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01498": { - "id": "shape:perf:01498", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 896, - "rot": 0, - "props": { - "w": 43, - "h": 36, - "fill": "hsl(145 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01499": { - "id": "shape:perf:01499", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 896, - "rot": 0, - "props": { - "w": 33, - "h": 32, - "fill": "hsl(283 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01500": { - "id": "shape:perf:01500", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 960, - "rot": 0, - "props": { - "w": 39, - "h": 36, - "fill": "hsl(135 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01501": { - "id": "shape:perf:01501", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 960, - "rot": 0, - "props": { - "w": 31, - "h": 26, - "fill": "hsl(301 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01502": { - "id": "shape:perf:01502", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 960, - "rot": 0, - "props": { - "w": 34, - "h": 24, - "fill": "hsl(336 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01503": { - "id": "shape:perf:01503", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 960, - "rot": 0, - "props": { - "w": 43, - "h": 38, - "fill": "hsl(24 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01504": { - "id": "shape:perf:01504", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 960, - "rot": 0, - "props": { - "w": 38, - "h": 40, - "fill": "hsl(87 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01505": { - "id": "shape:perf:01505", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 960, - "rot": 0, - "props": { - "w": 31, - "h": 24, - "fill": "hsl(63 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01506": { - "id": "shape:perf:01506", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 960, - "rot": 0, - "props": { - "w": 43, - "h": 34, - "fill": "hsl(67 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01507": { - "id": "shape:perf:01507", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 960, - "rot": 0, - "props": { - "w": 28, - "h": 24, - "fill": "hsl(156 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01508": { - "id": "shape:perf:01508", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 960, - "rot": 0, - "props": { - "w": 32, - "h": 46, - "fill": "hsl(326 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01509": { - "id": "shape:perf:01509", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 960, - "rot": 0, - "props": { - "w": 35, - "h": 41, - "fill": "hsl(257 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01510": { - "id": "shape:perf:01510", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 960, - "rot": 0, - "props": { - "w": 39, - "h": 38, - "fill": "hsl(201 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01511": { - "id": "shape:perf:01511", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 960, - "rot": 0, - "props": { - "w": 26, - "h": 30, - "fill": "hsl(105 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01512": { - "id": "shape:perf:01512", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 960, - "rot": 0, - "props": { - "w": 42, - "h": 41, - "fill": "hsl(207 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01513": { - "id": "shape:perf:01513", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 960, - "rot": 0, - "props": { - "w": 32, - "h": 43, - "fill": "hsl(276 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01514": { - "id": "shape:perf:01514", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 960, - "rot": 0, - "props": { - "w": 37, - "h": 33, - "fill": "hsl(347 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01515": { - "id": "shape:perf:01515", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 960, - "rot": 0, - "props": { - "w": 28, - "h": 42, - "fill": "hsl(296 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01516": { - "id": "shape:perf:01516", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 960, - "rot": 0, - "props": { - "w": 42, - "h": 35, - "fill": "hsl(2 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01517": { - "id": "shape:perf:01517", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 960, - "rot": 0, - "props": { - "w": 35, - "h": 45, - "fill": "hsl(254 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01518": { - "id": "shape:perf:01518", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 960, - "rot": 0, - "props": { - "w": 31, - "h": 38, - "fill": "hsl(295 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01519": { - "id": "shape:perf:01519", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 960, - "rot": 0, - "props": { - "w": 46, - "h": 25, - "fill": "hsl(292 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01520": { - "id": "shape:perf:01520", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 960, - "rot": 0, - "props": { - "w": 29, - "h": 46, - "fill": "hsl(11 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01521": { - "id": "shape:perf:01521", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 960, - "rot": 0, - "props": { - "w": 28, - "h": 38, - "fill": "hsl(218 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01522": { - "id": "shape:perf:01522", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 960, - "rot": 0, - "props": { - "w": 32, - "h": 30, - "fill": "hsl(30 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01523": { - "id": "shape:perf:01523", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 960, - "rot": 0, - "props": { - "w": 24, - "h": 40, - "fill": "hsl(308 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01524": { - "id": "shape:perf:01524", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 960, - "rot": 0, - "props": { - "w": 42, - "h": 32, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01525": { - "id": "shape:perf:01525", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 960, - "rot": 0, - "props": { - "w": 42, - "h": 41, - "fill": "hsl(340 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01526": { - "id": "shape:perf:01526", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 960, - "rot": 0, - "props": { - "w": 27, - "h": 32, - "fill": "hsl(36 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01527": { - "id": "shape:perf:01527", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 960, - "rot": 0, - "props": { - "w": 30, - "h": 39, - "fill": "hsl(131 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01528": { - "id": "shape:perf:01528", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 960, - "rot": 0, - "props": { - "w": 42, - "h": 30, - "fill": "hsl(100 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01529": { - "id": "shape:perf:01529", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 960, - "rot": 0, - "props": { - "w": 46, - "h": 24, - "fill": "hsl(137 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01530": { - "id": "shape:perf:01530", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 960, - "rot": 0, - "props": { - "w": 40, - "h": 44, - "fill": "hsl(78 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01531": { - "id": "shape:perf:01531", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 960, - "rot": 0, - "props": { - "w": 36, - "h": 41, - "fill": "hsl(11 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01532": { - "id": "shape:perf:01532", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 960, - "rot": 0, - "props": { - "w": 33, - "h": 38, - "fill": "hsl(12 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01533": { - "id": "shape:perf:01533", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 960, - "rot": 0, - "props": { - "w": 26, - "h": 36, - "fill": "hsl(344 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01534": { - "id": "shape:perf:01534", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 960, - "rot": 0, - "props": { - "w": 35, - "h": 36, - "fill": "hsl(147 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01535": { - "id": "shape:perf:01535", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 960, - "rot": 0, - "props": { - "w": 41, - "h": 24, - "fill": "hsl(253 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01536": { - "id": "shape:perf:01536", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 960, - "rot": 0, - "props": { - "w": 28, - "h": 30, - "fill": "hsl(54 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01537": { - "id": "shape:perf:01537", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 960, - "rot": 0, - "props": { - "w": 37, - "h": 28, - "fill": "hsl(86 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01538": { - "id": "shape:perf:01538", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 960, - "rot": 0, - "props": { - "w": 30, - "h": 31, - "fill": "hsl(146 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01539": { - "id": "shape:perf:01539", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 960, - "rot": 0, - "props": { - "w": 32, - "h": 31, - "fill": "hsl(288 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01540": { - "id": "shape:perf:01540", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 960, - "rot": 0, - "props": { - "w": 32, - "h": 38, - "fill": "hsl(134 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01541": { - "id": "shape:perf:01541", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 960, - "rot": 0, - "props": { - "w": 39, - "h": 32, - "fill": "hsl(73 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01542": { - "id": "shape:perf:01542", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 960, - "rot": 0, - "props": { - "w": 33, - "h": 35, - "fill": "hsl(21 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01543": { - "id": "shape:perf:01543", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 960, - "rot": 0, - "props": { - "w": 31, - "h": 37, - "fill": "hsl(266 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01544": { - "id": "shape:perf:01544", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 960, - "rot": 0, - "props": { - "w": 32, - "h": 41, - "fill": "hsl(173 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01545": { - "id": "shape:perf:01545", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 960, - "rot": 0, - "props": { - "w": 42, - "h": 32, - "fill": "hsl(325 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01546": { - "id": "shape:perf:01546", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 960, - "rot": 0, - "props": { - "w": 30, - "h": 28, - "fill": "hsl(323 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01547": { - "id": "shape:perf:01547", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 960, - "rot": 0, - "props": { - "w": 42, - "h": 45, - "fill": "hsl(359 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01548": { - "id": "shape:perf:01548", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 960, - "rot": 0, - "props": { - "w": 41, - "h": 36, - "fill": "hsl(92 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01549": { - "id": "shape:perf:01549", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 960, - "rot": 0, - "props": { - "w": 38, - "h": 32, - "fill": "hsl(83 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01550": { - "id": "shape:perf:01550", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 960, - "rot": 0, - "props": { - "w": 43, - "h": 25, - "fill": "hsl(61 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01551": { - "id": "shape:perf:01551", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 960, - "rot": 0, - "props": { - "w": 24, - "h": 45, - "fill": "hsl(274 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01552": { - "id": "shape:perf:01552", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 960, - "rot": 0, - "props": { - "w": 40, - "h": 47, - "fill": "hsl(87 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01553": { - "id": "shape:perf:01553", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 960, - "rot": 0, - "props": { - "w": 41, - "h": 32, - "fill": "hsl(116 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01554": { - "id": "shape:perf:01554", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 960, - "rot": 0, - "props": { - "w": 43, - "h": 30, - "fill": "hsl(286 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01555": { - "id": "shape:perf:01555", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 960, - "rot": 0, - "props": { - "w": 27, - "h": 31, - "fill": "hsl(119 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01556": { - "id": "shape:perf:01556", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 960, - "rot": 0, - "props": { - "w": 30, - "h": 25, - "fill": "hsl(321 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01557": { - "id": "shape:perf:01557", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 960, - "rot": 0, - "props": { - "w": 47, - "h": 42, - "fill": "hsl(130 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01558": { - "id": "shape:perf:01558", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 960, - "rot": 0, - "props": { - "w": 25, - "h": 26, - "fill": "hsl(355 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01559": { - "id": "shape:perf:01559", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 960, - "rot": 0, - "props": { - "w": 43, - "h": 37, - "fill": "hsl(249 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01560": { - "id": "shape:perf:01560", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 960, - "rot": 0, - "props": { - "w": 45, - "h": 45, - "fill": "hsl(355 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01561": { - "id": "shape:perf:01561", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 960, - "rot": 0, - "props": { - "w": 46, - "h": 47, - "fill": "hsl(324 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01562": { - "id": "shape:perf:01562", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 960, - "rot": 0, - "props": { - "w": 28, - "h": 36, - "fill": "hsl(192 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01563": { - "id": "shape:perf:01563", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 960, - "rot": 0, - "props": { - "w": 26, - "h": 43, - "fill": "hsl(337 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01564": { - "id": "shape:perf:01564", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 960, - "rot": 0, - "props": { - "w": 39, - "h": 45, - "fill": "hsl(146 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01565": { - "id": "shape:perf:01565", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 960, - "rot": 0, - "props": { - "w": 47, - "h": 43, - "fill": "hsl(335 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01566": { - "id": "shape:perf:01566", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 960, - "rot": 0, - "props": { - "w": 36, - "h": 32, - "fill": "hsl(352 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01567": { - "id": "shape:perf:01567", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 960, - "rot": 0, - "props": { - "w": 30, - "h": 43, - "fill": "hsl(158 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01568": { - "id": "shape:perf:01568", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 960, - "rot": 0, - "props": { - "w": 25, - "h": 27, - "fill": "hsl(224 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01569": { - "id": "shape:perf:01569", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 960, - "rot": 0, - "props": { - "w": 27, - "h": 44, - "fill": "hsl(102 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01570": { - "id": "shape:perf:01570", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 960, - "rot": 0, - "props": { - "w": 44, - "h": 26, - "fill": "hsl(53 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01571": { - "id": "shape:perf:01571", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 960, - "rot": 0, - "props": { - "w": 26, - "h": 26, - "fill": "hsl(356 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01572": { - "id": "shape:perf:01572", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 960, - "rot": 0, - "props": { - "w": 33, - "h": 40, - "fill": "hsl(193 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01573": { - "id": "shape:perf:01573", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 960, - "rot": 0, - "props": { - "w": 44, - "h": 36, - "fill": "hsl(48 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01574": { - "id": "shape:perf:01574", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 960, - "rot": 0, - "props": { - "w": 26, - "h": 26, - "fill": "hsl(289 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01575": { - "id": "shape:perf:01575", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 960, - "rot": 0, - "props": { - "w": 40, - "h": 39, - "fill": "hsl(99 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01576": { - "id": "shape:perf:01576", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 960, - "rot": 0, - "props": { - "w": 28, - "h": 34, - "fill": "hsl(175 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01577": { - "id": "shape:perf:01577", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 960, - "rot": 0, - "props": { - "w": 34, - "h": 32, - "fill": "hsl(254 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01578": { - "id": "shape:perf:01578", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 960, - "rot": 0, - "props": { - "w": 24, - "h": 36, - "fill": "hsl(135 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01579": { - "id": "shape:perf:01579", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 960, - "rot": 0, - "props": { - "w": 37, - "h": 28, - "fill": "hsl(140 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01580": { - "id": "shape:perf:01580", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 960, - "rot": 0, - "props": { - "w": 42, - "h": 39, - "fill": "hsl(212 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01581": { - "id": "shape:perf:01581", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 960, - "rot": 0, - "props": { - "w": 38, - "h": 27, - "fill": "hsl(139 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01582": { - "id": "shape:perf:01582", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 960, - "rot": 0, - "props": { - "w": 33, - "h": 30, - "fill": "hsl(12 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01583": { - "id": "shape:perf:01583", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 960, - "rot": 0, - "props": { - "w": 43, - "h": 30, - "fill": "hsl(111 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01584": { - "id": "shape:perf:01584", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 960, - "rot": 0, - "props": { - "w": 40, - "h": 43, - "fill": "hsl(259 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01585": { - "id": "shape:perf:01585", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 960, - "rot": 0, - "props": { - "w": 28, - "h": 31, - "fill": "hsl(326 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01586": { - "id": "shape:perf:01586", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 960, - "rot": 0, - "props": { - "w": 36, - "h": 39, - "fill": "hsl(199 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01587": { - "id": "shape:perf:01587", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 960, - "rot": 0, - "props": { - "w": 43, - "h": 40, - "fill": "hsl(175 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01588": { - "id": "shape:perf:01588", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 960, - "rot": 0, - "props": { - "w": 30, - "h": 36, - "fill": "hsl(274 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01589": { - "id": "shape:perf:01589", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 960, - "rot": 0, - "props": { - "w": 44, - "h": 37, - "fill": "hsl(99 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01590": { - "id": "shape:perf:01590", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 960, - "rot": 0, - "props": { - "w": 39, - "h": 46, - "fill": "hsl(263 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01591": { - "id": "shape:perf:01591", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 960, - "rot": 0, - "props": { - "w": 27, - "h": 44, - "fill": "hsl(0 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01592": { - "id": "shape:perf:01592", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 960, - "rot": 0, - "props": { - "w": 38, - "h": 26, - "fill": "hsl(358 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01593": { - "id": "shape:perf:01593", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 960, - "rot": 0, - "props": { - "w": 27, - "h": 38, - "fill": "hsl(218 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01594": { - "id": "shape:perf:01594", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 960, - "rot": 0, - "props": { - "w": 24, - "h": 26, - "fill": "hsl(120 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01595": { - "id": "shape:perf:01595", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 960, - "rot": 0, - "props": { - "w": 30, - "h": 36, - "fill": "hsl(325 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01596": { - "id": "shape:perf:01596", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 960, - "rot": 0, - "props": { - "w": 29, - "h": 31, - "fill": "hsl(260 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01597": { - "id": "shape:perf:01597", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 960, - "rot": 0, - "props": { - "w": 43, - "h": 33, - "fill": "hsl(22 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01598": { - "id": "shape:perf:01598", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 960, - "rot": 0, - "props": { - "w": 36, - "h": 44, - "fill": "hsl(291 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01599": { - "id": "shape:perf:01599", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 960, - "rot": 0, - "props": { - "w": 45, - "h": 36, - "fill": "hsl(269 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01600": { - "id": "shape:perf:01600", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 1024, - "rot": 0, - "props": { - "w": 45, - "h": 29, - "fill": "hsl(180 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01601": { - "id": "shape:perf:01601", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 1024, - "rot": 0, - "props": { - "w": 41, - "h": 32, - "fill": "hsl(191 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01602": { - "id": "shape:perf:01602", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 1024, - "rot": 0, - "props": { - "w": 35, - "h": 31, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01603": { - "id": "shape:perf:01603", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 1024, - "rot": 0, - "props": { - "w": 30, - "h": 47, - "fill": "hsl(138 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01604": { - "id": "shape:perf:01604", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 1024, - "rot": 0, - "props": { - "w": 47, - "h": 37, - "fill": "hsl(199 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01605": { - "id": "shape:perf:01605", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 1024, - "rot": 0, - "props": { - "w": 24, - "h": 26, - "fill": "hsl(271 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01606": { - "id": "shape:perf:01606", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 1024, - "rot": 0, - "props": { - "w": 47, - "h": 47, - "fill": "hsl(82 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01607": { - "id": "shape:perf:01607", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 1024, - "rot": 0, - "props": { - "w": 28, - "h": 41, - "fill": "hsl(190 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01608": { - "id": "shape:perf:01608", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 1024, - "rot": 0, - "props": { - "w": 47, - "h": 44, - "fill": "hsl(104 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01609": { - "id": "shape:perf:01609", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 1024, - "rot": 0, - "props": { - "w": 29, - "h": 25, - "fill": "hsl(10 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01610": { - "id": "shape:perf:01610", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 1024, - "rot": 0, - "props": { - "w": 46, - "h": 26, - "fill": "hsl(331 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01611": { - "id": "shape:perf:01611", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 1024, - "rot": 0, - "props": { - "w": 39, - "h": 38, - "fill": "hsl(261 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01612": { - "id": "shape:perf:01612", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 1024, - "rot": 0, - "props": { - "w": 44, - "h": 24, - "fill": "hsl(348 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01613": { - "id": "shape:perf:01613", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 1024, - "rot": 0, - "props": { - "w": 40, - "h": 34, - "fill": "hsl(263 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01614": { - "id": "shape:perf:01614", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 1024, - "rot": 0, - "props": { - "w": 34, - "h": 28, - "fill": "hsl(354 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01615": { - "id": "shape:perf:01615", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 1024, - "rot": 0, - "props": { - "w": 26, - "h": 45, - "fill": "hsl(224 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01616": { - "id": "shape:perf:01616", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 1024, - "rot": 0, - "props": { - "w": 46, - "h": 45, - "fill": "hsl(327 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01617": { - "id": "shape:perf:01617", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 1024, - "rot": 0, - "props": { - "w": 24, - "h": 35, - "fill": "hsl(79 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01618": { - "id": "shape:perf:01618", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 1024, - "rot": 0, - "props": { - "w": 38, - "h": 43, - "fill": "hsl(164 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01619": { - "id": "shape:perf:01619", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 1024, - "rot": 0, - "props": { - "w": 39, - "h": 30, - "fill": "hsl(279 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01620": { - "id": "shape:perf:01620", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 1024, - "rot": 0, - "props": { - "w": 27, - "h": 26, - "fill": "hsl(310 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01621": { - "id": "shape:perf:01621", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 1024, - "rot": 0, - "props": { - "w": 34, - "h": 36, - "fill": "hsl(339 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01622": { - "id": "shape:perf:01622", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 1024, - "rot": 0, - "props": { - "w": 30, - "h": 39, - "fill": "hsl(335 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01623": { - "id": "shape:perf:01623", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 1024, - "rot": 0, - "props": { - "w": 33, - "h": 36, - "fill": "hsl(130 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01624": { - "id": "shape:perf:01624", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 1024, - "rot": 0, - "props": { - "w": 35, - "h": 26, - "fill": "hsl(126 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01625": { - "id": "shape:perf:01625", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 1024, - "rot": 0, - "props": { - "w": 25, - "h": 38, - "fill": "hsl(263 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01626": { - "id": "shape:perf:01626", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 1024, - "rot": 0, - "props": { - "w": 30, - "h": 47, - "fill": "hsl(64 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01627": { - "id": "shape:perf:01627", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 1024, - "rot": 0, - "props": { - "w": 37, - "h": 39, - "fill": "hsl(173 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01628": { - "id": "shape:perf:01628", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 1024, - "rot": 0, - "props": { - "w": 43, - "h": 41, - "fill": "hsl(61 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01629": { - "id": "shape:perf:01629", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 1024, - "rot": 0, - "props": { - "w": 41, - "h": 41, - "fill": "hsl(239 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01630": { - "id": "shape:perf:01630", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 1024, - "rot": 0, - "props": { - "w": 41, - "h": 47, - "fill": "hsl(140 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01631": { - "id": "shape:perf:01631", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 1024, - "rot": 0, - "props": { - "w": 32, - "h": 32, - "fill": "hsl(354 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01632": { - "id": "shape:perf:01632", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 1024, - "rot": 0, - "props": { - "w": 45, - "h": 46, - "fill": "hsl(114 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01633": { - "id": "shape:perf:01633", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 1024, - "rot": 0, - "props": { - "w": 28, - "h": 46, - "fill": "hsl(350 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01634": { - "id": "shape:perf:01634", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 1024, - "rot": 0, - "props": { - "w": 26, - "h": 42, - "fill": "hsl(191 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01635": { - "id": "shape:perf:01635", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 1024, - "rot": 0, - "props": { - "w": 42, - "h": 40, - "fill": "hsl(358 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01636": { - "id": "shape:perf:01636", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 1024, - "rot": 0, - "props": { - "w": 45, - "h": 45, - "fill": "hsl(13 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01637": { - "id": "shape:perf:01637", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 1024, - "rot": 0, - "props": { - "w": 45, - "h": 34, - "fill": "hsl(293 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01638": { - "id": "shape:perf:01638", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 1024, - "rot": 0, - "props": { - "w": 45, - "h": 40, - "fill": "hsl(213 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01639": { - "id": "shape:perf:01639", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 1024, - "rot": 0, - "props": { - "w": 36, - "h": 47, - "fill": "hsl(187 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01640": { - "id": "shape:perf:01640", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 1024, - "rot": 0, - "props": { - "w": 38, - "h": 46, - "fill": "hsl(286 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01641": { - "id": "shape:perf:01641", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 1024, - "rot": 0, - "props": { - "w": 41, - "h": 25, - "fill": "hsl(356 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01642": { - "id": "shape:perf:01642", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 1024, - "rot": 0, - "props": { - "w": 40, - "h": 37, - "fill": "hsl(227 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01643": { - "id": "shape:perf:01643", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 1024, - "rot": 0, - "props": { - "w": 37, - "h": 47, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01644": { - "id": "shape:perf:01644", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 1024, - "rot": 0, - "props": { - "w": 43, - "h": 36, - "fill": "hsl(107 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01645": { - "id": "shape:perf:01645", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 1024, - "rot": 0, - "props": { - "w": 36, - "h": 35, - "fill": "hsl(299 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01646": { - "id": "shape:perf:01646", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 1024, - "rot": 0, - "props": { - "w": 33, - "h": 31, - "fill": "hsl(334 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01647": { - "id": "shape:perf:01647", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 1024, - "rot": 0, - "props": { - "w": 25, - "h": 44, - "fill": "hsl(271 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01648": { - "id": "shape:perf:01648", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 1024, - "rot": 0, - "props": { - "w": 40, - "h": 26, - "fill": "hsl(340 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01649": { - "id": "shape:perf:01649", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 1024, - "rot": 0, - "props": { - "w": 46, - "h": 42, - "fill": "hsl(318 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01650": { - "id": "shape:perf:01650", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 1024, - "rot": 0, - "props": { - "w": 29, - "h": 37, - "fill": "hsl(247 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01651": { - "id": "shape:perf:01651", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 1024, - "rot": 0, - "props": { - "w": 29, - "h": 39, - "fill": "hsl(102 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01652": { - "id": "shape:perf:01652", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 1024, - "rot": 0, - "props": { - "w": 39, - "h": 31, - "fill": "hsl(99 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01653": { - "id": "shape:perf:01653", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 1024, - "rot": 0, - "props": { - "w": 40, - "h": 37, - "fill": "hsl(44 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01654": { - "id": "shape:perf:01654", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 1024, - "rot": 0, - "props": { - "w": 46, - "h": 28, - "fill": "hsl(4 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01655": { - "id": "shape:perf:01655", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 1024, - "rot": 0, - "props": { - "w": 32, - "h": 34, - "fill": "hsl(87 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01656": { - "id": "shape:perf:01656", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 1024, - "rot": 0, - "props": { - "w": 26, - "h": 28, - "fill": "hsl(112 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01657": { - "id": "shape:perf:01657", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 1024, - "rot": 0, - "props": { - "w": 42, - "h": 46, - "fill": "hsl(281 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01658": { - "id": "shape:perf:01658", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 1024, - "rot": 0, - "props": { - "w": 36, - "h": 38, - "fill": "hsl(74 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01659": { - "id": "shape:perf:01659", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 1024, - "rot": 0, - "props": { - "w": 25, - "h": 34, - "fill": "hsl(126 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01660": { - "id": "shape:perf:01660", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 1024, - "rot": 0, - "props": { - "w": 44, - "h": 39, - "fill": "hsl(318 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01661": { - "id": "shape:perf:01661", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 1024, - "rot": 0, - "props": { - "w": 33, - "h": 33, - "fill": "hsl(25 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01662": { - "id": "shape:perf:01662", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 1024, - "rot": 0, - "props": { - "w": 34, - "h": 32, - "fill": "hsl(193 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01663": { - "id": "shape:perf:01663", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 1024, - "rot": 0, - "props": { - "w": 36, - "h": 44, - "fill": "hsl(145 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01664": { - "id": "shape:perf:01664", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 1024, - "rot": 0, - "props": { - "w": 45, - "h": 27, - "fill": "hsl(114 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01665": { - "id": "shape:perf:01665", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 1024, - "rot": 0, - "props": { - "w": 33, - "h": 38, - "fill": "hsl(130 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01666": { - "id": "shape:perf:01666", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 1024, - "rot": 0, - "props": { - "w": 38, - "h": 43, - "fill": "hsl(11 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01667": { - "id": "shape:perf:01667", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 1024, - "rot": 0, - "props": { - "w": 37, - "h": 30, - "fill": "hsl(175 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01668": { - "id": "shape:perf:01668", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 1024, - "rot": 0, - "props": { - "w": 29, - "h": 37, - "fill": "hsl(18 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01669": { - "id": "shape:perf:01669", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 1024, - "rot": 0, - "props": { - "w": 26, - "h": 38, - "fill": "hsl(213 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01670": { - "id": "shape:perf:01670", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 1024, - "rot": 0, - "props": { - "w": 35, - "h": 46, - "fill": "hsl(354 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01671": { - "id": "shape:perf:01671", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 1024, - "rot": 0, - "props": { - "w": 28, - "h": 37, - "fill": "hsl(238 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01672": { - "id": "shape:perf:01672", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 1024, - "rot": 0, - "props": { - "w": 46, - "h": 41, - "fill": "hsl(38 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01673": { - "id": "shape:perf:01673", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 1024, - "rot": 0, - "props": { - "w": 24, - "h": 32, - "fill": "hsl(350 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01674": { - "id": "shape:perf:01674", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 1024, - "rot": 0, - "props": { - "w": 29, - "h": 36, - "fill": "hsl(66 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01675": { - "id": "shape:perf:01675", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 1024, - "rot": 0, - "props": { - "w": 35, - "h": 42, - "fill": "hsl(298 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01676": { - "id": "shape:perf:01676", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 1024, - "rot": 0, - "props": { - "w": 30, - "h": 44, - "fill": "hsl(162 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01677": { - "id": "shape:perf:01677", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 1024, - "rot": 0, - "props": { - "w": 28, - "h": 39, - "fill": "hsl(102 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01678": { - "id": "shape:perf:01678", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 1024, - "rot": 0, - "props": { - "w": 24, - "h": 46, - "fill": "hsl(36 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01679": { - "id": "shape:perf:01679", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 1024, - "rot": 0, - "props": { - "w": 47, - "h": 40, - "fill": "hsl(235 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01680": { - "id": "shape:perf:01680", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 1024, - "rot": 0, - "props": { - "w": 43, - "h": 45, - "fill": "hsl(243 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01681": { - "id": "shape:perf:01681", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 1024, - "rot": 0, - "props": { - "w": 40, - "h": 43, - "fill": "hsl(103 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01682": { - "id": "shape:perf:01682", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 1024, - "rot": 0, - "props": { - "w": 37, - "h": 27, - "fill": "hsl(180 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01683": { - "id": "shape:perf:01683", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 1024, - "rot": 0, - "props": { - "w": 31, - "h": 41, - "fill": "hsl(266 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01684": { - "id": "shape:perf:01684", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 1024, - "rot": 0, - "props": { - "w": 41, - "h": 46, - "fill": "hsl(197 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01685": { - "id": "shape:perf:01685", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 1024, - "rot": 0, - "props": { - "w": 34, - "h": 30, - "fill": "hsl(36 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01686": { - "id": "shape:perf:01686", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 1024, - "rot": 0, - "props": { - "w": 31, - "h": 36, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01687": { - "id": "shape:perf:01687", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 1024, - "rot": 0, - "props": { - "w": 39, - "h": 35, - "fill": "hsl(180 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01688": { - "id": "shape:perf:01688", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 1024, - "rot": 0, - "props": { - "w": 28, - "h": 38, - "fill": "hsl(119 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01689": { - "id": "shape:perf:01689", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 1024, - "rot": 0, - "props": { - "w": 25, - "h": 24, - "fill": "hsl(187 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01690": { - "id": "shape:perf:01690", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 1024, - "rot": 0, - "props": { - "w": 43, - "h": 27, - "fill": "hsl(46 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01691": { - "id": "shape:perf:01691", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 1024, - "rot": 0, - "props": { - "w": 34, - "h": 24, - "fill": "hsl(123 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01692": { - "id": "shape:perf:01692", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 1024, - "rot": 0, - "props": { - "w": 39, - "h": 33, - "fill": "hsl(345 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01693": { - "id": "shape:perf:01693", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 1024, - "rot": 0, - "props": { - "w": 43, - "h": 46, - "fill": "hsl(225 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01694": { - "id": "shape:perf:01694", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 1024, - "rot": 0, - "props": { - "w": 29, - "h": 31, - "fill": "hsl(145 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01695": { - "id": "shape:perf:01695", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 1024, - "rot": 0, - "props": { - "w": 40, - "h": 24, - "fill": "hsl(52 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01696": { - "id": "shape:perf:01696", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 1024, - "rot": 0, - "props": { - "w": 31, - "h": 33, - "fill": "hsl(159 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01697": { - "id": "shape:perf:01697", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 1024, - "rot": 0, - "props": { - "w": 37, - "h": 30, - "fill": "hsl(79 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01698": { - "id": "shape:perf:01698", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 1024, - "rot": 0, - "props": { - "w": 42, - "h": 24, - "fill": "hsl(280 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01699": { - "id": "shape:perf:01699", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 1024, - "rot": 0, - "props": { - "w": 36, - "h": 44, - "fill": "hsl(56 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01700": { - "id": "shape:perf:01700", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 1088, - "rot": 0, - "props": { - "w": 35, - "h": 43, - "fill": "hsl(40 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01701": { - "id": "shape:perf:01701", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 1088, - "rot": 0, - "props": { - "w": 29, - "h": 27, - "fill": "hsl(315 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01702": { - "id": "shape:perf:01702", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 1088, - "rot": 0, - "props": { - "w": 25, - "h": 39, - "fill": "hsl(115 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01703": { - "id": "shape:perf:01703", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 1088, - "rot": 0, - "props": { - "w": 32, - "h": 35, - "fill": "hsl(270 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01704": { - "id": "shape:perf:01704", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 1088, - "rot": 0, - "props": { - "w": 47, - "h": 30, - "fill": "hsl(191 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01705": { - "id": "shape:perf:01705", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 1088, - "rot": 0, - "props": { - "w": 25, - "h": 27, - "fill": "hsl(227 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01706": { - "id": "shape:perf:01706", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 1088, - "rot": 0, - "props": { - "w": 28, - "h": 32, - "fill": "hsl(299 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01707": { - "id": "shape:perf:01707", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 1088, - "rot": 0, - "props": { - "w": 47, - "h": 27, - "fill": "hsl(270 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01708": { - "id": "shape:perf:01708", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 1088, - "rot": 0, - "props": { - "w": 41, - "h": 33, - "fill": "hsl(86 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01709": { - "id": "shape:perf:01709", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 1088, - "rot": 0, - "props": { - "w": 27, - "h": 31, - "fill": "hsl(248 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01710": { - "id": "shape:perf:01710", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 1088, - "rot": 0, - "props": { - "w": 29, - "h": 45, - "fill": "hsl(21 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01711": { - "id": "shape:perf:01711", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 1088, - "rot": 0, - "props": { - "w": 34, - "h": 33, - "fill": "hsl(54 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01712": { - "id": "shape:perf:01712", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 1088, - "rot": 0, - "props": { - "w": 42, - "h": 29, - "fill": "hsl(232 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01713": { - "id": "shape:perf:01713", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 1088, - "rot": 0, - "props": { - "w": 28, - "h": 29, - "fill": "hsl(209 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01714": { - "id": "shape:perf:01714", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 1088, - "rot": 0, - "props": { - "w": 38, - "h": 27, - "fill": "hsl(86 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01715": { - "id": "shape:perf:01715", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 1088, - "rot": 0, - "props": { - "w": 37, - "h": 35, - "fill": "hsl(184 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01716": { - "id": "shape:perf:01716", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 1088, - "rot": 0, - "props": { - "w": 44, - "h": 25, - "fill": "hsl(242 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01717": { - "id": "shape:perf:01717", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 1088, - "rot": 0, - "props": { - "w": 33, - "h": 40, - "fill": "hsl(241 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01718": { - "id": "shape:perf:01718", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 1088, - "rot": 0, - "props": { - "w": 43, - "h": 46, - "fill": "hsl(235 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01719": { - "id": "shape:perf:01719", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 1088, - "rot": 0, - "props": { - "w": 39, - "h": 33, - "fill": "hsl(136 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01720": { - "id": "shape:perf:01720", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 1088, - "rot": 0, - "props": { - "w": 35, - "h": 39, - "fill": "hsl(26 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01721": { - "id": "shape:perf:01721", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 1088, - "rot": 0, - "props": { - "w": 31, - "h": 34, - "fill": "hsl(352 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01722": { - "id": "shape:perf:01722", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 1088, - "rot": 0, - "props": { - "w": 39, - "h": 42, - "fill": "hsl(87 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01723": { - "id": "shape:perf:01723", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 1088, - "rot": 0, - "props": { - "w": 42, - "h": 29, - "fill": "hsl(152 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01724": { - "id": "shape:perf:01724", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 1088, - "rot": 0, - "props": { - "w": 33, - "h": 24, - "fill": "hsl(157 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01725": { - "id": "shape:perf:01725", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 1088, - "rot": 0, - "props": { - "w": 33, - "h": 26, - "fill": "hsl(249 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01726": { - "id": "shape:perf:01726", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 1088, - "rot": 0, - "props": { - "w": 46, - "h": 42, - "fill": "hsl(165 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01727": { - "id": "shape:perf:01727", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 1088, - "rot": 0, - "props": { - "w": 32, - "h": 33, - "fill": "hsl(87 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01728": { - "id": "shape:perf:01728", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 1088, - "rot": 0, - "props": { - "w": 25, - "h": 38, - "fill": "hsl(125 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01729": { - "id": "shape:perf:01729", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 1088, - "rot": 0, - "props": { - "w": 43, - "h": 36, - "fill": "hsl(301 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01730": { - "id": "shape:perf:01730", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 1088, - "rot": 0, - "props": { - "w": 35, - "h": 34, - "fill": "hsl(321 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01731": { - "id": "shape:perf:01731", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 1088, - "rot": 0, - "props": { - "w": 39, - "h": 45, - "fill": "hsl(339 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01732": { - "id": "shape:perf:01732", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 1088, - "rot": 0, - "props": { - "w": 33, - "h": 25, - "fill": "hsl(69 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01733": { - "id": "shape:perf:01733", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 1088, - "rot": 0, - "props": { - "w": 40, - "h": 28, - "fill": "hsl(347 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01734": { - "id": "shape:perf:01734", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 1088, - "rot": 0, - "props": { - "w": 38, - "h": 42, - "fill": "hsl(125 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01735": { - "id": "shape:perf:01735", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 1088, - "rot": 0, - "props": { - "w": 25, - "h": 44, - "fill": "hsl(354 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01736": { - "id": "shape:perf:01736", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 1088, - "rot": 0, - "props": { - "w": 42, - "h": 36, - "fill": "hsl(210 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01737": { - "id": "shape:perf:01737", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 1088, - "rot": 0, - "props": { - "w": 28, - "h": 24, - "fill": "hsl(315 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01738": { - "id": "shape:perf:01738", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 1088, - "rot": 0, - "props": { - "w": 34, - "h": 34, - "fill": "hsl(147 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01739": { - "id": "shape:perf:01739", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 1088, - "rot": 0, - "props": { - "w": 29, - "h": 24, - "fill": "hsl(332 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01740": { - "id": "shape:perf:01740", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 1088, - "rot": 0, - "props": { - "w": 35, - "h": 34, - "fill": "hsl(158 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01741": { - "id": "shape:perf:01741", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 1088, - "rot": 0, - "props": { - "w": 28, - "h": 46, - "fill": "hsl(240 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01742": { - "id": "shape:perf:01742", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 1088, - "rot": 0, - "props": { - "w": 28, - "h": 38, - "fill": "hsl(251 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01743": { - "id": "shape:perf:01743", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 1088, - "rot": 0, - "props": { - "w": 32, - "h": 33, - "fill": "hsl(352 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01744": { - "id": "shape:perf:01744", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 1088, - "rot": 0, - "props": { - "w": 36, - "h": 38, - "fill": "hsl(37 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01745": { - "id": "shape:perf:01745", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 1088, - "rot": 0, - "props": { - "w": 35, - "h": 31, - "fill": "hsl(247 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01746": { - "id": "shape:perf:01746", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 1088, - "rot": 0, - "props": { - "w": 33, - "h": 37, - "fill": "hsl(113 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01747": { - "id": "shape:perf:01747", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 1088, - "rot": 0, - "props": { - "w": 40, - "h": 28, - "fill": "hsl(220 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01748": { - "id": "shape:perf:01748", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 1088, - "rot": 0, - "props": { - "w": 39, - "h": 24, - "fill": "hsl(34 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01749": { - "id": "shape:perf:01749", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 1088, - "rot": 0, - "props": { - "w": 30, - "h": 38, - "fill": "hsl(52 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01750": { - "id": "shape:perf:01750", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 1088, - "rot": 0, - "props": { - "w": 39, - "h": 41, - "fill": "hsl(74 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01751": { - "id": "shape:perf:01751", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 1088, - "rot": 0, - "props": { - "w": 34, - "h": 47, - "fill": "hsl(185 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01752": { - "id": "shape:perf:01752", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 1088, - "rot": 0, - "props": { - "w": 43, - "h": 37, - "fill": "hsl(142 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01753": { - "id": "shape:perf:01753", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 1088, - "rot": 0, - "props": { - "w": 37, - "h": 30, - "fill": "hsl(165 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01754": { - "id": "shape:perf:01754", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 1088, - "rot": 0, - "props": { - "w": 47, - "h": 36, - "fill": "hsl(150 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01755": { - "id": "shape:perf:01755", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 1088, - "rot": 0, - "props": { - "w": 41, - "h": 35, - "fill": "hsl(251 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01756": { - "id": "shape:perf:01756", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 1088, - "rot": 0, - "props": { - "w": 47, - "h": 32, - "fill": "hsl(115 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01757": { - "id": "shape:perf:01757", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 1088, - "rot": 0, - "props": { - "w": 45, - "h": 39, - "fill": "hsl(234 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01758": { - "id": "shape:perf:01758", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 1088, - "rot": 0, - "props": { - "w": 35, - "h": 29, - "fill": "hsl(184 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01759": { - "id": "shape:perf:01759", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 1088, - "rot": 0, - "props": { - "w": 29, - "h": 44, - "fill": "hsl(220 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01760": { - "id": "shape:perf:01760", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 1088, - "rot": 0, - "props": { - "w": 41, - "h": 31, - "fill": "hsl(136 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01761": { - "id": "shape:perf:01761", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 1088, - "rot": 0, - "props": { - "w": 38, - "h": 47, - "fill": "hsl(94 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01762": { - "id": "shape:perf:01762", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 1088, - "rot": 0, - "props": { - "w": 33, - "h": 37, - "fill": "hsl(210 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01763": { - "id": "shape:perf:01763", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 1088, - "rot": 0, - "props": { - "w": 44, - "h": 46, - "fill": "hsl(153 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01764": { - "id": "shape:perf:01764", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 1088, - "rot": 0, - "props": { - "w": 26, - "h": 25, - "fill": "hsl(256 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01765": { - "id": "shape:perf:01765", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 1088, - "rot": 0, - "props": { - "w": 41, - "h": 36, - "fill": "hsl(246 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01766": { - "id": "shape:perf:01766", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 1088, - "rot": 0, - "props": { - "w": 44, - "h": 35, - "fill": "hsl(230 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01767": { - "id": "shape:perf:01767", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 1088, - "rot": 0, - "props": { - "w": 25, - "h": 38, - "fill": "hsl(338 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01768": { - "id": "shape:perf:01768", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 1088, - "rot": 0, - "props": { - "w": 34, - "h": 37, - "fill": "hsl(351 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01769": { - "id": "shape:perf:01769", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 1088, - "rot": 0, - "props": { - "w": 38, - "h": 45, - "fill": "hsl(320 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01770": { - "id": "shape:perf:01770", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 1088, - "rot": 0, - "props": { - "w": 34, - "h": 47, - "fill": "hsl(118 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01771": { - "id": "shape:perf:01771", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 1088, - "rot": 0, - "props": { - "w": 45, - "h": 47, - "fill": "hsl(278 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01772": { - "id": "shape:perf:01772", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 1088, - "rot": 0, - "props": { - "w": 39, - "h": 46, - "fill": "hsl(278 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01773": { - "id": "shape:perf:01773", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 1088, - "rot": 0, - "props": { - "w": 37, - "h": 26, - "fill": "hsl(309 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01774": { - "id": "shape:perf:01774", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 1088, - "rot": 0, - "props": { - "w": 27, - "h": 30, - "fill": "hsl(83 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01775": { - "id": "shape:perf:01775", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 1088, - "rot": 0, - "props": { - "w": 44, - "h": 40, - "fill": "hsl(271 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01776": { - "id": "shape:perf:01776", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 1088, - "rot": 0, - "props": { - "w": 39, - "h": 47, - "fill": "hsl(1 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01777": { - "id": "shape:perf:01777", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 1088, - "rot": 0, - "props": { - "w": 42, - "h": 29, - "fill": "hsl(104 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01778": { - "id": "shape:perf:01778", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 1088, - "rot": 0, - "props": { - "w": 45, - "h": 41, - "fill": "hsl(79 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01779": { - "id": "shape:perf:01779", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 1088, - "rot": 0, - "props": { - "w": 33, - "h": 31, - "fill": "hsl(249 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01780": { - "id": "shape:perf:01780", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 1088, - "rot": 0, - "props": { - "w": 27, - "h": 34, - "fill": "hsl(257 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01781": { - "id": "shape:perf:01781", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 1088, - "rot": 0, - "props": { - "w": 36, - "h": 28, - "fill": "hsl(125 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01782": { - "id": "shape:perf:01782", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 1088, - "rot": 0, - "props": { - "w": 36, - "h": 32, - "fill": "hsl(222 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01783": { - "id": "shape:perf:01783", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 1088, - "rot": 0, - "props": { - "w": 46, - "h": 45, - "fill": "hsl(337 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01784": { - "id": "shape:perf:01784", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 1088, - "rot": 0, - "props": { - "w": 26, - "h": 40, - "fill": "hsl(132 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01785": { - "id": "shape:perf:01785", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 1088, - "rot": 0, - "props": { - "w": 34, - "h": 43, - "fill": "hsl(189 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01786": { - "id": "shape:perf:01786", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 1088, - "rot": 0, - "props": { - "w": 27, - "h": 30, - "fill": "hsl(38 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01787": { - "id": "shape:perf:01787", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 1088, - "rot": 0, - "props": { - "w": 36, - "h": 46, - "fill": "hsl(151 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01788": { - "id": "shape:perf:01788", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 1088, - "rot": 0, - "props": { - "w": 28, - "h": 25, - "fill": "hsl(200 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01789": { - "id": "shape:perf:01789", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 1088, - "rot": 0, - "props": { - "w": 36, - "h": 33, - "fill": "hsl(321 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01790": { - "id": "shape:perf:01790", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 1088, - "rot": 0, - "props": { - "w": 25, - "h": 45, - "fill": "hsl(249 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01791": { - "id": "shape:perf:01791", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 1088, - "rot": 0, - "props": { - "w": 32, - "h": 43, - "fill": "hsl(26 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01792": { - "id": "shape:perf:01792", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 1088, - "rot": 0, - "props": { - "w": 34, - "h": 34, - "fill": "hsl(213 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01793": { - "id": "shape:perf:01793", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 1088, - "rot": 0, - "props": { - "w": 34, - "h": 46, - "fill": "hsl(112 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01794": { - "id": "shape:perf:01794", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 1088, - "rot": 0, - "props": { - "w": 29, - "h": 28, - "fill": "hsl(46 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01795": { - "id": "shape:perf:01795", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 1088, - "rot": 0, - "props": { - "w": 27, - "h": 43, - "fill": "hsl(298 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01796": { - "id": "shape:perf:01796", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 1088, - "rot": 0, - "props": { - "w": 24, - "h": 42, - "fill": "hsl(198 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01797": { - "id": "shape:perf:01797", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 1088, - "rot": 0, - "props": { - "w": 40, - "h": 33, - "fill": "hsl(132 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01798": { - "id": "shape:perf:01798", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 1088, - "rot": 0, - "props": { - "w": 30, - "h": 26, - "fill": "hsl(214 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01799": { - "id": "shape:perf:01799", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 1088, - "rot": 0, - "props": { - "w": 45, - "h": 40, - "fill": "hsl(212 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01800": { - "id": "shape:perf:01800", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 1152, - "rot": 0, - "props": { - "w": 28, - "h": 35, - "fill": "hsl(226 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01801": { - "id": "shape:perf:01801", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 1152, - "rot": 0, - "props": { - "w": 47, - "h": 24, - "fill": "hsl(43 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01802": { - "id": "shape:perf:01802", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 1152, - "rot": 0, - "props": { - "w": 24, - "h": 25, - "fill": "hsl(207 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01803": { - "id": "shape:perf:01803", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 1152, - "rot": 0, - "props": { - "w": 26, - "h": 30, - "fill": "hsl(312 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01804": { - "id": "shape:perf:01804", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 1152, - "rot": 0, - "props": { - "w": 27, - "h": 38, - "fill": "hsl(331 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01805": { - "id": "shape:perf:01805", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 1152, - "rot": 0, - "props": { - "w": 46, - "h": 35, - "fill": "hsl(328 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01806": { - "id": "shape:perf:01806", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 1152, - "rot": 0, - "props": { - "w": 41, - "h": 38, - "fill": "hsl(73 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01807": { - "id": "shape:perf:01807", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 1152, - "rot": 0, - "props": { - "w": 32, - "h": 37, - "fill": "hsl(353 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01808": { - "id": "shape:perf:01808", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 1152, - "rot": 0, - "props": { - "w": 33, - "h": 45, - "fill": "hsl(0 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01809": { - "id": "shape:perf:01809", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 1152, - "rot": 0, - "props": { - "w": 34, - "h": 24, - "fill": "hsl(302 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01810": { - "id": "shape:perf:01810", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 1152, - "rot": 0, - "props": { - "w": 24, - "h": 35, - "fill": "hsl(190 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01811": { - "id": "shape:perf:01811", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 1152, - "rot": 0, - "props": { - "w": 35, - "h": 36, - "fill": "hsl(15 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01812": { - "id": "shape:perf:01812", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 1152, - "rot": 0, - "props": { - "w": 41, - "h": 28, - "fill": "hsl(319 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01813": { - "id": "shape:perf:01813", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 1152, - "rot": 0, - "props": { - "w": 37, - "h": 32, - "fill": "hsl(226 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01814": { - "id": "shape:perf:01814", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 1152, - "rot": 0, - "props": { - "w": 47, - "h": 35, - "fill": "hsl(164 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01815": { - "id": "shape:perf:01815", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 1152, - "rot": 0, - "props": { - "w": 43, - "h": 44, - "fill": "hsl(23 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01816": { - "id": "shape:perf:01816", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 1152, - "rot": 0, - "props": { - "w": 33, - "h": 31, - "fill": "hsl(94 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01817": { - "id": "shape:perf:01817", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 1152, - "rot": 0, - "props": { - "w": 31, - "h": 40, - "fill": "hsl(1 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01818": { - "id": "shape:perf:01818", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 1152, - "rot": 0, - "props": { - "w": 24, - "h": 44, - "fill": "hsl(121 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01819": { - "id": "shape:perf:01819", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 1152, - "rot": 0, - "props": { - "w": 42, - "h": 37, - "fill": "hsl(350 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01820": { - "id": "shape:perf:01820", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 1152, - "rot": 0, - "props": { - "w": 41, - "h": 35, - "fill": "hsl(18 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01821": { - "id": "shape:perf:01821", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 1152, - "rot": 0, - "props": { - "w": 42, - "h": 32, - "fill": "hsl(299 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01822": { - "id": "shape:perf:01822", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 1152, - "rot": 0, - "props": { - "w": 25, - "h": 39, - "fill": "hsl(166 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01823": { - "id": "shape:perf:01823", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 1152, - "rot": 0, - "props": { - "w": 25, - "h": 26, - "fill": "hsl(117 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01824": { - "id": "shape:perf:01824", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 1152, - "rot": 0, - "props": { - "w": 46, - "h": 36, - "fill": "hsl(268 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01825": { - "id": "shape:perf:01825", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 1152, - "rot": 0, - "props": { - "w": 47, - "h": 37, - "fill": "hsl(205 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01826": { - "id": "shape:perf:01826", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 1152, - "rot": 0, - "props": { - "w": 39, - "h": 35, - "fill": "hsl(321 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01827": { - "id": "shape:perf:01827", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 1152, - "rot": 0, - "props": { - "w": 37, - "h": 36, - "fill": "hsl(4 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01828": { - "id": "shape:perf:01828", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 1152, - "rot": 0, - "props": { - "w": 46, - "h": 35, - "fill": "hsl(14 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01829": { - "id": "shape:perf:01829", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 1152, - "rot": 0, - "props": { - "w": 37, - "h": 41, - "fill": "hsl(311 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01830": { - "id": "shape:perf:01830", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 1152, - "rot": 0, - "props": { - "w": 46, - "h": 25, - "fill": "hsl(160 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01831": { - "id": "shape:perf:01831", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 1152, - "rot": 0, - "props": { - "w": 44, - "h": 47, - "fill": "hsl(109 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01832": { - "id": "shape:perf:01832", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 1152, - "rot": 0, - "props": { - "w": 31, - "h": 32, - "fill": "hsl(237 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01833": { - "id": "shape:perf:01833", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 1152, - "rot": 0, - "props": { - "w": 41, - "h": 47, - "fill": "hsl(99 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01834": { - "id": "shape:perf:01834", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 1152, - "rot": 0, - "props": { - "w": 37, - "h": 40, - "fill": "hsl(259 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01835": { - "id": "shape:perf:01835", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 1152, - "rot": 0, - "props": { - "w": 37, - "h": 45, - "fill": "hsl(330 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01836": { - "id": "shape:perf:01836", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 1152, - "rot": 0, - "props": { - "w": 43, - "h": 46, - "fill": "hsl(183 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01837": { - "id": "shape:perf:01837", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 1152, - "rot": 0, - "props": { - "w": 30, - "h": 42, - "fill": "hsl(178 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01838": { - "id": "shape:perf:01838", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 1152, - "rot": 0, - "props": { - "w": 38, - "h": 24, - "fill": "hsl(177 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01839": { - "id": "shape:perf:01839", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 1152, - "rot": 0, - "props": { - "w": 36, - "h": 44, - "fill": "hsl(23 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01840": { - "id": "shape:perf:01840", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 1152, - "rot": 0, - "props": { - "w": 35, - "h": 32, - "fill": "hsl(164 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01841": { - "id": "shape:perf:01841", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 1152, - "rot": 0, - "props": { - "w": 47, - "h": 37, - "fill": "hsl(199 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01842": { - "id": "shape:perf:01842", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 1152, - "rot": 0, - "props": { - "w": 39, - "h": 46, - "fill": "hsl(319 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01843": { - "id": "shape:perf:01843", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 1152, - "rot": 0, - "props": { - "w": 38, - "h": 38, - "fill": "hsl(213 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01844": { - "id": "shape:perf:01844", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 1152, - "rot": 0, - "props": { - "w": 25, - "h": 32, - "fill": "hsl(150 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01845": { - "id": "shape:perf:01845", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 1152, - "rot": 0, - "props": { - "w": 40, - "h": 36, - "fill": "hsl(303 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01846": { - "id": "shape:perf:01846", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 1152, - "rot": 0, - "props": { - "w": 31, - "h": 43, - "fill": "hsl(40 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01847": { - "id": "shape:perf:01847", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 1152, - "rot": 0, - "props": { - "w": 35, - "h": 35, - "fill": "hsl(254 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01848": { - "id": "shape:perf:01848", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 1152, - "rot": 0, - "props": { - "w": 42, - "h": 44, - "fill": "hsl(196 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01849": { - "id": "shape:perf:01849", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 1152, - "rot": 0, - "props": { - "w": 27, - "h": 46, - "fill": "hsl(356 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01850": { - "id": "shape:perf:01850", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 1152, - "rot": 0, - "props": { - "w": 46, - "h": 46, - "fill": "hsl(257 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01851": { - "id": "shape:perf:01851", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 1152, - "rot": 0, - "props": { - "w": 40, - "h": 46, - "fill": "hsl(320 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01852": { - "id": "shape:perf:01852", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 1152, - "rot": 0, - "props": { - "w": 47, - "h": 41, - "fill": "hsl(237 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01853": { - "id": "shape:perf:01853", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 1152, - "rot": 0, - "props": { - "w": 40, - "h": 35, - "fill": "hsl(319 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01854": { - "id": "shape:perf:01854", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 1152, - "rot": 0, - "props": { - "w": 26, - "h": 46, - "fill": "hsl(217 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01855": { - "id": "shape:perf:01855", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 1152, - "rot": 0, - "props": { - "w": 44, - "h": 47, - "fill": "hsl(347 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01856": { - "id": "shape:perf:01856", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 1152, - "rot": 0, - "props": { - "w": 34, - "h": 39, - "fill": "hsl(108 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01857": { - "id": "shape:perf:01857", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 1152, - "rot": 0, - "props": { - "w": 24, - "h": 45, - "fill": "hsl(139 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01858": { - "id": "shape:perf:01858", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 1152, - "rot": 0, - "props": { - "w": 29, - "h": 26, - "fill": "hsl(111 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01859": { - "id": "shape:perf:01859", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 1152, - "rot": 0, - "props": { - "w": 24, - "h": 30, - "fill": "hsl(173 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01860": { - "id": "shape:perf:01860", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 1152, - "rot": 0, - "props": { - "w": 46, - "h": 39, - "fill": "hsl(345 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01861": { - "id": "shape:perf:01861", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 1152, - "rot": 0, - "props": { - "w": 33, - "h": 24, - "fill": "hsl(195 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01862": { - "id": "shape:perf:01862", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 1152, - "rot": 0, - "props": { - "w": 40, - "h": 45, - "fill": "hsl(88 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01863": { - "id": "shape:perf:01863", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 1152, - "rot": 0, - "props": { - "w": 47, - "h": 31, - "fill": "hsl(299 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01864": { - "id": "shape:perf:01864", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 1152, - "rot": 0, - "props": { - "w": 28, - "h": 30, - "fill": "hsl(142 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01865": { - "id": "shape:perf:01865", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 1152, - "rot": 0, - "props": { - "w": 45, - "h": 38, - "fill": "hsl(122 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01866": { - "id": "shape:perf:01866", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 1152, - "rot": 0, - "props": { - "w": 43, - "h": 42, - "fill": "hsl(327 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01867": { - "id": "shape:perf:01867", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 1152, - "rot": 0, - "props": { - "w": 36, - "h": 38, - "fill": "hsl(278 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01868": { - "id": "shape:perf:01868", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 1152, - "rot": 0, - "props": { - "w": 30, - "h": 29, - "fill": "hsl(44 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01869": { - "id": "shape:perf:01869", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 1152, - "rot": 0, - "props": { - "w": 24, - "h": 42, - "fill": "hsl(105 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01870": { - "id": "shape:perf:01870", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 1152, - "rot": 0, - "props": { - "w": 42, - "h": 38, - "fill": "hsl(107 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01871": { - "id": "shape:perf:01871", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 1152, - "rot": 0, - "props": { - "w": 31, - "h": 43, - "fill": "hsl(103 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01872": { - "id": "shape:perf:01872", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 1152, - "rot": 0, - "props": { - "w": 28, - "h": 45, - "fill": "hsl(155 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01873": { - "id": "shape:perf:01873", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 1152, - "rot": 0, - "props": { - "w": 46, - "h": 34, - "fill": "hsl(147 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01874": { - "id": "shape:perf:01874", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 1152, - "rot": 0, - "props": { - "w": 38, - "h": 39, - "fill": "hsl(8 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01875": { - "id": "shape:perf:01875", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 1152, - "rot": 0, - "props": { - "w": 38, - "h": 39, - "fill": "hsl(330 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01876": { - "id": "shape:perf:01876", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 1152, - "rot": 0, - "props": { - "w": 26, - "h": 33, - "fill": "hsl(204 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01877": { - "id": "shape:perf:01877", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 1152, - "rot": 0, - "props": { - "w": 26, - "h": 40, - "fill": "hsl(130 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01878": { - "id": "shape:perf:01878", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 1152, - "rot": 0, - "props": { - "w": 33, - "h": 30, - "fill": "hsl(291 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01879": { - "id": "shape:perf:01879", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 1152, - "rot": 0, - "props": { - "w": 28, - "h": 31, - "fill": "hsl(22 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01880": { - "id": "shape:perf:01880", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 1152, - "rot": 0, - "props": { - "w": 31, - "h": 37, - "fill": "hsl(322 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01881": { - "id": "shape:perf:01881", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 1152, - "rot": 0, - "props": { - "w": 35, - "h": 43, - "fill": "hsl(305 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01882": { - "id": "shape:perf:01882", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 1152, - "rot": 0, - "props": { - "w": 38, - "h": 27, - "fill": "hsl(152 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01883": { - "id": "shape:perf:01883", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 1152, - "rot": 0, - "props": { - "w": 47, - "h": 32, - "fill": "hsl(302 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01884": { - "id": "shape:perf:01884", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 1152, - "rot": 0, - "props": { - "w": 29, - "h": 41, - "fill": "hsl(70 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01885": { - "id": "shape:perf:01885", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 1152, - "rot": 0, - "props": { - "w": 38, - "h": 43, - "fill": "hsl(181 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01886": { - "id": "shape:perf:01886", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 1152, - "rot": 0, - "props": { - "w": 46, - "h": 45, - "fill": "hsl(85 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01887": { - "id": "shape:perf:01887", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 1152, - "rot": 0, - "props": { - "w": 38, - "h": 29, - "fill": "hsl(170 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01888": { - "id": "shape:perf:01888", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 1152, - "rot": 0, - "props": { - "w": 44, - "h": 30, - "fill": "hsl(151 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01889": { - "id": "shape:perf:01889", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 1152, - "rot": 0, - "props": { - "w": 35, - "h": 42, - "fill": "hsl(316 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01890": { - "id": "shape:perf:01890", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 1152, - "rot": 0, - "props": { - "w": 36, - "h": 25, - "fill": "hsl(323 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01891": { - "id": "shape:perf:01891", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 1152, - "rot": 0, - "props": { - "w": 39, - "h": 35, - "fill": "hsl(134 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01892": { - "id": "shape:perf:01892", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 1152, - "rot": 0, - "props": { - "w": 34, - "h": 26, - "fill": "hsl(197 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01893": { - "id": "shape:perf:01893", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 1152, - "rot": 0, - "props": { - "w": 25, - "h": 29, - "fill": "hsl(103 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01894": { - "id": "shape:perf:01894", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 1152, - "rot": 0, - "props": { - "w": 25, - "h": 32, - "fill": "hsl(318 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01895": { - "id": "shape:perf:01895", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 1152, - "rot": 0, - "props": { - "w": 26, - "h": 36, - "fill": "hsl(114 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01896": { - "id": "shape:perf:01896", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 1152, - "rot": 0, - "props": { - "w": 29, - "h": 32, - "fill": "hsl(130 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01897": { - "id": "shape:perf:01897", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 1152, - "rot": 0, - "props": { - "w": 26, - "h": 28, - "fill": "hsl(199 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01898": { - "id": "shape:perf:01898", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 1152, - "rot": 0, - "props": { - "w": 46, - "h": 26, - "fill": "hsl(310 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01899": { - "id": "shape:perf:01899", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 1152, - "rot": 0, - "props": { - "w": 39, - "h": 41, - "fill": "hsl(153 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01900": { - "id": "shape:perf:01900", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 1216, - "rot": 0, - "props": { - "w": 45, - "h": 36, - "fill": "hsl(108 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01901": { - "id": "shape:perf:01901", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 1216, - "rot": 0, - "props": { - "w": 45, - "h": 32, - "fill": "hsl(359 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01902": { - "id": "shape:perf:01902", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 1216, - "rot": 0, - "props": { - "w": 32, - "h": 24, - "fill": "hsl(55 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01903": { - "id": "shape:perf:01903", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 1216, - "rot": 0, - "props": { - "w": 45, - "h": 28, - "fill": "hsl(300 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01904": { - "id": "shape:perf:01904", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 1216, - "rot": 0, - "props": { - "w": 34, - "h": 37, - "fill": "hsl(249 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01905": { - "id": "shape:perf:01905", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 1216, - "rot": 0, - "props": { - "w": 26, - "h": 28, - "fill": "hsl(57 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01906": { - "id": "shape:perf:01906", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 1216, - "rot": 0, - "props": { - "w": 39, - "h": 37, - "fill": "hsl(268 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01907": { - "id": "shape:perf:01907", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 1216, - "rot": 0, - "props": { - "w": 29, - "h": 46, - "fill": "hsl(83 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01908": { - "id": "shape:perf:01908", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 1216, - "rot": 0, - "props": { - "w": 30, - "h": 46, - "fill": "hsl(17 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01909": { - "id": "shape:perf:01909", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 1216, - "rot": 0, - "props": { - "w": 44, - "h": 34, - "fill": "hsl(29 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01910": { - "id": "shape:perf:01910", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 1216, - "rot": 0, - "props": { - "w": 45, - "h": 44, - "fill": "hsl(215 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01911": { - "id": "shape:perf:01911", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 1216, - "rot": 0, - "props": { - "w": 43, - "h": 44, - "fill": "hsl(260 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01912": { - "id": "shape:perf:01912", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 1216, - "rot": 0, - "props": { - "w": 31, - "h": 45, - "fill": "hsl(69 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01913": { - "id": "shape:perf:01913", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 1216, - "rot": 0, - "props": { - "w": 37, - "h": 24, - "fill": "hsl(72 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01914": { - "id": "shape:perf:01914", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 1216, - "rot": 0, - "props": { - "w": 29, - "h": 45, - "fill": "hsl(82 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01915": { - "id": "shape:perf:01915", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 1216, - "rot": 0, - "props": { - "w": 45, - "h": 42, - "fill": "hsl(228 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01916": { - "id": "shape:perf:01916", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 1216, - "rot": 0, - "props": { - "w": 38, - "h": 27, - "fill": "hsl(151 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01917": { - "id": "shape:perf:01917", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 1216, - "rot": 0, - "props": { - "w": 28, - "h": 39, - "fill": "hsl(48 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01918": { - "id": "shape:perf:01918", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 1216, - "rot": 0, - "props": { - "w": 38, - "h": 30, - "fill": "hsl(290 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01919": { - "id": "shape:perf:01919", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 1216, - "rot": 0, - "props": { - "w": 31, - "h": 25, - "fill": "hsl(83 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01920": { - "id": "shape:perf:01920", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 1216, - "rot": 0, - "props": { - "w": 39, - "h": 36, - "fill": "hsl(349 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01921": { - "id": "shape:perf:01921", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 1216, - "rot": 0, - "props": { - "w": 36, - "h": 43, - "fill": "hsl(332 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01922": { - "id": "shape:perf:01922", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 1216, - "rot": 0, - "props": { - "w": 25, - "h": 40, - "fill": "hsl(91 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01923": { - "id": "shape:perf:01923", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 1216, - "rot": 0, - "props": { - "w": 34, - "h": 41, - "fill": "hsl(171 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01924": { - "id": "shape:perf:01924", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 1216, - "rot": 0, - "props": { - "w": 28, - "h": 44, - "fill": "hsl(177 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01925": { - "id": "shape:perf:01925", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 1216, - "rot": 0, - "props": { - "w": 31, - "h": 25, - "fill": "hsl(176 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01926": { - "id": "shape:perf:01926", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 1216, - "rot": 0, - "props": { - "w": 30, - "h": 31, - "fill": "hsl(26 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01927": { - "id": "shape:perf:01927", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 1216, - "rot": 0, - "props": { - "w": 43, - "h": 31, - "fill": "hsl(108 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01928": { - "id": "shape:perf:01928", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 1216, - "rot": 0, - "props": { - "w": 24, - "h": 40, - "fill": "hsl(105 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01929": { - "id": "shape:perf:01929", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 1216, - "rot": 0, - "props": { - "w": 41, - "h": 30, - "fill": "hsl(152 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01930": { - "id": "shape:perf:01930", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 1216, - "rot": 0, - "props": { - "w": 41, - "h": 32, - "fill": "hsl(317 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01931": { - "id": "shape:perf:01931", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 1216, - "rot": 0, - "props": { - "w": 27, - "h": 33, - "fill": "hsl(2 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01932": { - "id": "shape:perf:01932", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 1216, - "rot": 0, - "props": { - "w": 24, - "h": 38, - "fill": "hsl(191 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01933": { - "id": "shape:perf:01933", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 1216, - "rot": 0, - "props": { - "w": 28, - "h": 35, - "fill": "hsl(119 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01934": { - "id": "shape:perf:01934", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 1216, - "rot": 0, - "props": { - "w": 39, - "h": 39, - "fill": "hsl(328 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01935": { - "id": "shape:perf:01935", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 1216, - "rot": 0, - "props": { - "w": 42, - "h": 27, - "fill": "hsl(278 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01936": { - "id": "shape:perf:01936", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 1216, - "rot": 0, - "props": { - "w": 42, - "h": 47, - "fill": "hsl(255 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01937": { - "id": "shape:perf:01937", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 1216, - "rot": 0, - "props": { - "w": 34, - "h": 27, - "fill": "hsl(113 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01938": { - "id": "shape:perf:01938", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 1216, - "rot": 0, - "props": { - "w": 37, - "h": 24, - "fill": "hsl(336 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01939": { - "id": "shape:perf:01939", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 1216, - "rot": 0, - "props": { - "w": 31, - "h": 45, - "fill": "hsl(138 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01940": { - "id": "shape:perf:01940", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 1216, - "rot": 0, - "props": { - "w": 27, - "h": 45, - "fill": "hsl(9 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01941": { - "id": "shape:perf:01941", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 1216, - "rot": 0, - "props": { - "w": 46, - "h": 45, - "fill": "hsl(145 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01942": { - "id": "shape:perf:01942", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 1216, - "rot": 0, - "props": { - "w": 27, - "h": 43, - "fill": "hsl(127 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01943": { - "id": "shape:perf:01943", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 1216, - "rot": 0, - "props": { - "w": 26, - "h": 38, - "fill": "hsl(239 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01944": { - "id": "shape:perf:01944", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 1216, - "rot": 0, - "props": { - "w": 25, - "h": 29, - "fill": "hsl(186 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01945": { - "id": "shape:perf:01945", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 1216, - "rot": 0, - "props": { - "w": 31, - "h": 35, - "fill": "hsl(338 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01946": { - "id": "shape:perf:01946", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 1216, - "rot": 0, - "props": { - "w": 34, - "h": 38, - "fill": "hsl(167 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01947": { - "id": "shape:perf:01947", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 1216, - "rot": 0, - "props": { - "w": 27, - "h": 46, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01948": { - "id": "shape:perf:01948", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 1216, - "rot": 0, - "props": { - "w": 24, - "h": 34, - "fill": "hsl(17 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01949": { - "id": "shape:perf:01949", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 1216, - "rot": 0, - "props": { - "w": 39, - "h": 26, - "fill": "hsl(92 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01950": { - "id": "shape:perf:01950", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 1216, - "rot": 0, - "props": { - "w": 29, - "h": 35, - "fill": "hsl(29 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01951": { - "id": "shape:perf:01951", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 1216, - "rot": 0, - "props": { - "w": 34, - "h": 25, - "fill": "hsl(179 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01952": { - "id": "shape:perf:01952", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 1216, - "rot": 0, - "props": { - "w": 42, - "h": 47, - "fill": "hsl(188 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01953": { - "id": "shape:perf:01953", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 1216, - "rot": 0, - "props": { - "w": 31, - "h": 35, - "fill": "hsl(59 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01954": { - "id": "shape:perf:01954", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 1216, - "rot": 0, - "props": { - "w": 30, - "h": 43, - "fill": "hsl(17 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01955": { - "id": "shape:perf:01955", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 1216, - "rot": 0, - "props": { - "w": 33, - "h": 45, - "fill": "hsl(76 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01956": { - "id": "shape:perf:01956", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 1216, - "rot": 0, - "props": { - "w": 30, - "h": 30, - "fill": "hsl(337 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01957": { - "id": "shape:perf:01957", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 1216, - "rot": 0, - "props": { - "w": 44, - "h": 39, - "fill": "hsl(24 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01958": { - "id": "shape:perf:01958", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 1216, - "rot": 0, - "props": { - "w": 31, - "h": 41, - "fill": "hsl(127 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01959": { - "id": "shape:perf:01959", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 1216, - "rot": 0, - "props": { - "w": 35, - "h": 34, - "fill": "hsl(253 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01960": { - "id": "shape:perf:01960", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 1216, - "rot": 0, - "props": { - "w": 27, - "h": 34, - "fill": "hsl(41 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01961": { - "id": "shape:perf:01961", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 1216, - "rot": 0, - "props": { - "w": 39, - "h": 41, - "fill": "hsl(262 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01962": { - "id": "shape:perf:01962", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 1216, - "rot": 0, - "props": { - "w": 30, - "h": 24, - "fill": "hsl(305 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01963": { - "id": "shape:perf:01963", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 1216, - "rot": 0, - "props": { - "w": 44, - "h": 34, - "fill": "hsl(283 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01964": { - "id": "shape:perf:01964", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 1216, - "rot": 0, - "props": { - "w": 40, - "h": 25, - "fill": "hsl(93 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01965": { - "id": "shape:perf:01965", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 1216, - "rot": 0, - "props": { - "w": 32, - "h": 27, - "fill": "hsl(7 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01966": { - "id": "shape:perf:01966", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 1216, - "rot": 0, - "props": { - "w": 30, - "h": 32, - "fill": "hsl(274 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01967": { - "id": "shape:perf:01967", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 1216, - "rot": 0, - "props": { - "w": 40, - "h": 31, - "fill": "hsl(24 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01968": { - "id": "shape:perf:01968", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 1216, - "rot": 0, - "props": { - "w": 27, - "h": 27, - "fill": "hsl(233 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01969": { - "id": "shape:perf:01969", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 1216, - "rot": 0, - "props": { - "w": 46, - "h": 35, - "fill": "hsl(56 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01970": { - "id": "shape:perf:01970", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 1216, - "rot": 0, - "props": { - "w": 47, - "h": 41, - "fill": "hsl(198 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01971": { - "id": "shape:perf:01971", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 1216, - "rot": 0, - "props": { - "w": 39, - "h": 29, - "fill": "hsl(315 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01972": { - "id": "shape:perf:01972", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 1216, - "rot": 0, - "props": { - "w": 43, - "h": 36, - "fill": "hsl(42 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01973": { - "id": "shape:perf:01973", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 1216, - "rot": 0, - "props": { - "w": 29, - "h": 44, - "fill": "hsl(90 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01974": { - "id": "shape:perf:01974", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 1216, - "rot": 0, - "props": { - "w": 26, - "h": 33, - "fill": "hsl(282 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01975": { - "id": "shape:perf:01975", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 1216, - "rot": 0, - "props": { - "w": 37, - "h": 47, - "fill": "hsl(95 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01976": { - "id": "shape:perf:01976", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 1216, - "rot": 0, - "props": { - "w": 47, - "h": 45, - "fill": "hsl(56 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01977": { - "id": "shape:perf:01977", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 1216, - "rot": 0, - "props": { - "w": 29, - "h": 35, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01978": { - "id": "shape:perf:01978", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 1216, - "rot": 0, - "props": { - "w": 34, - "h": 37, - "fill": "hsl(21 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01979": { - "id": "shape:perf:01979", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 1216, - "rot": 0, - "props": { - "w": 47, - "h": 29, - "fill": "hsl(253 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01980": { - "id": "shape:perf:01980", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 1216, - "rot": 0, - "props": { - "w": 29, - "h": 43, - "fill": "hsl(272 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01981": { - "id": "shape:perf:01981", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 1216, - "rot": 0, - "props": { - "w": 35, - "h": 37, - "fill": "hsl(127 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01982": { - "id": "shape:perf:01982", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 1216, - "rot": 0, - "props": { - "w": 31, - "h": 37, - "fill": "hsl(60 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01983": { - "id": "shape:perf:01983", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 1216, - "rot": 0, - "props": { - "w": 36, - "h": 33, - "fill": "hsl(157 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01984": { - "id": "shape:perf:01984", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 1216, - "rot": 0, - "props": { - "w": 44, - "h": 40, - "fill": "hsl(127 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01985": { - "id": "shape:perf:01985", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 1216, - "rot": 0, - "props": { - "w": 29, - "h": 28, - "fill": "hsl(6 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01986": { - "id": "shape:perf:01986", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 1216, - "rot": 0, - "props": { - "w": 38, - "h": 37, - "fill": "hsl(11 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01987": { - "id": "shape:perf:01987", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 1216, - "rot": 0, - "props": { - "w": 40, - "h": 46, - "fill": "hsl(233 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01988": { - "id": "shape:perf:01988", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 1216, - "rot": 0, - "props": { - "w": 25, - "h": 44, - "fill": "hsl(172 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01989": { - "id": "shape:perf:01989", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 1216, - "rot": 0, - "props": { - "w": 28, - "h": 44, - "fill": "hsl(161 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01990": { - "id": "shape:perf:01990", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 1216, - "rot": 0, - "props": { - "w": 41, - "h": 42, - "fill": "hsl(35 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01991": { - "id": "shape:perf:01991", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 1216, - "rot": 0, - "props": { - "w": 29, - "h": 35, - "fill": "hsl(304 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01992": { - "id": "shape:perf:01992", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 1216, - "rot": 0, - "props": { - "w": 30, - "h": 43, - "fill": "hsl(349 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01993": { - "id": "shape:perf:01993", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 1216, - "rot": 0, - "props": { - "w": 35, - "h": 41, - "fill": "hsl(182 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01994": { - "id": "shape:perf:01994", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 1216, - "rot": 0, - "props": { - "w": 26, - "h": 39, - "fill": "hsl(79 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:01995": { - "id": "shape:perf:01995", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 1216, - "rot": 0, - "props": { - "w": 46, - "h": 31, - "fill": "hsl(64 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:01996": { - "id": "shape:perf:01996", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 1216, - "rot": 0, - "props": { - "w": 44, - "h": 28, - "fill": "hsl(317 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:01997": { - "id": "shape:perf:01997", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 1216, - "rot": 0, - "props": { - "w": 34, - "h": 36, - "fill": "hsl(291 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:01998": { - "id": "shape:perf:01998", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 1216, - "rot": 0, - "props": { - "w": 47, - "h": 44, - "fill": "hsl(79 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:01999": { - "id": "shape:perf:01999", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 1216, - "rot": 0, - "props": { - "w": 38, - "h": 41, - "fill": "hsl(204 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02000": { - "id": "shape:perf:02000", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 1280, - "rot": 0, - "props": { - "w": 30, - "h": 41, - "fill": "hsl(140 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02001": { - "id": "shape:perf:02001", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 1280, - "rot": 0, - "props": { - "w": 43, - "h": 26, - "fill": "hsl(260 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02002": { - "id": "shape:perf:02002", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 1280, - "rot": 0, - "props": { - "w": 37, - "h": 43, - "fill": "hsl(229 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02003": { - "id": "shape:perf:02003", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 1280, - "rot": 0, - "props": { - "w": 25, - "h": 43, - "fill": "hsl(301 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02004": { - "id": "shape:perf:02004", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 1280, - "rot": 0, - "props": { - "w": 35, - "h": 29, - "fill": "hsl(143 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02005": { - "id": "shape:perf:02005", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 1280, - "rot": 0, - "props": { - "w": 34, - "h": 39, - "fill": "hsl(21 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02006": { - "id": "shape:perf:02006", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 1280, - "rot": 0, - "props": { - "w": 39, - "h": 26, - "fill": "hsl(152 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02007": { - "id": "shape:perf:02007", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 1280, - "rot": 0, - "props": { - "w": 35, - "h": 33, - "fill": "hsl(101 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02008": { - "id": "shape:perf:02008", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 1280, - "rot": 0, - "props": { - "w": 36, - "h": 33, - "fill": "hsl(214 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02009": { - "id": "shape:perf:02009", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 1280, - "rot": 0, - "props": { - "w": 35, - "h": 40, - "fill": "hsl(172 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02010": { - "id": "shape:perf:02010", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 1280, - "rot": 0, - "props": { - "w": 41, - "h": 44, - "fill": "hsl(180 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02011": { - "id": "shape:perf:02011", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 1280, - "rot": 0, - "props": { - "w": 28, - "h": 42, - "fill": "hsl(108 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02012": { - "id": "shape:perf:02012", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 1280, - "rot": 0, - "props": { - "w": 44, - "h": 28, - "fill": "hsl(57 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02013": { - "id": "shape:perf:02013", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 1280, - "rot": 0, - "props": { - "w": 38, - "h": 33, - "fill": "hsl(335 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02014": { - "id": "shape:perf:02014", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 1280, - "rot": 0, - "props": { - "w": 33, - "h": 28, - "fill": "hsl(175 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02015": { - "id": "shape:perf:02015", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 1280, - "rot": 0, - "props": { - "w": 35, - "h": 38, - "fill": "hsl(33 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02016": { - "id": "shape:perf:02016", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 1280, - "rot": 0, - "props": { - "w": 26, - "h": 31, - "fill": "hsl(156 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02017": { - "id": "shape:perf:02017", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 1280, - "rot": 0, - "props": { - "w": 42, - "h": 47, - "fill": "hsl(237 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02018": { - "id": "shape:perf:02018", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 1280, - "rot": 0, - "props": { - "w": 32, - "h": 36, - "fill": "hsl(11 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02019": { - "id": "shape:perf:02019", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 1280, - "rot": 0, - "props": { - "w": 33, - "h": 26, - "fill": "hsl(175 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02020": { - "id": "shape:perf:02020", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 1280, - "rot": 0, - "props": { - "w": 32, - "h": 36, - "fill": "hsl(58 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02021": { - "id": "shape:perf:02021", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 1280, - "rot": 0, - "props": { - "w": 43, - "h": 46, - "fill": "hsl(208 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02022": { - "id": "shape:perf:02022", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 1280, - "rot": 0, - "props": { - "w": 47, - "h": 41, - "fill": "hsl(181 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02023": { - "id": "shape:perf:02023", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 1280, - "rot": 0, - "props": { - "w": 46, - "h": 26, - "fill": "hsl(155 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02024": { - "id": "shape:perf:02024", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 1280, - "rot": 0, - "props": { - "w": 27, - "h": 46, - "fill": "hsl(71 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02025": { - "id": "shape:perf:02025", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 1280, - "rot": 0, - "props": { - "w": 35, - "h": 45, - "fill": "hsl(23 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02026": { - "id": "shape:perf:02026", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 1280, - "rot": 0, - "props": { - "w": 32, - "h": 36, - "fill": "hsl(12 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02027": { - "id": "shape:perf:02027", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 1280, - "rot": 0, - "props": { - "w": 30, - "h": 30, - "fill": "hsl(264 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02028": { - "id": "shape:perf:02028", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 1280, - "rot": 0, - "props": { - "w": 31, - "h": 27, - "fill": "hsl(267 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02029": { - "id": "shape:perf:02029", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 1280, - "rot": 0, - "props": { - "w": 43, - "h": 41, - "fill": "hsl(165 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02030": { - "id": "shape:perf:02030", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 1280, - "rot": 0, - "props": { - "w": 40, - "h": 32, - "fill": "hsl(45 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02031": { - "id": "shape:perf:02031", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 1280, - "rot": 0, - "props": { - "w": 43, - "h": 47, - "fill": "hsl(6 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02032": { - "id": "shape:perf:02032", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 1280, - "rot": 0, - "props": { - "w": 32, - "h": 43, - "fill": "hsl(183 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02033": { - "id": "shape:perf:02033", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 1280, - "rot": 0, - "props": { - "w": 32, - "h": 44, - "fill": "hsl(298 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02034": { - "id": "shape:perf:02034", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 1280, - "rot": 0, - "props": { - "w": 45, - "h": 43, - "fill": "hsl(112 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02035": { - "id": "shape:perf:02035", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 1280, - "rot": 0, - "props": { - "w": 34, - "h": 40, - "fill": "hsl(17 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02036": { - "id": "shape:perf:02036", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 1280, - "rot": 0, - "props": { - "w": 45, - "h": 42, - "fill": "hsl(141 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02037": { - "id": "shape:perf:02037", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 1280, - "rot": 0, - "props": { - "w": 29, - "h": 25, - "fill": "hsl(282 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02038": { - "id": "shape:perf:02038", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 1280, - "rot": 0, - "props": { - "w": 26, - "h": 37, - "fill": "hsl(228 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02039": { - "id": "shape:perf:02039", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 1280, - "rot": 0, - "props": { - "w": 43, - "h": 27, - "fill": "hsl(312 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02040": { - "id": "shape:perf:02040", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 1280, - "rot": 0, - "props": { - "w": 29, - "h": 26, - "fill": "hsl(189 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02041": { - "id": "shape:perf:02041", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 1280, - "rot": 0, - "props": { - "w": 43, - "h": 24, - "fill": "hsl(141 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02042": { - "id": "shape:perf:02042", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 1280, - "rot": 0, - "props": { - "w": 31, - "h": 36, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02043": { - "id": "shape:perf:02043", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 1280, - "rot": 0, - "props": { - "w": 26, - "h": 33, - "fill": "hsl(142 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02044": { - "id": "shape:perf:02044", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 1280, - "rot": 0, - "props": { - "w": 30, - "h": 31, - "fill": "hsl(302 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02045": { - "id": "shape:perf:02045", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 1280, - "rot": 0, - "props": { - "w": 30, - "h": 26, - "fill": "hsl(182 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02046": { - "id": "shape:perf:02046", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 1280, - "rot": 0, - "props": { - "w": 30, - "h": 39, - "fill": "hsl(289 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02047": { - "id": "shape:perf:02047", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 1280, - "rot": 0, - "props": { - "w": 35, - "h": 40, - "fill": "hsl(144 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02048": { - "id": "shape:perf:02048", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 1280, - "rot": 0, - "props": { - "w": 30, - "h": 46, - "fill": "hsl(160 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02049": { - "id": "shape:perf:02049", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 1280, - "rot": 0, - "props": { - "w": 38, - "h": 45, - "fill": "hsl(11 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02050": { - "id": "shape:perf:02050", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 1280, - "rot": 0, - "props": { - "w": 46, - "h": 39, - "fill": "hsl(345 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02051": { - "id": "shape:perf:02051", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 1280, - "rot": 0, - "props": { - "w": 36, - "h": 42, - "fill": "hsl(27 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02052": { - "id": "shape:perf:02052", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 1280, - "rot": 0, - "props": { - "w": 27, - "h": 32, - "fill": "hsl(176 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02053": { - "id": "shape:perf:02053", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 1280, - "rot": 0, - "props": { - "w": 25, - "h": 45, - "fill": "hsl(330 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02054": { - "id": "shape:perf:02054", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 1280, - "rot": 0, - "props": { - "w": 24, - "h": 47, - "fill": "hsl(214 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02055": { - "id": "shape:perf:02055", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 1280, - "rot": 0, - "props": { - "w": 29, - "h": 44, - "fill": "hsl(202 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02056": { - "id": "shape:perf:02056", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 1280, - "rot": 0, - "props": { - "w": 39, - "h": 24, - "fill": "hsl(121 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02057": { - "id": "shape:perf:02057", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 1280, - "rot": 0, - "props": { - "w": 34, - "h": 24, - "fill": "hsl(351 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02058": { - "id": "shape:perf:02058", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 1280, - "rot": 0, - "props": { - "w": 35, - "h": 45, - "fill": "hsl(325 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02059": { - "id": "shape:perf:02059", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 1280, - "rot": 0, - "props": { - "w": 26, - "h": 28, - "fill": "hsl(53 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02060": { - "id": "shape:perf:02060", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 1280, - "rot": 0, - "props": { - "w": 36, - "h": 41, - "fill": "hsl(55 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02061": { - "id": "shape:perf:02061", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 1280, - "rot": 0, - "props": { - "w": 27, - "h": 26, - "fill": "hsl(270 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02062": { - "id": "shape:perf:02062", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 1280, - "rot": 0, - "props": { - "w": 37, - "h": 41, - "fill": "hsl(234 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02063": { - "id": "shape:perf:02063", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 1280, - "rot": 0, - "props": { - "w": 43, - "h": 24, - "fill": "hsl(17 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02064": { - "id": "shape:perf:02064", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 1280, - "rot": 0, - "props": { - "w": 28, - "h": 24, - "fill": "hsl(104 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02065": { - "id": "shape:perf:02065", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 1280, - "rot": 0, - "props": { - "w": 25, - "h": 33, - "fill": "hsl(18 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02066": { - "id": "shape:perf:02066", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 1280, - "rot": 0, - "props": { - "w": 37, - "h": 37, - "fill": "hsl(277 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02067": { - "id": "shape:perf:02067", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 1280, - "rot": 0, - "props": { - "w": 38, - "h": 27, - "fill": "hsl(331 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02068": { - "id": "shape:perf:02068", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 1280, - "rot": 0, - "props": { - "w": 47, - "h": 27, - "fill": "hsl(27 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02069": { - "id": "shape:perf:02069", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 1280, - "rot": 0, - "props": { - "w": 26, - "h": 40, - "fill": "hsl(319 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02070": { - "id": "shape:perf:02070", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 1280, - "rot": 0, - "props": { - "w": 40, - "h": 34, - "fill": "hsl(217 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02071": { - "id": "shape:perf:02071", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 1280, - "rot": 0, - "props": { - "w": 32, - "h": 37, - "fill": "hsl(205 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02072": { - "id": "shape:perf:02072", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 1280, - "rot": 0, - "props": { - "w": 42, - "h": 36, - "fill": "hsl(303 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02073": { - "id": "shape:perf:02073", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 1280, - "rot": 0, - "props": { - "w": 41, - "h": 42, - "fill": "hsl(329 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02074": { - "id": "shape:perf:02074", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 1280, - "rot": 0, - "props": { - "w": 40, - "h": 36, - "fill": "hsl(294 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02075": { - "id": "shape:perf:02075", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 1280, - "rot": 0, - "props": { - "w": 34, - "h": 37, - "fill": "hsl(178 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02076": { - "id": "shape:perf:02076", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 1280, - "rot": 0, - "props": { - "w": 41, - "h": 40, - "fill": "hsl(116 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02077": { - "id": "shape:perf:02077", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 1280, - "rot": 0, - "props": { - "w": 29, - "h": 29, - "fill": "hsl(222 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02078": { - "id": "shape:perf:02078", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 1280, - "rot": 0, - "props": { - "w": 24, - "h": 47, - "fill": "hsl(70 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02079": { - "id": "shape:perf:02079", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 1280, - "rot": 0, - "props": { - "w": 45, - "h": 26, - "fill": "hsl(69 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02080": { - "id": "shape:perf:02080", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 1280, - "rot": 0, - "props": { - "w": 39, - "h": 29, - "fill": "hsl(277 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02081": { - "id": "shape:perf:02081", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 1280, - "rot": 0, - "props": { - "w": 35, - "h": 40, - "fill": "hsl(303 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02082": { - "id": "shape:perf:02082", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 1280, - "rot": 0, - "props": { - "w": 37, - "h": 29, - "fill": "hsl(286 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02083": { - "id": "shape:perf:02083", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 1280, - "rot": 0, - "props": { - "w": 31, - "h": 40, - "fill": "hsl(145 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02084": { - "id": "shape:perf:02084", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 1280, - "rot": 0, - "props": { - "w": 44, - "h": 41, - "fill": "hsl(151 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02085": { - "id": "shape:perf:02085", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 1280, - "rot": 0, - "props": { - "w": 26, - "h": 29, - "fill": "hsl(159 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02086": { - "id": "shape:perf:02086", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 1280, - "rot": 0, - "props": { - "w": 38, - "h": 26, - "fill": "hsl(82 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02087": { - "id": "shape:perf:02087", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 1280, - "rot": 0, - "props": { - "w": 38, - "h": 29, - "fill": "hsl(261 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02088": { - "id": "shape:perf:02088", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 1280, - "rot": 0, - "props": { - "w": 39, - "h": 30, - "fill": "hsl(50 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02089": { - "id": "shape:perf:02089", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 1280, - "rot": 0, - "props": { - "w": 46, - "h": 31, - "fill": "hsl(26 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02090": { - "id": "shape:perf:02090", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 1280, - "rot": 0, - "props": { - "w": 33, - "h": 44, - "fill": "hsl(7 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02091": { - "id": "shape:perf:02091", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 1280, - "rot": 0, - "props": { - "w": 29, - "h": 41, - "fill": "hsl(92 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02092": { - "id": "shape:perf:02092", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 1280, - "rot": 0, - "props": { - "w": 24, - "h": 39, - "fill": "hsl(130 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02093": { - "id": "shape:perf:02093", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 1280, - "rot": 0, - "props": { - "w": 39, - "h": 46, - "fill": "hsl(170 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02094": { - "id": "shape:perf:02094", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 1280, - "rot": 0, - "props": { - "w": 47, - "h": 36, - "fill": "hsl(106 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02095": { - "id": "shape:perf:02095", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 1280, - "rot": 0, - "props": { - "w": 35, - "h": 32, - "fill": "hsl(67 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02096": { - "id": "shape:perf:02096", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 1280, - "rot": 0, - "props": { - "w": 26, - "h": 37, - "fill": "hsl(257 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02097": { - "id": "shape:perf:02097", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 1280, - "rot": 0, - "props": { - "w": 36, - "h": 27, - "fill": "hsl(261 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02098": { - "id": "shape:perf:02098", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 1280, - "rot": 0, - "props": { - "w": 47, - "h": 32, - "fill": "hsl(102 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02099": { - "id": "shape:perf:02099", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 1280, - "rot": 0, - "props": { - "w": 34, - "h": 40, - "fill": "hsl(184 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02100": { - "id": "shape:perf:02100", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 1344, - "rot": 0, - "props": { - "w": 24, - "h": 38, - "fill": "hsl(318 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02101": { - "id": "shape:perf:02101", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 1344, - "rot": 0, - "props": { - "w": 36, - "h": 36, - "fill": "hsl(129 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02102": { - "id": "shape:perf:02102", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 1344, - "rot": 0, - "props": { - "w": 29, - "h": 39, - "fill": "hsl(126 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02103": { - "id": "shape:perf:02103", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 1344, - "rot": 0, - "props": { - "w": 41, - "h": 43, - "fill": "hsl(115 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02104": { - "id": "shape:perf:02104", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 1344, - "rot": 0, - "props": { - "w": 42, - "h": 24, - "fill": "hsl(232 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02105": { - "id": "shape:perf:02105", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 1344, - "rot": 0, - "props": { - "w": 30, - "h": 37, - "fill": "hsl(97 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02106": { - "id": "shape:perf:02106", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 1344, - "rot": 0, - "props": { - "w": 43, - "h": 39, - "fill": "hsl(207 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02107": { - "id": "shape:perf:02107", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 1344, - "rot": 0, - "props": { - "w": 38, - "h": 36, - "fill": "hsl(93 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02108": { - "id": "shape:perf:02108", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 1344, - "rot": 0, - "props": { - "w": 31, - "h": 38, - "fill": "hsl(33 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02109": { - "id": "shape:perf:02109", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 1344, - "rot": 0, - "props": { - "w": 36, - "h": 34, - "fill": "hsl(291 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02110": { - "id": "shape:perf:02110", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 1344, - "rot": 0, - "props": { - "w": 43, - "h": 41, - "fill": "hsl(29 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02111": { - "id": "shape:perf:02111", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 1344, - "rot": 0, - "props": { - "w": 34, - "h": 43, - "fill": "hsl(67 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02112": { - "id": "shape:perf:02112", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 1344, - "rot": 0, - "props": { - "w": 27, - "h": 31, - "fill": "hsl(178 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02113": { - "id": "shape:perf:02113", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 1344, - "rot": 0, - "props": { - "w": 32, - "h": 24, - "fill": "hsl(203 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02114": { - "id": "shape:perf:02114", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 1344, - "rot": 0, - "props": { - "w": 35, - "h": 25, - "fill": "hsl(219 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02115": { - "id": "shape:perf:02115", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 1344, - "rot": 0, - "props": { - "w": 43, - "h": 37, - "fill": "hsl(33 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02116": { - "id": "shape:perf:02116", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 1344, - "rot": 0, - "props": { - "w": 29, - "h": 31, - "fill": "hsl(129 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02117": { - "id": "shape:perf:02117", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 1344, - "rot": 0, - "props": { - "w": 27, - "h": 24, - "fill": "hsl(231 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02118": { - "id": "shape:perf:02118", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 1344, - "rot": 0, - "props": { - "w": 30, - "h": 43, - "fill": "hsl(31 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02119": { - "id": "shape:perf:02119", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 1344, - "rot": 0, - "props": { - "w": 27, - "h": 40, - "fill": "hsl(287 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02120": { - "id": "shape:perf:02120", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 1344, - "rot": 0, - "props": { - "w": 26, - "h": 44, - "fill": "hsl(197 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02121": { - "id": "shape:perf:02121", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 1344, - "rot": 0, - "props": { - "w": 27, - "h": 31, - "fill": "hsl(166 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02122": { - "id": "shape:perf:02122", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 1344, - "rot": 0, - "props": { - "w": 36, - "h": 36, - "fill": "hsl(55 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02123": { - "id": "shape:perf:02123", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 1344, - "rot": 0, - "props": { - "w": 24, - "h": 27, - "fill": "hsl(11 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02124": { - "id": "shape:perf:02124", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 1344, - "rot": 0, - "props": { - "w": 47, - "h": 28, - "fill": "hsl(209 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02125": { - "id": "shape:perf:02125", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 1344, - "rot": 0, - "props": { - "w": 42, - "h": 40, - "fill": "hsl(155 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02126": { - "id": "shape:perf:02126", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 1344, - "rot": 0, - "props": { - "w": 35, - "h": 47, - "fill": "hsl(319 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02127": { - "id": "shape:perf:02127", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 1344, - "rot": 0, - "props": { - "w": 43, - "h": 42, - "fill": "hsl(303 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02128": { - "id": "shape:perf:02128", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 1344, - "rot": 0, - "props": { - "w": 26, - "h": 24, - "fill": "hsl(168 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02129": { - "id": "shape:perf:02129", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 1344, - "rot": 0, - "props": { - "w": 35, - "h": 34, - "fill": "hsl(346 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02130": { - "id": "shape:perf:02130", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 1344, - "rot": 0, - "props": { - "w": 40, - "h": 45, - "fill": "hsl(75 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02131": { - "id": "shape:perf:02131", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 1344, - "rot": 0, - "props": { - "w": 43, - "h": 47, - "fill": "hsl(188 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02132": { - "id": "shape:perf:02132", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 1344, - "rot": 0, - "props": { - "w": 40, - "h": 40, - "fill": "hsl(252 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02133": { - "id": "shape:perf:02133", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 1344, - "rot": 0, - "props": { - "w": 43, - "h": 29, - "fill": "hsl(250 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02134": { - "id": "shape:perf:02134", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 1344, - "rot": 0, - "props": { - "w": 30, - "h": 29, - "fill": "hsl(261 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02135": { - "id": "shape:perf:02135", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 1344, - "rot": 0, - "props": { - "w": 27, - "h": 27, - "fill": "hsl(159 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02136": { - "id": "shape:perf:02136", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 1344, - "rot": 0, - "props": { - "w": 25, - "h": 28, - "fill": "hsl(84 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02137": { - "id": "shape:perf:02137", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 1344, - "rot": 0, - "props": { - "w": 27, - "h": 31, - "fill": "hsl(339 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02138": { - "id": "shape:perf:02138", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 1344, - "rot": 0, - "props": { - "w": 47, - "h": 39, - "fill": "hsl(344 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02139": { - "id": "shape:perf:02139", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 1344, - "rot": 0, - "props": { - "w": 32, - "h": 29, - "fill": "hsl(174 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02140": { - "id": "shape:perf:02140", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 1344, - "rot": 0, - "props": { - "w": 46, - "h": 24, - "fill": "hsl(210 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02141": { - "id": "shape:perf:02141", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 1344, - "rot": 0, - "props": { - "w": 39, - "h": 33, - "fill": "hsl(234 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02142": { - "id": "shape:perf:02142", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 1344, - "rot": 0, - "props": { - "w": 25, - "h": 28, - "fill": "hsl(71 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02143": { - "id": "shape:perf:02143", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 1344, - "rot": 0, - "props": { - "w": 24, - "h": 26, - "fill": "hsl(356 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02144": { - "id": "shape:perf:02144", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 1344, - "rot": 0, - "props": { - "w": 30, - "h": 44, - "fill": "hsl(147 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02145": { - "id": "shape:perf:02145", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 1344, - "rot": 0, - "props": { - "w": 31, - "h": 32, - "fill": "hsl(159 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02146": { - "id": "shape:perf:02146", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 1344, - "rot": 0, - "props": { - "w": 43, - "h": 30, - "fill": "hsl(193 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02147": { - "id": "shape:perf:02147", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 1344, - "rot": 0, - "props": { - "w": 29, - "h": 35, - "fill": "hsl(149 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02148": { - "id": "shape:perf:02148", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 1344, - "rot": 0, - "props": { - "w": 29, - "h": 47, - "fill": "hsl(61 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02149": { - "id": "shape:perf:02149", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 1344, - "rot": 0, - "props": { - "w": 26, - "h": 45, - "fill": "hsl(189 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02150": { - "id": "shape:perf:02150", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 1344, - "rot": 0, - "props": { - "w": 25, - "h": 46, - "fill": "hsl(244 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02151": { - "id": "shape:perf:02151", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 1344, - "rot": 0, - "props": { - "w": 45, - "h": 40, - "fill": "hsl(19 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02152": { - "id": "shape:perf:02152", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 1344, - "rot": 0, - "props": { - "w": 28, - "h": 26, - "fill": "hsl(259 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02153": { - "id": "shape:perf:02153", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 1344, - "rot": 0, - "props": { - "w": 42, - "h": 45, - "fill": "hsl(184 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02154": { - "id": "shape:perf:02154", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 1344, - "rot": 0, - "props": { - "w": 42, - "h": 40, - "fill": "hsl(236 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02155": { - "id": "shape:perf:02155", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 1344, - "rot": 0, - "props": { - "w": 30, - "h": 36, - "fill": "hsl(213 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02156": { - "id": "shape:perf:02156", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 1344, - "rot": 0, - "props": { - "w": 35, - "h": 39, - "fill": "hsl(350 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02157": { - "id": "shape:perf:02157", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 1344, - "rot": 0, - "props": { - "w": 36, - "h": 44, - "fill": "hsl(164 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02158": { - "id": "shape:perf:02158", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 1344, - "rot": 0, - "props": { - "w": 45, - "h": 43, - "fill": "hsl(208 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02159": { - "id": "shape:perf:02159", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 1344, - "rot": 0, - "props": { - "w": 27, - "h": 40, - "fill": "hsl(117 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02160": { - "id": "shape:perf:02160", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 1344, - "rot": 0, - "props": { - "w": 40, - "h": 39, - "fill": "hsl(340 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02161": { - "id": "shape:perf:02161", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 1344, - "rot": 0, - "props": { - "w": 44, - "h": 33, - "fill": "hsl(228 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02162": { - "id": "shape:perf:02162", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 1344, - "rot": 0, - "props": { - "w": 24, - "h": 29, - "fill": "hsl(351 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02163": { - "id": "shape:perf:02163", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 1344, - "rot": 0, - "props": { - "w": 40, - "h": 45, - "fill": "hsl(104 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02164": { - "id": "shape:perf:02164", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 1344, - "rot": 0, - "props": { - "w": 46, - "h": 27, - "fill": "hsl(311 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02165": { - "id": "shape:perf:02165", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 1344, - "rot": 0, - "props": { - "w": 26, - "h": 46, - "fill": "hsl(329 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02166": { - "id": "shape:perf:02166", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 1344, - "rot": 0, - "props": { - "w": 26, - "h": 31, - "fill": "hsl(144 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02167": { - "id": "shape:perf:02167", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 1344, - "rot": 0, - "props": { - "w": 42, - "h": 40, - "fill": "hsl(235 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02168": { - "id": "shape:perf:02168", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 1344, - "rot": 0, - "props": { - "w": 35, - "h": 35, - "fill": "hsl(39 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02169": { - "id": "shape:perf:02169", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 1344, - "rot": 0, - "props": { - "w": 43, - "h": 30, - "fill": "hsl(246 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02170": { - "id": "shape:perf:02170", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 1344, - "rot": 0, - "props": { - "w": 26, - "h": 26, - "fill": "hsl(122 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02171": { - "id": "shape:perf:02171", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 1344, - "rot": 0, - "props": { - "w": 26, - "h": 30, - "fill": "hsl(35 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02172": { - "id": "shape:perf:02172", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 1344, - "rot": 0, - "props": { - "w": 31, - "h": 43, - "fill": "hsl(66 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02173": { - "id": "shape:perf:02173", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 1344, - "rot": 0, - "props": { - "w": 35, - "h": 45, - "fill": "hsl(259 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02174": { - "id": "shape:perf:02174", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 1344, - "rot": 0, - "props": { - "w": 33, - "h": 28, - "fill": "hsl(222 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02175": { - "id": "shape:perf:02175", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 1344, - "rot": 0, - "props": { - "w": 45, - "h": 44, - "fill": "hsl(39 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02176": { - "id": "shape:perf:02176", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 1344, - "rot": 0, - "props": { - "w": 26, - "h": 26, - "fill": "hsl(1 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02177": { - "id": "shape:perf:02177", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 1344, - "rot": 0, - "props": { - "w": 36, - "h": 45, - "fill": "hsl(171 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02178": { - "id": "shape:perf:02178", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 1344, - "rot": 0, - "props": { - "w": 42, - "h": 30, - "fill": "hsl(287 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02179": { - "id": "shape:perf:02179", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 1344, - "rot": 0, - "props": { - "w": 41, - "h": 40, - "fill": "hsl(100 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02180": { - "id": "shape:perf:02180", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 1344, - "rot": 0, - "props": { - "w": 31, - "h": 45, - "fill": "hsl(58 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02181": { - "id": "shape:perf:02181", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 1344, - "rot": 0, - "props": { - "w": 46, - "h": 28, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02182": { - "id": "shape:perf:02182", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 1344, - "rot": 0, - "props": { - "w": 46, - "h": 35, - "fill": "hsl(124 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02183": { - "id": "shape:perf:02183", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 1344, - "rot": 0, - "props": { - "w": 36, - "h": 38, - "fill": "hsl(54 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02184": { - "id": "shape:perf:02184", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 1344, - "rot": 0, - "props": { - "w": 24, - "h": 29, - "fill": "hsl(3 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02185": { - "id": "shape:perf:02185", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 1344, - "rot": 0, - "props": { - "w": 31, - "h": 28, - "fill": "hsl(308 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02186": { - "id": "shape:perf:02186", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 1344, - "rot": 0, - "props": { - "w": 32, - "h": 29, - "fill": "hsl(161 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02187": { - "id": "shape:perf:02187", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 1344, - "rot": 0, - "props": { - "w": 32, - "h": 38, - "fill": "hsl(68 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02188": { - "id": "shape:perf:02188", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 1344, - "rot": 0, - "props": { - "w": 33, - "h": 43, - "fill": "hsl(234 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02189": { - "id": "shape:perf:02189", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 1344, - "rot": 0, - "props": { - "w": 27, - "h": 47, - "fill": "hsl(137 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02190": { - "id": "shape:perf:02190", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 1344, - "rot": 0, - "props": { - "w": 27, - "h": 36, - "fill": "hsl(308 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02191": { - "id": "shape:perf:02191", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 1344, - "rot": 0, - "props": { - "w": 25, - "h": 44, - "fill": "hsl(299 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02192": { - "id": "shape:perf:02192", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 1344, - "rot": 0, - "props": { - "w": 47, - "h": 25, - "fill": "hsl(86 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02193": { - "id": "shape:perf:02193", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 1344, - "rot": 0, - "props": { - "w": 39, - "h": 45, - "fill": "hsl(136 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02194": { - "id": "shape:perf:02194", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 1344, - "rot": 0, - "props": { - "w": 32, - "h": 44, - "fill": "hsl(33 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02195": { - "id": "shape:perf:02195", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 1344, - "rot": 0, - "props": { - "w": 47, - "h": 36, - "fill": "hsl(285 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02196": { - "id": "shape:perf:02196", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 1344, - "rot": 0, - "props": { - "w": 25, - "h": 25, - "fill": "hsl(58 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02197": { - "id": "shape:perf:02197", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 1344, - "rot": 0, - "props": { - "w": 37, - "h": 36, - "fill": "hsl(195 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02198": { - "id": "shape:perf:02198", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 1344, - "rot": 0, - "props": { - "w": 39, - "h": 29, - "fill": "hsl(317 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02199": { - "id": "shape:perf:02199", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 1344, - "rot": 0, - "props": { - "w": 34, - "h": 37, - "fill": "hsl(20 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02200": { - "id": "shape:perf:02200", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 1408, - "rot": 0, - "props": { - "w": 47, - "h": 33, - "fill": "hsl(353 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02201": { - "id": "shape:perf:02201", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 1408, - "rot": 0, - "props": { - "w": 27, - "h": 25, - "fill": "hsl(184 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02202": { - "id": "shape:perf:02202", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 1408, - "rot": 0, - "props": { - "w": 33, - "h": 36, - "fill": "hsl(252 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02203": { - "id": "shape:perf:02203", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 1408, - "rot": 0, - "props": { - "w": 40, - "h": 47, - "fill": "hsl(67 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02204": { - "id": "shape:perf:02204", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 1408, - "rot": 0, - "props": { - "w": 24, - "h": 35, - "fill": "hsl(85 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02205": { - "id": "shape:perf:02205", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 1408, - "rot": 0, - "props": { - "w": 29, - "h": 44, - "fill": "hsl(223 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02206": { - "id": "shape:perf:02206", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 1408, - "rot": 0, - "props": { - "w": 39, - "h": 31, - "fill": "hsl(264 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02207": { - "id": "shape:perf:02207", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 1408, - "rot": 0, - "props": { - "w": 36, - "h": 31, - "fill": "hsl(334 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02208": { - "id": "shape:perf:02208", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 1408, - "rot": 0, - "props": { - "w": 31, - "h": 40, - "fill": "hsl(171 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02209": { - "id": "shape:perf:02209", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 1408, - "rot": 0, - "props": { - "w": 32, - "h": 44, - "fill": "hsl(157 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02210": { - "id": "shape:perf:02210", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 1408, - "rot": 0, - "props": { - "w": 32, - "h": 25, - "fill": "hsl(250 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02211": { - "id": "shape:perf:02211", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 1408, - "rot": 0, - "props": { - "w": 34, - "h": 38, - "fill": "hsl(83 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02212": { - "id": "shape:perf:02212", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 1408, - "rot": 0, - "props": { - "w": 27, - "h": 36, - "fill": "hsl(39 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02213": { - "id": "shape:perf:02213", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 1408, - "rot": 0, - "props": { - "w": 33, - "h": 40, - "fill": "hsl(342 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02214": { - "id": "shape:perf:02214", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 1408, - "rot": 0, - "props": { - "w": 33, - "h": 36, - "fill": "hsl(90 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02215": { - "id": "shape:perf:02215", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 1408, - "rot": 0, - "props": { - "w": 36, - "h": 41, - "fill": "hsl(51 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02216": { - "id": "shape:perf:02216", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 1408, - "rot": 0, - "props": { - "w": 42, - "h": 35, - "fill": "hsl(350 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02217": { - "id": "shape:perf:02217", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 1408, - "rot": 0, - "props": { - "w": 42, - "h": 41, - "fill": "hsl(142 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02218": { - "id": "shape:perf:02218", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 1408, - "rot": 0, - "props": { - "w": 25, - "h": 42, - "fill": "hsl(14 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02219": { - "id": "shape:perf:02219", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 1408, - "rot": 0, - "props": { - "w": 28, - "h": 41, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02220": { - "id": "shape:perf:02220", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 1408, - "rot": 0, - "props": { - "w": 35, - "h": 35, - "fill": "hsl(246 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02221": { - "id": "shape:perf:02221", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 1408, - "rot": 0, - "props": { - "w": 32, - "h": 41, - "fill": "hsl(22 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02222": { - "id": "shape:perf:02222", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 1408, - "rot": 0, - "props": { - "w": 34, - "h": 28, - "fill": "hsl(189 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02223": { - "id": "shape:perf:02223", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 1408, - "rot": 0, - "props": { - "w": 35, - "h": 38, - "fill": "hsl(159 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02224": { - "id": "shape:perf:02224", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 1408, - "rot": 0, - "props": { - "w": 39, - "h": 37, - "fill": "hsl(51 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02225": { - "id": "shape:perf:02225", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 1408, - "rot": 0, - "props": { - "w": 25, - "h": 43, - "fill": "hsl(216 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02226": { - "id": "shape:perf:02226", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 1408, - "rot": 0, - "props": { - "w": 24, - "h": 37, - "fill": "hsl(51 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02227": { - "id": "shape:perf:02227", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 1408, - "rot": 0, - "props": { - "w": 38, - "h": 28, - "fill": "hsl(234 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02228": { - "id": "shape:perf:02228", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 1408, - "rot": 0, - "props": { - "w": 40, - "h": 41, - "fill": "hsl(302 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02229": { - "id": "shape:perf:02229", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 1408, - "rot": 0, - "props": { - "w": 27, - "h": 31, - "fill": "hsl(226 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02230": { - "id": "shape:perf:02230", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 1408, - "rot": 0, - "props": { - "w": 38, - "h": 33, - "fill": "hsl(177 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02231": { - "id": "shape:perf:02231", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 1408, - "rot": 0, - "props": { - "w": 41, - "h": 42, - "fill": "hsl(54 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02232": { - "id": "shape:perf:02232", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 1408, - "rot": 0, - "props": { - "w": 38, - "h": 34, - "fill": "hsl(273 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02233": { - "id": "shape:perf:02233", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 1408, - "rot": 0, - "props": { - "w": 44, - "h": 37, - "fill": "hsl(255 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02234": { - "id": "shape:perf:02234", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 1408, - "rot": 0, - "props": { - "w": 39, - "h": 30, - "fill": "hsl(207 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02235": { - "id": "shape:perf:02235", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 1408, - "rot": 0, - "props": { - "w": 36, - "h": 33, - "fill": "hsl(346 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02236": { - "id": "shape:perf:02236", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 1408, - "rot": 0, - "props": { - "w": 33, - "h": 33, - "fill": "hsl(13 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02237": { - "id": "shape:perf:02237", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 1408, - "rot": 0, - "props": { - "w": 37, - "h": 27, - "fill": "hsl(345 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02238": { - "id": "shape:perf:02238", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 1408, - "rot": 0, - "props": { - "w": 43, - "h": 39, - "fill": "hsl(99 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02239": { - "id": "shape:perf:02239", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 1408, - "rot": 0, - "props": { - "w": 39, - "h": 30, - "fill": "hsl(263 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02240": { - "id": "shape:perf:02240", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 1408, - "rot": 0, - "props": { - "w": 25, - "h": 45, - "fill": "hsl(259 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02241": { - "id": "shape:perf:02241", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 1408, - "rot": 0, - "props": { - "w": 31, - "h": 27, - "fill": "hsl(311 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02242": { - "id": "shape:perf:02242", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 1408, - "rot": 0, - "props": { - "w": 40, - "h": 46, - "fill": "hsl(216 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02243": { - "id": "shape:perf:02243", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 1408, - "rot": 0, - "props": { - "w": 39, - "h": 45, - "fill": "hsl(167 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02244": { - "id": "shape:perf:02244", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 1408, - "rot": 0, - "props": { - "w": 42, - "h": 37, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02245": { - "id": "shape:perf:02245", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 1408, - "rot": 0, - "props": { - "w": 29, - "h": 43, - "fill": "hsl(30 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02246": { - "id": "shape:perf:02246", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 1408, - "rot": 0, - "props": { - "w": 41, - "h": 33, - "fill": "hsl(140 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02247": { - "id": "shape:perf:02247", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 1408, - "rot": 0, - "props": { - "w": 27, - "h": 32, - "fill": "hsl(168 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02248": { - "id": "shape:perf:02248", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 1408, - "rot": 0, - "props": { - "w": 42, - "h": 27, - "fill": "hsl(134 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02249": { - "id": "shape:perf:02249", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 1408, - "rot": 0, - "props": { - "w": 47, - "h": 31, - "fill": "hsl(105 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02250": { - "id": "shape:perf:02250", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 1408, - "rot": 0, - "props": { - "w": 27, - "h": 46, - "fill": "hsl(184 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02251": { - "id": "shape:perf:02251", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 1408, - "rot": 0, - "props": { - "w": 26, - "h": 26, - "fill": "hsl(85 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02252": { - "id": "shape:perf:02252", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 1408, - "rot": 0, - "props": { - "w": 30, - "h": 25, - "fill": "hsl(33 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02253": { - "id": "shape:perf:02253", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 1408, - "rot": 0, - "props": { - "w": 29, - "h": 45, - "fill": "hsl(134 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02254": { - "id": "shape:perf:02254", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 1408, - "rot": 0, - "props": { - "w": 26, - "h": 38, - "fill": "hsl(264 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02255": { - "id": "shape:perf:02255", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 1408, - "rot": 0, - "props": { - "w": 35, - "h": 37, - "fill": "hsl(50 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02256": { - "id": "shape:perf:02256", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 1408, - "rot": 0, - "props": { - "w": 47, - "h": 43, - "fill": "hsl(57 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02257": { - "id": "shape:perf:02257", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 1408, - "rot": 0, - "props": { - "w": 32, - "h": 39, - "fill": "hsl(167 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02258": { - "id": "shape:perf:02258", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 1408, - "rot": 0, - "props": { - "w": 30, - "h": 38, - "fill": "hsl(286 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02259": { - "id": "shape:perf:02259", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 1408, - "rot": 0, - "props": { - "w": 37, - "h": 32, - "fill": "hsl(44 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02260": { - "id": "shape:perf:02260", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 1408, - "rot": 0, - "props": { - "w": 40, - "h": 42, - "fill": "hsl(215 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02261": { - "id": "shape:perf:02261", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 1408, - "rot": 0, - "props": { - "w": 40, - "h": 30, - "fill": "hsl(264 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02262": { - "id": "shape:perf:02262", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 1408, - "rot": 0, - "props": { - "w": 32, - "h": 34, - "fill": "hsl(143 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02263": { - "id": "shape:perf:02263", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 1408, - "rot": 0, - "props": { - "w": 25, - "h": 33, - "fill": "hsl(295 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02264": { - "id": "shape:perf:02264", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 1408, - "rot": 0, - "props": { - "w": 33, - "h": 29, - "fill": "hsl(200 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02265": { - "id": "shape:perf:02265", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 1408, - "rot": 0, - "props": { - "w": 29, - "h": 25, - "fill": "hsl(296 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02266": { - "id": "shape:perf:02266", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 1408, - "rot": 0, - "props": { - "w": 24, - "h": 39, - "fill": "hsl(32 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02267": { - "id": "shape:perf:02267", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 1408, - "rot": 0, - "props": { - "w": 34, - "h": 29, - "fill": "hsl(281 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02268": { - "id": "shape:perf:02268", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 1408, - "rot": 0, - "props": { - "w": 41, - "h": 39, - "fill": "hsl(299 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02269": { - "id": "shape:perf:02269", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 1408, - "rot": 0, - "props": { - "w": 37, - "h": 44, - "fill": "hsl(132 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02270": { - "id": "shape:perf:02270", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 1408, - "rot": 0, - "props": { - "w": 27, - "h": 25, - "fill": "hsl(106 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02271": { - "id": "shape:perf:02271", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 1408, - "rot": 0, - "props": { - "w": 30, - "h": 43, - "fill": "hsl(249 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02272": { - "id": "shape:perf:02272", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 1408, - "rot": 0, - "props": { - "w": 28, - "h": 33, - "fill": "hsl(122 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02273": { - "id": "shape:perf:02273", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 1408, - "rot": 0, - "props": { - "w": 47, - "h": 35, - "fill": "hsl(21 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02274": { - "id": "shape:perf:02274", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 1408, - "rot": 0, - "props": { - "w": 41, - "h": 36, - "fill": "hsl(348 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02275": { - "id": "shape:perf:02275", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 1408, - "rot": 0, - "props": { - "w": 35, - "h": 33, - "fill": "hsl(290 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02276": { - "id": "shape:perf:02276", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 1408, - "rot": 0, - "props": { - "w": 37, - "h": 24, - "fill": "hsl(68 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02277": { - "id": "shape:perf:02277", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 1408, - "rot": 0, - "props": { - "w": 45, - "h": 35, - "fill": "hsl(31 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02278": { - "id": "shape:perf:02278", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 1408, - "rot": 0, - "props": { - "w": 44, - "h": 34, - "fill": "hsl(212 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02279": { - "id": "shape:perf:02279", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 1408, - "rot": 0, - "props": { - "w": 32, - "h": 41, - "fill": "hsl(345 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02280": { - "id": "shape:perf:02280", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 1408, - "rot": 0, - "props": { - "w": 34, - "h": 36, - "fill": "hsl(63 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02281": { - "id": "shape:perf:02281", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 1408, - "rot": 0, - "props": { - "w": 28, - "h": 28, - "fill": "hsl(353 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02282": { - "id": "shape:perf:02282", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 1408, - "rot": 0, - "props": { - "w": 30, - "h": 28, - "fill": "hsl(189 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02283": { - "id": "shape:perf:02283", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 1408, - "rot": 0, - "props": { - "w": 25, - "h": 37, - "fill": "hsl(323 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02284": { - "id": "shape:perf:02284", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 1408, - "rot": 0, - "props": { - "w": 27, - "h": 43, - "fill": "hsl(307 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02285": { - "id": "shape:perf:02285", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 1408, - "rot": 0, - "props": { - "w": 31, - "h": 28, - "fill": "hsl(70 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02286": { - "id": "shape:perf:02286", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 1408, - "rot": 0, - "props": { - "w": 42, - "h": 25, - "fill": "hsl(339 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02287": { - "id": "shape:perf:02287", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 1408, - "rot": 0, - "props": { - "w": 35, - "h": 45, - "fill": "hsl(283 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02288": { - "id": "shape:perf:02288", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 1408, - "rot": 0, - "props": { - "w": 42, - "h": 25, - "fill": "hsl(177 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02289": { - "id": "shape:perf:02289", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 1408, - "rot": 0, - "props": { - "w": 24, - "h": 46, - "fill": "hsl(328 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02290": { - "id": "shape:perf:02290", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 1408, - "rot": 0, - "props": { - "w": 32, - "h": 39, - "fill": "hsl(285 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02291": { - "id": "shape:perf:02291", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 1408, - "rot": 0, - "props": { - "w": 42, - "h": 41, - "fill": "hsl(39 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02292": { - "id": "shape:perf:02292", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 1408, - "rot": 0, - "props": { - "w": 33, - "h": 25, - "fill": "hsl(209 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02293": { - "id": "shape:perf:02293", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 1408, - "rot": 0, - "props": { - "w": 25, - "h": 44, - "fill": "hsl(336 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02294": { - "id": "shape:perf:02294", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 1408, - "rot": 0, - "props": { - "w": 45, - "h": 25, - "fill": "hsl(210 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02295": { - "id": "shape:perf:02295", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 1408, - "rot": 0, - "props": { - "w": 37, - "h": 32, - "fill": "hsl(124 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02296": { - "id": "shape:perf:02296", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 1408, - "rot": 0, - "props": { - "w": 37, - "h": 29, - "fill": "hsl(247 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02297": { - "id": "shape:perf:02297", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 1408, - "rot": 0, - "props": { - "w": 28, - "h": 27, - "fill": "hsl(239 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02298": { - "id": "shape:perf:02298", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 1408, - "rot": 0, - "props": { - "w": 27, - "h": 42, - "fill": "hsl(340 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02299": { - "id": "shape:perf:02299", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 1408, - "rot": 0, - "props": { - "w": 45, - "h": 46, - "fill": "hsl(52 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02300": { - "id": "shape:perf:02300", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 1472, - "rot": 0, - "props": { - "w": 47, - "h": 24, - "fill": "hsl(295 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02301": { - "id": "shape:perf:02301", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 1472, - "rot": 0, - "props": { - "w": 37, - "h": 25, - "fill": "hsl(175 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02302": { - "id": "shape:perf:02302", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 1472, - "rot": 0, - "props": { - "w": 26, - "h": 24, - "fill": "hsl(63 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02303": { - "id": "shape:perf:02303", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 1472, - "rot": 0, - "props": { - "w": 40, - "h": 39, - "fill": "hsl(315 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02304": { - "id": "shape:perf:02304", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 1472, - "rot": 0, - "props": { - "w": 25, - "h": 35, - "fill": "hsl(231 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02305": { - "id": "shape:perf:02305", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 1472, - "rot": 0, - "props": { - "w": 28, - "h": 36, - "fill": "hsl(32 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02306": { - "id": "shape:perf:02306", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 1472, - "rot": 0, - "props": { - "w": 32, - "h": 45, - "fill": "hsl(119 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02307": { - "id": "shape:perf:02307", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 1472, - "rot": 0, - "props": { - "w": 28, - "h": 28, - "fill": "hsl(262 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02308": { - "id": "shape:perf:02308", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 1472, - "rot": 0, - "props": { - "w": 27, - "h": 25, - "fill": "hsl(45 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02309": { - "id": "shape:perf:02309", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 1472, - "rot": 0, - "props": { - "w": 47, - "h": 31, - "fill": "hsl(195 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02310": { - "id": "shape:perf:02310", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 1472, - "rot": 0, - "props": { - "w": 37, - "h": 29, - "fill": "hsl(179 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02311": { - "id": "shape:perf:02311", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 1472, - "rot": 0, - "props": { - "w": 24, - "h": 47, - "fill": "hsl(303 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02312": { - "id": "shape:perf:02312", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 1472, - "rot": 0, - "props": { - "w": 28, - "h": 47, - "fill": "hsl(197 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02313": { - "id": "shape:perf:02313", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 1472, - "rot": 0, - "props": { - "w": 33, - "h": 41, - "fill": "hsl(56 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02314": { - "id": "shape:perf:02314", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 1472, - "rot": 0, - "props": { - "w": 35, - "h": 44, - "fill": "hsl(115 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02315": { - "id": "shape:perf:02315", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 1472, - "rot": 0, - "props": { - "w": 34, - "h": 38, - "fill": "hsl(11 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02316": { - "id": "shape:perf:02316", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 1472, - "rot": 0, - "props": { - "w": 31, - "h": 40, - "fill": "hsl(321 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02317": { - "id": "shape:perf:02317", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 1472, - "rot": 0, - "props": { - "w": 33, - "h": 38, - "fill": "hsl(156 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02318": { - "id": "shape:perf:02318", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 1472, - "rot": 0, - "props": { - "w": 28, - "h": 39, - "fill": "hsl(342 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02319": { - "id": "shape:perf:02319", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 1472, - "rot": 0, - "props": { - "w": 26, - "h": 30, - "fill": "hsl(53 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02320": { - "id": "shape:perf:02320", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 1472, - "rot": 0, - "props": { - "w": 35, - "h": 25, - "fill": "hsl(16 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02321": { - "id": "shape:perf:02321", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 1472, - "rot": 0, - "props": { - "w": 40, - "h": 45, - "fill": "hsl(230 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02322": { - "id": "shape:perf:02322", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 1472, - "rot": 0, - "props": { - "w": 32, - "h": 40, - "fill": "hsl(343 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02323": { - "id": "shape:perf:02323", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 1472, - "rot": 0, - "props": { - "w": 29, - "h": 29, - "fill": "hsl(55 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02324": { - "id": "shape:perf:02324", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 1472, - "rot": 0, - "props": { - "w": 34, - "h": 39, - "fill": "hsl(142 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02325": { - "id": "shape:perf:02325", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 1472, - "rot": 0, - "props": { - "w": 43, - "h": 29, - "fill": "hsl(297 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02326": { - "id": "shape:perf:02326", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 1472, - "rot": 0, - "props": { - "w": 25, - "h": 26, - "fill": "hsl(312 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02327": { - "id": "shape:perf:02327", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 1472, - "rot": 0, - "props": { - "w": 27, - "h": 36, - "fill": "hsl(142 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02328": { - "id": "shape:perf:02328", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 1472, - "rot": 0, - "props": { - "w": 32, - "h": 26, - "fill": "hsl(242 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02329": { - "id": "shape:perf:02329", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 1472, - "rot": 0, - "props": { - "w": 30, - "h": 40, - "fill": "hsl(115 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02330": { - "id": "shape:perf:02330", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 1472, - "rot": 0, - "props": { - "w": 27, - "h": 41, - "fill": "hsl(149 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02331": { - "id": "shape:perf:02331", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 1472, - "rot": 0, - "props": { - "w": 44, - "h": 40, - "fill": "hsl(249 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02332": { - "id": "shape:perf:02332", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 1472, - "rot": 0, - "props": { - "w": 25, - "h": 29, - "fill": "hsl(57 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02333": { - "id": "shape:perf:02333", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 1472, - "rot": 0, - "props": { - "w": 35, - "h": 46, - "fill": "hsl(352 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02334": { - "id": "shape:perf:02334", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 1472, - "rot": 0, - "props": { - "w": 31, - "h": 37, - "fill": "hsl(225 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02335": { - "id": "shape:perf:02335", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 1472, - "rot": 0, - "props": { - "w": 34, - "h": 43, - "fill": "hsl(82 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02336": { - "id": "shape:perf:02336", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 1472, - "rot": 0, - "props": { - "w": 38, - "h": 45, - "fill": "hsl(227 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02337": { - "id": "shape:perf:02337", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 1472, - "rot": 0, - "props": { - "w": 44, - "h": 40, - "fill": "hsl(283 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02338": { - "id": "shape:perf:02338", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 1472, - "rot": 0, - "props": { - "w": 37, - "h": 37, - "fill": "hsl(107 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02339": { - "id": "shape:perf:02339", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 1472, - "rot": 0, - "props": { - "w": 25, - "h": 35, - "fill": "hsl(124 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02340": { - "id": "shape:perf:02340", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 1472, - "rot": 0, - "props": { - "w": 38, - "h": 29, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02341": { - "id": "shape:perf:02341", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 1472, - "rot": 0, - "props": { - "w": 41, - "h": 33, - "fill": "hsl(199 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02342": { - "id": "shape:perf:02342", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 1472, - "rot": 0, - "props": { - "w": 26, - "h": 34, - "fill": "hsl(214 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02343": { - "id": "shape:perf:02343", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 1472, - "rot": 0, - "props": { - "w": 38, - "h": 31, - "fill": "hsl(262 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02344": { - "id": "shape:perf:02344", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 1472, - "rot": 0, - "props": { - "w": 38, - "h": 42, - "fill": "hsl(309 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02345": { - "id": "shape:perf:02345", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 1472, - "rot": 0, - "props": { - "w": 31, - "h": 44, - "fill": "hsl(281 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02346": { - "id": "shape:perf:02346", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 1472, - "rot": 0, - "props": { - "w": 34, - "h": 29, - "fill": "hsl(256 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02347": { - "id": "shape:perf:02347", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 1472, - "rot": 0, - "props": { - "w": 28, - "h": 36, - "fill": "hsl(214 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02348": { - "id": "shape:perf:02348", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 1472, - "rot": 0, - "props": { - "w": 43, - "h": 34, - "fill": "hsl(32 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02349": { - "id": "shape:perf:02349", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 1472, - "rot": 0, - "props": { - "w": 43, - "h": 25, - "fill": "hsl(1 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02350": { - "id": "shape:perf:02350", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 1472, - "rot": 0, - "props": { - "w": 33, - "h": 47, - "fill": "hsl(317 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02351": { - "id": "shape:perf:02351", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 1472, - "rot": 0, - "props": { - "w": 31, - "h": 40, - "fill": "hsl(311 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02352": { - "id": "shape:perf:02352", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 1472, - "rot": 0, - "props": { - "w": 25, - "h": 26, - "fill": "hsl(154 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02353": { - "id": "shape:perf:02353", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 1472, - "rot": 0, - "props": { - "w": 47, - "h": 37, - "fill": "hsl(41 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02354": { - "id": "shape:perf:02354", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 1472, - "rot": 0, - "props": { - "w": 35, - "h": 26, - "fill": "hsl(65 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02355": { - "id": "shape:perf:02355", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 1472, - "rot": 0, - "props": { - "w": 46, - "h": 46, - "fill": "hsl(157 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02356": { - "id": "shape:perf:02356", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 1472, - "rot": 0, - "props": { - "w": 39, - "h": 47, - "fill": "hsl(36 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02357": { - "id": "shape:perf:02357", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 1472, - "rot": 0, - "props": { - "w": 37, - "h": 24, - "fill": "hsl(186 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02358": { - "id": "shape:perf:02358", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 1472, - "rot": 0, - "props": { - "w": 31, - "h": 38, - "fill": "hsl(319 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02359": { - "id": "shape:perf:02359", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 1472, - "rot": 0, - "props": { - "w": 35, - "h": 43, - "fill": "hsl(9 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02360": { - "id": "shape:perf:02360", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 1472, - "rot": 0, - "props": { - "w": 25, - "h": 32, - "fill": "hsl(85 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02361": { - "id": "shape:perf:02361", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 1472, - "rot": 0, - "props": { - "w": 40, - "h": 46, - "fill": "hsl(46 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02362": { - "id": "shape:perf:02362", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 1472, - "rot": 0, - "props": { - "w": 37, - "h": 34, - "fill": "hsl(129 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02363": { - "id": "shape:perf:02363", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 1472, - "rot": 0, - "props": { - "w": 40, - "h": 30, - "fill": "hsl(73 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02364": { - "id": "shape:perf:02364", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 1472, - "rot": 0, - "props": { - "w": 40, - "h": 38, - "fill": "hsl(344 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02365": { - "id": "shape:perf:02365", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 1472, - "rot": 0, - "props": { - "w": 34, - "h": 42, - "fill": "hsl(186 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02366": { - "id": "shape:perf:02366", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 1472, - "rot": 0, - "props": { - "w": 37, - "h": 34, - "fill": "hsl(245 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02367": { - "id": "shape:perf:02367", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 1472, - "rot": 0, - "props": { - "w": 31, - "h": 45, - "fill": "hsl(216 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02368": { - "id": "shape:perf:02368", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 1472, - "rot": 0, - "props": { - "w": 34, - "h": 46, - "fill": "hsl(7 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02369": { - "id": "shape:perf:02369", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 1472, - "rot": 0, - "props": { - "w": 46, - "h": 28, - "fill": "hsl(270 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02370": { - "id": "shape:perf:02370", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 1472, - "rot": 0, - "props": { - "w": 27, - "h": 33, - "fill": "hsl(201 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02371": { - "id": "shape:perf:02371", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 1472, - "rot": 0, - "props": { - "w": 31, - "h": 41, - "fill": "hsl(147 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02372": { - "id": "shape:perf:02372", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 1472, - "rot": 0, - "props": { - "w": 29, - "h": 30, - "fill": "hsl(249 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02373": { - "id": "shape:perf:02373", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 1472, - "rot": 0, - "props": { - "w": 34, - "h": 36, - "fill": "hsl(265 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02374": { - "id": "shape:perf:02374", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 1472, - "rot": 0, - "props": { - "w": 38, - "h": 46, - "fill": "hsl(68 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02375": { - "id": "shape:perf:02375", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 1472, - "rot": 0, - "props": { - "w": 35, - "h": 43, - "fill": "hsl(224 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02376": { - "id": "shape:perf:02376", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 1472, - "rot": 0, - "props": { - "w": 30, - "h": 31, - "fill": "hsl(247 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02377": { - "id": "shape:perf:02377", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 1472, - "rot": 0, - "props": { - "w": 27, - "h": 39, - "fill": "hsl(30 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02378": { - "id": "shape:perf:02378", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 1472, - "rot": 0, - "props": { - "w": 26, - "h": 34, - "fill": "hsl(35 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02379": { - "id": "shape:perf:02379", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 1472, - "rot": 0, - "props": { - "w": 42, - "h": 28, - "fill": "hsl(247 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02380": { - "id": "shape:perf:02380", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 1472, - "rot": 0, - "props": { - "w": 34, - "h": 39, - "fill": "hsl(101 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02381": { - "id": "shape:perf:02381", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 1472, - "rot": 0, - "props": { - "w": 27, - "h": 38, - "fill": "hsl(302 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02382": { - "id": "shape:perf:02382", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 1472, - "rot": 0, - "props": { - "w": 36, - "h": 33, - "fill": "hsl(67 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02383": { - "id": "shape:perf:02383", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 1472, - "rot": 0, - "props": { - "w": 30, - "h": 40, - "fill": "hsl(172 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02384": { - "id": "shape:perf:02384", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 1472, - "rot": 0, - "props": { - "w": 27, - "h": 47, - "fill": "hsl(344 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02385": { - "id": "shape:perf:02385", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 1472, - "rot": 0, - "props": { - "w": 44, - "h": 46, - "fill": "hsl(204 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02386": { - "id": "shape:perf:02386", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 1472, - "rot": 0, - "props": { - "w": 42, - "h": 42, - "fill": "hsl(162 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02387": { - "id": "shape:perf:02387", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 1472, - "rot": 0, - "props": { - "w": 47, - "h": 28, - "fill": "hsl(281 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02388": { - "id": "shape:perf:02388", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 1472, - "rot": 0, - "props": { - "w": 32, - "h": 39, - "fill": "hsl(72 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02389": { - "id": "shape:perf:02389", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 1472, - "rot": 0, - "props": { - "w": 40, - "h": 37, - "fill": "hsl(227 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02390": { - "id": "shape:perf:02390", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 1472, - "rot": 0, - "props": { - "w": 43, - "h": 40, - "fill": "hsl(43 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02391": { - "id": "shape:perf:02391", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 1472, - "rot": 0, - "props": { - "w": 24, - "h": 24, - "fill": "hsl(247 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02392": { - "id": "shape:perf:02392", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 1472, - "rot": 0, - "props": { - "w": 27, - "h": 39, - "fill": "hsl(108 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02393": { - "id": "shape:perf:02393", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 1472, - "rot": 0, - "props": { - "w": 31, - "h": 35, - "fill": "hsl(253 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02394": { - "id": "shape:perf:02394", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 1472, - "rot": 0, - "props": { - "w": 33, - "h": 42, - "fill": "hsl(76 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02395": { - "id": "shape:perf:02395", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 1472, - "rot": 0, - "props": { - "w": 33, - "h": 29, - "fill": "hsl(214 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02396": { - "id": "shape:perf:02396", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 1472, - "rot": 0, - "props": { - "w": 32, - "h": 31, - "fill": "hsl(97 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02397": { - "id": "shape:perf:02397", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 1472, - "rot": 0, - "props": { - "w": 25, - "h": 44, - "fill": "hsl(286 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02398": { - "id": "shape:perf:02398", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 1472, - "rot": 0, - "props": { - "w": 47, - "h": 24, - "fill": "hsl(256 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02399": { - "id": "shape:perf:02399", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 1472, - "rot": 0, - "props": { - "w": 32, - "h": 44, - "fill": "hsl(260 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02400": { - "id": "shape:perf:02400", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 1536, - "rot": 0, - "props": { - "w": 38, - "h": 33, - "fill": "hsl(79 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02401": { - "id": "shape:perf:02401", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 1536, - "rot": 0, - "props": { - "w": 42, - "h": 26, - "fill": "hsl(125 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02402": { - "id": "shape:perf:02402", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 1536, - "rot": 0, - "props": { - "w": 46, - "h": 37, - "fill": "hsl(317 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02403": { - "id": "shape:perf:02403", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 1536, - "rot": 0, - "props": { - "w": 30, - "h": 38, - "fill": "hsl(111 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02404": { - "id": "shape:perf:02404", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 1536, - "rot": 0, - "props": { - "w": 40, - "h": 29, - "fill": "hsl(302 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02405": { - "id": "shape:perf:02405", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 1536, - "rot": 0, - "props": { - "w": 30, - "h": 46, - "fill": "hsl(80 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02406": { - "id": "shape:perf:02406", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 1536, - "rot": 0, - "props": { - "w": 44, - "h": 38, - "fill": "hsl(149 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02407": { - "id": "shape:perf:02407", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 1536, - "rot": 0, - "props": { - "w": 39, - "h": 35, - "fill": "hsl(331 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02408": { - "id": "shape:perf:02408", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 1536, - "rot": 0, - "props": { - "w": 45, - "h": 46, - "fill": "hsl(290 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02409": { - "id": "shape:perf:02409", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 1536, - "rot": 0, - "props": { - "w": 43, - "h": 39, - "fill": "hsl(201 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02410": { - "id": "shape:perf:02410", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 1536, - "rot": 0, - "props": { - "w": 47, - "h": 35, - "fill": "hsl(162 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02411": { - "id": "shape:perf:02411", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 1536, - "rot": 0, - "props": { - "w": 27, - "h": 31, - "fill": "hsl(198 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02412": { - "id": "shape:perf:02412", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 1536, - "rot": 0, - "props": { - "w": 47, - "h": 36, - "fill": "hsl(91 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02413": { - "id": "shape:perf:02413", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 1536, - "rot": 0, - "props": { - "w": 35, - "h": 33, - "fill": "hsl(320 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02414": { - "id": "shape:perf:02414", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 1536, - "rot": 0, - "props": { - "w": 24, - "h": 42, - "fill": "hsl(233 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02415": { - "id": "shape:perf:02415", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 1536, - "rot": 0, - "props": { - "w": 33, - "h": 30, - "fill": "hsl(152 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02416": { - "id": "shape:perf:02416", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 1536, - "rot": 0, - "props": { - "w": 45, - "h": 47, - "fill": "hsl(231 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02417": { - "id": "shape:perf:02417", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 1536, - "rot": 0, - "props": { - "w": 31, - "h": 41, - "fill": "hsl(359 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02418": { - "id": "shape:perf:02418", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 1536, - "rot": 0, - "props": { - "w": 29, - "h": 43, - "fill": "hsl(294 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02419": { - "id": "shape:perf:02419", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 1536, - "rot": 0, - "props": { - "w": 31, - "h": 35, - "fill": "hsl(234 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02420": { - "id": "shape:perf:02420", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 1536, - "rot": 0, - "props": { - "w": 27, - "h": 39, - "fill": "hsl(238 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02421": { - "id": "shape:perf:02421", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 1536, - "rot": 0, - "props": { - "w": 37, - "h": 37, - "fill": "hsl(111 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02422": { - "id": "shape:perf:02422", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 1536, - "rot": 0, - "props": { - "w": 34, - "h": 39, - "fill": "hsl(310 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02423": { - "id": "shape:perf:02423", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 1536, - "rot": 0, - "props": { - "w": 47, - "h": 46, - "fill": "hsl(80 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02424": { - "id": "shape:perf:02424", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 1536, - "rot": 0, - "props": { - "w": 25, - "h": 38, - "fill": "hsl(0 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02425": { - "id": "shape:perf:02425", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 1536, - "rot": 0, - "props": { - "w": 39, - "h": 27, - "fill": "hsl(331 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02426": { - "id": "shape:perf:02426", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 1536, - "rot": 0, - "props": { - "w": 26, - "h": 35, - "fill": "hsl(354 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02427": { - "id": "shape:perf:02427", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 1536, - "rot": 0, - "props": { - "w": 34, - "h": 45, - "fill": "hsl(336 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02428": { - "id": "shape:perf:02428", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 1536, - "rot": 0, - "props": { - "w": 33, - "h": 31, - "fill": "hsl(41 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02429": { - "id": "shape:perf:02429", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 1536, - "rot": 0, - "props": { - "w": 32, - "h": 39, - "fill": "hsl(185 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02430": { - "id": "shape:perf:02430", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 1536, - "rot": 0, - "props": { - "w": 41, - "h": 30, - "fill": "hsl(147 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02431": { - "id": "shape:perf:02431", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 1536, - "rot": 0, - "props": { - "w": 47, - "h": 28, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02432": { - "id": "shape:perf:02432", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 1536, - "rot": 0, - "props": { - "w": 43, - "h": 37, - "fill": "hsl(126 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02433": { - "id": "shape:perf:02433", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 1536, - "rot": 0, - "props": { - "w": 37, - "h": 33, - "fill": "hsl(255 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02434": { - "id": "shape:perf:02434", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 1536, - "rot": 0, - "props": { - "w": 39, - "h": 42, - "fill": "hsl(38 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02435": { - "id": "shape:perf:02435", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 1536, - "rot": 0, - "props": { - "w": 27, - "h": 24, - "fill": "hsl(29 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02436": { - "id": "shape:perf:02436", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 1536, - "rot": 0, - "props": { - "w": 25, - "h": 33, - "fill": "hsl(359 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02437": { - "id": "shape:perf:02437", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 1536, - "rot": 0, - "props": { - "w": 28, - "h": 35, - "fill": "hsl(237 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02438": { - "id": "shape:perf:02438", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 1536, - "rot": 0, - "props": { - "w": 32, - "h": 39, - "fill": "hsl(85 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02439": { - "id": "shape:perf:02439", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 1536, - "rot": 0, - "props": { - "w": 24, - "h": 32, - "fill": "hsl(146 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02440": { - "id": "shape:perf:02440", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 1536, - "rot": 0, - "props": { - "w": 30, - "h": 24, - "fill": "hsl(70 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02441": { - "id": "shape:perf:02441", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 1536, - "rot": 0, - "props": { - "w": 46, - "h": 37, - "fill": "hsl(346 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02442": { - "id": "shape:perf:02442", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 1536, - "rot": 0, - "props": { - "w": 24, - "h": 31, - "fill": "hsl(116 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02443": { - "id": "shape:perf:02443", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 1536, - "rot": 0, - "props": { - "w": 42, - "h": 30, - "fill": "hsl(204 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02444": { - "id": "shape:perf:02444", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 1536, - "rot": 0, - "props": { - "w": 46, - "h": 27, - "fill": "hsl(268 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02445": { - "id": "shape:perf:02445", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 1536, - "rot": 0, - "props": { - "w": 29, - "h": 38, - "fill": "hsl(43 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02446": { - "id": "shape:perf:02446", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 1536, - "rot": 0, - "props": { - "w": 34, - "h": 42, - "fill": "hsl(133 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02447": { - "id": "shape:perf:02447", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 1536, - "rot": 0, - "props": { - "w": 36, - "h": 43, - "fill": "hsl(6 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02448": { - "id": "shape:perf:02448", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 1536, - "rot": 0, - "props": { - "w": 46, - "h": 46, - "fill": "hsl(73 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02449": { - "id": "shape:perf:02449", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 1536, - "rot": 0, - "props": { - "w": 35, - "h": 35, - "fill": "hsl(60 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02450": { - "id": "shape:perf:02450", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 1536, - "rot": 0, - "props": { - "w": 45, - "h": 43, - "fill": "hsl(149 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02451": { - "id": "shape:perf:02451", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 1536, - "rot": 0, - "props": { - "w": 47, - "h": 36, - "fill": "hsl(54 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02452": { - "id": "shape:perf:02452", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 1536, - "rot": 0, - "props": { - "w": 46, - "h": 25, - "fill": "hsl(323 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02453": { - "id": "shape:perf:02453", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 1536, - "rot": 0, - "props": { - "w": 33, - "h": 37, - "fill": "hsl(73 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02454": { - "id": "shape:perf:02454", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 1536, - "rot": 0, - "props": { - "w": 44, - "h": 46, - "fill": "hsl(87 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02455": { - "id": "shape:perf:02455", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 1536, - "rot": 0, - "props": { - "w": 31, - "h": 30, - "fill": "hsl(309 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02456": { - "id": "shape:perf:02456", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 1536, - "rot": 0, - "props": { - "w": 32, - "h": 43, - "fill": "hsl(237 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02457": { - "id": "shape:perf:02457", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 1536, - "rot": 0, - "props": { - "w": 41, - "h": 28, - "fill": "hsl(332 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02458": { - "id": "shape:perf:02458", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 1536, - "rot": 0, - "props": { - "w": 37, - "h": 26, - "fill": "hsl(96 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02459": { - "id": "shape:perf:02459", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 1536, - "rot": 0, - "props": { - "w": 44, - "h": 27, - "fill": "hsl(149 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02460": { - "id": "shape:perf:02460", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 1536, - "rot": 0, - "props": { - "w": 25, - "h": 29, - "fill": "hsl(165 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02461": { - "id": "shape:perf:02461", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 1536, - "rot": 0, - "props": { - "w": 41, - "h": 38, - "fill": "hsl(145 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02462": { - "id": "shape:perf:02462", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 1536, - "rot": 0, - "props": { - "w": 31, - "h": 46, - "fill": "hsl(287 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02463": { - "id": "shape:perf:02463", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 1536, - "rot": 0, - "props": { - "w": 40, - "h": 41, - "fill": "hsl(223 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02464": { - "id": "shape:perf:02464", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 1536, - "rot": 0, - "props": { - "w": 32, - "h": 30, - "fill": "hsl(83 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02465": { - "id": "shape:perf:02465", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 1536, - "rot": 0, - "props": { - "w": 44, - "h": 43, - "fill": "hsl(261 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02466": { - "id": "shape:perf:02466", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 1536, - "rot": 0, - "props": { - "w": 24, - "h": 24, - "fill": "hsl(57 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02467": { - "id": "shape:perf:02467", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 1536, - "rot": 0, - "props": { - "w": 31, - "h": 47, - "fill": "hsl(143 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02468": { - "id": "shape:perf:02468", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 1536, - "rot": 0, - "props": { - "w": 37, - "h": 32, - "fill": "hsl(202 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02469": { - "id": "shape:perf:02469", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 1536, - "rot": 0, - "props": { - "w": 26, - "h": 39, - "fill": "hsl(76 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02470": { - "id": "shape:perf:02470", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 1536, - "rot": 0, - "props": { - "w": 29, - "h": 29, - "fill": "hsl(160 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02471": { - "id": "shape:perf:02471", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 1536, - "rot": 0, - "props": { - "w": 28, - "h": 32, - "fill": "hsl(92 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02472": { - "id": "shape:perf:02472", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 1536, - "rot": 0, - "props": { - "w": 29, - "h": 46, - "fill": "hsl(15 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02473": { - "id": "shape:perf:02473", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 1536, - "rot": 0, - "props": { - "w": 39, - "h": 39, - "fill": "hsl(115 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02474": { - "id": "shape:perf:02474", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 1536, - "rot": 0, - "props": { - "w": 37, - "h": 42, - "fill": "hsl(303 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02475": { - "id": "shape:perf:02475", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 1536, - "rot": 0, - "props": { - "w": 40, - "h": 24, - "fill": "hsl(93 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02476": { - "id": "shape:perf:02476", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 1536, - "rot": 0, - "props": { - "w": 38, - "h": 32, - "fill": "hsl(162 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02477": { - "id": "shape:perf:02477", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 1536, - "rot": 0, - "props": { - "w": 30, - "h": 35, - "fill": "hsl(182 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02478": { - "id": "shape:perf:02478", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 1536, - "rot": 0, - "props": { - "w": 38, - "h": 37, - "fill": "hsl(285 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02479": { - "id": "shape:perf:02479", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 1536, - "rot": 0, - "props": { - "w": 36, - "h": 29, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02480": { - "id": "shape:perf:02480", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 1536, - "rot": 0, - "props": { - "w": 40, - "h": 28, - "fill": "hsl(23 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02481": { - "id": "shape:perf:02481", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 1536, - "rot": 0, - "props": { - "w": 40, - "h": 39, - "fill": "hsl(217 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02482": { - "id": "shape:perf:02482", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 1536, - "rot": 0, - "props": { - "w": 40, - "h": 43, - "fill": "hsl(163 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02483": { - "id": "shape:perf:02483", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 1536, - "rot": 0, - "props": { - "w": 27, - "h": 29, - "fill": "hsl(8 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02484": { - "id": "shape:perf:02484", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 1536, - "rot": 0, - "props": { - "w": 45, - "h": 33, - "fill": "hsl(280 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02485": { - "id": "shape:perf:02485", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 1536, - "rot": 0, - "props": { - "w": 31, - "h": 35, - "fill": "hsl(176 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02486": { - "id": "shape:perf:02486", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 1536, - "rot": 0, - "props": { - "w": 29, - "h": 26, - "fill": "hsl(77 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02487": { - "id": "shape:perf:02487", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 1536, - "rot": 0, - "props": { - "w": 43, - "h": 41, - "fill": "hsl(79 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02488": { - "id": "shape:perf:02488", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 1536, - "rot": 0, - "props": { - "w": 41, - "h": 47, - "fill": "hsl(295 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02489": { - "id": "shape:perf:02489", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 1536, - "rot": 0, - "props": { - "w": 34, - "h": 27, - "fill": "hsl(42 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02490": { - "id": "shape:perf:02490", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 1536, - "rot": 0, - "props": { - "w": 28, - "h": 28, - "fill": "hsl(83 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02491": { - "id": "shape:perf:02491", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 1536, - "rot": 0, - "props": { - "w": 25, - "h": 39, - "fill": "hsl(138 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02492": { - "id": "shape:perf:02492", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 1536, - "rot": 0, - "props": { - "w": 31, - "h": 36, - "fill": "hsl(79 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02493": { - "id": "shape:perf:02493", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 1536, - "rot": 0, - "props": { - "w": 44, - "h": 31, - "fill": "hsl(70 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02494": { - "id": "shape:perf:02494", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 1536, - "rot": 0, - "props": { - "w": 32, - "h": 29, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02495": { - "id": "shape:perf:02495", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 1536, - "rot": 0, - "props": { - "w": 34, - "h": 44, - "fill": "hsl(112 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02496": { - "id": "shape:perf:02496", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 1536, - "rot": 0, - "props": { - "w": 25, - "h": 45, - "fill": "hsl(139 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02497": { - "id": "shape:perf:02497", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 1536, - "rot": 0, - "props": { - "w": 29, - "h": 43, - "fill": "hsl(22 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02498": { - "id": "shape:perf:02498", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 1536, - "rot": 0, - "props": { - "w": 41, - "h": 41, - "fill": "hsl(14 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02499": { - "id": "shape:perf:02499", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 1536, - "rot": 0, - "props": { - "w": 26, - "h": 42, - "fill": "hsl(207 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02500": { - "id": "shape:perf:02500", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 1600, - "rot": 0, - "props": { - "w": 46, - "h": 46, - "fill": "hsl(134 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02501": { - "id": "shape:perf:02501", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 1600, - "rot": 0, - "props": { - "w": 45, - "h": 35, - "fill": "hsl(201 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02502": { - "id": "shape:perf:02502", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 1600, - "rot": 0, - "props": { - "w": 34, - "h": 43, - "fill": "hsl(238 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02503": { - "id": "shape:perf:02503", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 1600, - "rot": 0, - "props": { - "w": 35, - "h": 34, - "fill": "hsl(13 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02504": { - "id": "shape:perf:02504", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 1600, - "rot": 0, - "props": { - "w": 40, - "h": 27, - "fill": "hsl(263 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02505": { - "id": "shape:perf:02505", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 1600, - "rot": 0, - "props": { - "w": 43, - "h": 29, - "fill": "hsl(332 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02506": { - "id": "shape:perf:02506", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 1600, - "rot": 0, - "props": { - "w": 35, - "h": 36, - "fill": "hsl(258 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02507": { - "id": "shape:perf:02507", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 1600, - "rot": 0, - "props": { - "w": 33, - "h": 33, - "fill": "hsl(102 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02508": { - "id": "shape:perf:02508", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 1600, - "rot": 0, - "props": { - "w": 28, - "h": 41, - "fill": "hsl(5 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02509": { - "id": "shape:perf:02509", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 1600, - "rot": 0, - "props": { - "w": 41, - "h": 35, - "fill": "hsl(17 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02510": { - "id": "shape:perf:02510", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 1600, - "rot": 0, - "props": { - "w": 36, - "h": 24, - "fill": "hsl(244 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02511": { - "id": "shape:perf:02511", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 1600, - "rot": 0, - "props": { - "w": 40, - "h": 43, - "fill": "hsl(319 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02512": { - "id": "shape:perf:02512", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 1600, - "rot": 0, - "props": { - "w": 47, - "h": 36, - "fill": "hsl(126 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02513": { - "id": "shape:perf:02513", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 1600, - "rot": 0, - "props": { - "w": 32, - "h": 34, - "fill": "hsl(217 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02514": { - "id": "shape:perf:02514", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 1600, - "rot": 0, - "props": { - "w": 35, - "h": 26, - "fill": "hsl(82 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02515": { - "id": "shape:perf:02515", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 1600, - "rot": 0, - "props": { - "w": 42, - "h": 42, - "fill": "hsl(234 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02516": { - "id": "shape:perf:02516", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 1600, - "rot": 0, - "props": { - "w": 40, - "h": 32, - "fill": "hsl(226 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02517": { - "id": "shape:perf:02517", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 1600, - "rot": 0, - "props": { - "w": 30, - "h": 45, - "fill": "hsl(306 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02518": { - "id": "shape:perf:02518", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 1600, - "rot": 0, - "props": { - "w": 39, - "h": 44, - "fill": "hsl(204 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02519": { - "id": "shape:perf:02519", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 1600, - "rot": 0, - "props": { - "w": 45, - "h": 45, - "fill": "hsl(115 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02520": { - "id": "shape:perf:02520", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 1600, - "rot": 0, - "props": { - "w": 44, - "h": 41, - "fill": "hsl(77 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02521": { - "id": "shape:perf:02521", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 1600, - "rot": 0, - "props": { - "w": 26, - "h": 44, - "fill": "hsl(63 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02522": { - "id": "shape:perf:02522", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 1600, - "rot": 0, - "props": { - "w": 42, - "h": 27, - "fill": "hsl(224 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02523": { - "id": "shape:perf:02523", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 1600, - "rot": 0, - "props": { - "w": 28, - "h": 42, - "fill": "hsl(117 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02524": { - "id": "shape:perf:02524", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 1600, - "rot": 0, - "props": { - "w": 24, - "h": 34, - "fill": "hsl(97 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02525": { - "id": "shape:perf:02525", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 1600, - "rot": 0, - "props": { - "w": 47, - "h": 34, - "fill": "hsl(231 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02526": { - "id": "shape:perf:02526", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 1600, - "rot": 0, - "props": { - "w": 41, - "h": 26, - "fill": "hsl(134 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02527": { - "id": "shape:perf:02527", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 1600, - "rot": 0, - "props": { - "w": 31, - "h": 33, - "fill": "hsl(217 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02528": { - "id": "shape:perf:02528", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 1600, - "rot": 0, - "props": { - "w": 32, - "h": 30, - "fill": "hsl(14 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02529": { - "id": "shape:perf:02529", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 1600, - "rot": 0, - "props": { - "w": 35, - "h": 45, - "fill": "hsl(53 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02530": { - "id": "shape:perf:02530", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 1600, - "rot": 0, - "props": { - "w": 32, - "h": 41, - "fill": "hsl(298 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02531": { - "id": "shape:perf:02531", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 1600, - "rot": 0, - "props": { - "w": 43, - "h": 44, - "fill": "hsl(205 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02532": { - "id": "shape:perf:02532", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 1600, - "rot": 0, - "props": { - "w": 27, - "h": 28, - "fill": "hsl(264 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02533": { - "id": "shape:perf:02533", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 1600, - "rot": 0, - "props": { - "w": 28, - "h": 37, - "fill": "hsl(321 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02534": { - "id": "shape:perf:02534", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 1600, - "rot": 0, - "props": { - "w": 36, - "h": 44, - "fill": "hsl(120 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02535": { - "id": "shape:perf:02535", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 1600, - "rot": 0, - "props": { - "w": 26, - "h": 33, - "fill": "hsl(255 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02536": { - "id": "shape:perf:02536", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 1600, - "rot": 0, - "props": { - "w": 40, - "h": 24, - "fill": "hsl(306 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02537": { - "id": "shape:perf:02537", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 1600, - "rot": 0, - "props": { - "w": 45, - "h": 28, - "fill": "hsl(117 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02538": { - "id": "shape:perf:02538", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 1600, - "rot": 0, - "props": { - "w": 25, - "h": 27, - "fill": "hsl(85 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02539": { - "id": "shape:perf:02539", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 1600, - "rot": 0, - "props": { - "w": 46, - "h": 43, - "fill": "hsl(162 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02540": { - "id": "shape:perf:02540", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 1600, - "rot": 0, - "props": { - "w": 40, - "h": 38, - "fill": "hsl(14 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02541": { - "id": "shape:perf:02541", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 1600, - "rot": 0, - "props": { - "w": 30, - "h": 46, - "fill": "hsl(271 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02542": { - "id": "shape:perf:02542", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 1600, - "rot": 0, - "props": { - "w": 33, - "h": 38, - "fill": "hsl(43 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02543": { - "id": "shape:perf:02543", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 1600, - "rot": 0, - "props": { - "w": 36, - "h": 32, - "fill": "hsl(92 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02544": { - "id": "shape:perf:02544", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 1600, - "rot": 0, - "props": { - "w": 31, - "h": 33, - "fill": "hsl(319 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02545": { - "id": "shape:perf:02545", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 1600, - "rot": 0, - "props": { - "w": 25, - "h": 45, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02546": { - "id": "shape:perf:02546", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 1600, - "rot": 0, - "props": { - "w": 26, - "h": 35, - "fill": "hsl(36 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02547": { - "id": "shape:perf:02547", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 1600, - "rot": 0, - "props": { - "w": 25, - "h": 33, - "fill": "hsl(24 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02548": { - "id": "shape:perf:02548", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 1600, - "rot": 0, - "props": { - "w": 27, - "h": 46, - "fill": "hsl(79 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02549": { - "id": "shape:perf:02549", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 1600, - "rot": 0, - "props": { - "w": 28, - "h": 46, - "fill": "hsl(177 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02550": { - "id": "shape:perf:02550", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 1600, - "rot": 0, - "props": { - "w": 42, - "h": 25, - "fill": "hsl(327 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02551": { - "id": "shape:perf:02551", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 1600, - "rot": 0, - "props": { - "w": 45, - "h": 33, - "fill": "hsl(200 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02552": { - "id": "shape:perf:02552", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 1600, - "rot": 0, - "props": { - "w": 36, - "h": 42, - "fill": "hsl(284 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02553": { - "id": "shape:perf:02553", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 1600, - "rot": 0, - "props": { - "w": 42, - "h": 38, - "fill": "hsl(13 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02554": { - "id": "shape:perf:02554", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 1600, - "rot": 0, - "props": { - "w": 37, - "h": 29, - "fill": "hsl(275 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02555": { - "id": "shape:perf:02555", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 1600, - "rot": 0, - "props": { - "w": 40, - "h": 38, - "fill": "hsl(309 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02556": { - "id": "shape:perf:02556", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 1600, - "rot": 0, - "props": { - "w": 43, - "h": 46, - "fill": "hsl(157 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02557": { - "id": "shape:perf:02557", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 1600, - "rot": 0, - "props": { - "w": 38, - "h": 40, - "fill": "hsl(186 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02558": { - "id": "shape:perf:02558", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 1600, - "rot": 0, - "props": { - "w": 35, - "h": 27, - "fill": "hsl(89 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02559": { - "id": "shape:perf:02559", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 1600, - "rot": 0, - "props": { - "w": 42, - "h": 37, - "fill": "hsl(245 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02560": { - "id": "shape:perf:02560", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 1600, - "rot": 0, - "props": { - "w": 30, - "h": 42, - "fill": "hsl(44 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02561": { - "id": "shape:perf:02561", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 1600, - "rot": 0, - "props": { - "w": 35, - "h": 30, - "fill": "hsl(61 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02562": { - "id": "shape:perf:02562", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 1600, - "rot": 0, - "props": { - "w": 35, - "h": 28, - "fill": "hsl(245 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02563": { - "id": "shape:perf:02563", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 1600, - "rot": 0, - "props": { - "w": 43, - "h": 46, - "fill": "hsl(352 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02564": { - "id": "shape:perf:02564", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 1600, - "rot": 0, - "props": { - "w": 34, - "h": 36, - "fill": "hsl(142 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02565": { - "id": "shape:perf:02565", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 1600, - "rot": 0, - "props": { - "w": 37, - "h": 25, - "fill": "hsl(334 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02566": { - "id": "shape:perf:02566", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 1600, - "rot": 0, - "props": { - "w": 43, - "h": 26, - "fill": "hsl(265 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02567": { - "id": "shape:perf:02567", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 1600, - "rot": 0, - "props": { - "w": 45, - "h": 25, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02568": { - "id": "shape:perf:02568", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 1600, - "rot": 0, - "props": { - "w": 30, - "h": 25, - "fill": "hsl(70 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02569": { - "id": "shape:perf:02569", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 1600, - "rot": 0, - "props": { - "w": 24, - "h": 39, - "fill": "hsl(127 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02570": { - "id": "shape:perf:02570", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 1600, - "rot": 0, - "props": { - "w": 25, - "h": 27, - "fill": "hsl(94 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02571": { - "id": "shape:perf:02571", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 1600, - "rot": 0, - "props": { - "w": 44, - "h": 35, - "fill": "hsl(252 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02572": { - "id": "shape:perf:02572", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 1600, - "rot": 0, - "props": { - "w": 46, - "h": 26, - "fill": "hsl(27 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02573": { - "id": "shape:perf:02573", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 1600, - "rot": 0, - "props": { - "w": 45, - "h": 34, - "fill": "hsl(234 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02574": { - "id": "shape:perf:02574", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 1600, - "rot": 0, - "props": { - "w": 38, - "h": 37, - "fill": "hsl(195 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02575": { - "id": "shape:perf:02575", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 1600, - "rot": 0, - "props": { - "w": 44, - "h": 27, - "fill": "hsl(167 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02576": { - "id": "shape:perf:02576", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 1600, - "rot": 0, - "props": { - "w": 41, - "h": 39, - "fill": "hsl(74 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02577": { - "id": "shape:perf:02577", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 1600, - "rot": 0, - "props": { - "w": 36, - "h": 46, - "fill": "hsl(106 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02578": { - "id": "shape:perf:02578", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 1600, - "rot": 0, - "props": { - "w": 33, - "h": 25, - "fill": "hsl(188 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02579": { - "id": "shape:perf:02579", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 1600, - "rot": 0, - "props": { - "w": 24, - "h": 39, - "fill": "hsl(335 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02580": { - "id": "shape:perf:02580", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 1600, - "rot": 0, - "props": { - "w": 36, - "h": 32, - "fill": "hsl(282 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02581": { - "id": "shape:perf:02581", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 1600, - "rot": 0, - "props": { - "w": 44, - "h": 32, - "fill": "hsl(47 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02582": { - "id": "shape:perf:02582", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 1600, - "rot": 0, - "props": { - "w": 24, - "h": 40, - "fill": "hsl(246 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02583": { - "id": "shape:perf:02583", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 1600, - "rot": 0, - "props": { - "w": 43, - "h": 41, - "fill": "hsl(261 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02584": { - "id": "shape:perf:02584", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 1600, - "rot": 0, - "props": { - "w": 38, - "h": 42, - "fill": "hsl(247 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02585": { - "id": "shape:perf:02585", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 1600, - "rot": 0, - "props": { - "w": 28, - "h": 45, - "fill": "hsl(326 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02586": { - "id": "shape:perf:02586", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 1600, - "rot": 0, - "props": { - "w": 31, - "h": 39, - "fill": "hsl(203 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02587": { - "id": "shape:perf:02587", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 1600, - "rot": 0, - "props": { - "w": 39, - "h": 44, - "fill": "hsl(270 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02588": { - "id": "shape:perf:02588", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 1600, - "rot": 0, - "props": { - "w": 28, - "h": 42, - "fill": "hsl(180 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02589": { - "id": "shape:perf:02589", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 1600, - "rot": 0, - "props": { - "w": 41, - "h": 45, - "fill": "hsl(217 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02590": { - "id": "shape:perf:02590", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 1600, - "rot": 0, - "props": { - "w": 44, - "h": 37, - "fill": "hsl(65 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02591": { - "id": "shape:perf:02591", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 1600, - "rot": 0, - "props": { - "w": 33, - "h": 27, - "fill": "hsl(224 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02592": { - "id": "shape:perf:02592", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 1600, - "rot": 0, - "props": { - "w": 32, - "h": 30, - "fill": "hsl(96 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02593": { - "id": "shape:perf:02593", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 1600, - "rot": 0, - "props": { - "w": 30, - "h": 46, - "fill": "hsl(33 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02594": { - "id": "shape:perf:02594", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 1600, - "rot": 0, - "props": { - "w": 38, - "h": 40, - "fill": "hsl(300 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02595": { - "id": "shape:perf:02595", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 1600, - "rot": 0, - "props": { - "w": 35, - "h": 44, - "fill": "hsl(12 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02596": { - "id": "shape:perf:02596", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 1600, - "rot": 0, - "props": { - "w": 37, - "h": 37, - "fill": "hsl(202 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02597": { - "id": "shape:perf:02597", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 1600, - "rot": 0, - "props": { - "w": 37, - "h": 42, - "fill": "hsl(319 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02598": { - "id": "shape:perf:02598", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 1600, - "rot": 0, - "props": { - "w": 31, - "h": 31, - "fill": "hsl(352 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02599": { - "id": "shape:perf:02599", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 1600, - "rot": 0, - "props": { - "w": 38, - "h": 29, - "fill": "hsl(179 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02600": { - "id": "shape:perf:02600", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 1664, - "rot": 0, - "props": { - "w": 40, - "h": 39, - "fill": "hsl(274 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02601": { - "id": "shape:perf:02601", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 1664, - "rot": 0, - "props": { - "w": 46, - "h": 47, - "fill": "hsl(33 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02602": { - "id": "shape:perf:02602", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 1664, - "rot": 0, - "props": { - "w": 38, - "h": 46, - "fill": "hsl(84 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02603": { - "id": "shape:perf:02603", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 1664, - "rot": 0, - "props": { - "w": 28, - "h": 30, - "fill": "hsl(42 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02604": { - "id": "shape:perf:02604", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 1664, - "rot": 0, - "props": { - "w": 37, - "h": 25, - "fill": "hsl(227 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02605": { - "id": "shape:perf:02605", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 1664, - "rot": 0, - "props": { - "w": 47, - "h": 37, - "fill": "hsl(281 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02606": { - "id": "shape:perf:02606", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 1664, - "rot": 0, - "props": { - "w": 43, - "h": 37, - "fill": "hsl(247 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02607": { - "id": "shape:perf:02607", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 1664, - "rot": 0, - "props": { - "w": 40, - "h": 43, - "fill": "hsl(102 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02608": { - "id": "shape:perf:02608", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 1664, - "rot": 0, - "props": { - "w": 43, - "h": 40, - "fill": "hsl(195 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02609": { - "id": "shape:perf:02609", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 1664, - "rot": 0, - "props": { - "w": 38, - "h": 29, - "fill": "hsl(146 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02610": { - "id": "shape:perf:02610", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 1664, - "rot": 0, - "props": { - "w": 25, - "h": 33, - "fill": "hsl(5 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02611": { - "id": "shape:perf:02611", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 1664, - "rot": 0, - "props": { - "w": 45, - "h": 31, - "fill": "hsl(199 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02612": { - "id": "shape:perf:02612", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 1664, - "rot": 0, - "props": { - "w": 32, - "h": 27, - "fill": "hsl(359 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02613": { - "id": "shape:perf:02613", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 1664, - "rot": 0, - "props": { - "w": 46, - "h": 35, - "fill": "hsl(1 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02614": { - "id": "shape:perf:02614", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 1664, - "rot": 0, - "props": { - "w": 35, - "h": 44, - "fill": "hsl(56 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02615": { - "id": "shape:perf:02615", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 1664, - "rot": 0, - "props": { - "w": 36, - "h": 33, - "fill": "hsl(4 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02616": { - "id": "shape:perf:02616", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 1664, - "rot": 0, - "props": { - "w": 26, - "h": 35, - "fill": "hsl(91 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02617": { - "id": "shape:perf:02617", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 1664, - "rot": 0, - "props": { - "w": 39, - "h": 36, - "fill": "hsl(92 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02618": { - "id": "shape:perf:02618", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 1664, - "rot": 0, - "props": { - "w": 27, - "h": 35, - "fill": "hsl(179 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02619": { - "id": "shape:perf:02619", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 1664, - "rot": 0, - "props": { - "w": 39, - "h": 24, - "fill": "hsl(326 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02620": { - "id": "shape:perf:02620", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 1664, - "rot": 0, - "props": { - "w": 36, - "h": 35, - "fill": "hsl(69 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02621": { - "id": "shape:perf:02621", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 1664, - "rot": 0, - "props": { - "w": 39, - "h": 45, - "fill": "hsl(252 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02622": { - "id": "shape:perf:02622", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 1664, - "rot": 0, - "props": { - "w": 32, - "h": 28, - "fill": "hsl(302 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02623": { - "id": "shape:perf:02623", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 1664, - "rot": 0, - "props": { - "w": 27, - "h": 29, - "fill": "hsl(142 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02624": { - "id": "shape:perf:02624", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 1664, - "rot": 0, - "props": { - "w": 42, - "h": 29, - "fill": "hsl(292 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02625": { - "id": "shape:perf:02625", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 1664, - "rot": 0, - "props": { - "w": 24, - "h": 42, - "fill": "hsl(228 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02626": { - "id": "shape:perf:02626", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 1664, - "rot": 0, - "props": { - "w": 29, - "h": 29, - "fill": "hsl(215 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02627": { - "id": "shape:perf:02627", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 1664, - "rot": 0, - "props": { - "w": 28, - "h": 41, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02628": { - "id": "shape:perf:02628", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 1664, - "rot": 0, - "props": { - "w": 33, - "h": 27, - "fill": "hsl(320 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02629": { - "id": "shape:perf:02629", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 1664, - "rot": 0, - "props": { - "w": 36, - "h": 47, - "fill": "hsl(184 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02630": { - "id": "shape:perf:02630", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 1664, - "rot": 0, - "props": { - "w": 40, - "h": 34, - "fill": "hsl(356 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02631": { - "id": "shape:perf:02631", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 1664, - "rot": 0, - "props": { - "w": 37, - "h": 37, - "fill": "hsl(175 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02632": { - "id": "shape:perf:02632", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 1664, - "rot": 0, - "props": { - "w": 25, - "h": 31, - "fill": "hsl(269 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02633": { - "id": "shape:perf:02633", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 1664, - "rot": 0, - "props": { - "w": 26, - "h": 24, - "fill": "hsl(321 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02634": { - "id": "shape:perf:02634", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 1664, - "rot": 0, - "props": { - "w": 34, - "h": 41, - "fill": "hsl(63 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02635": { - "id": "shape:perf:02635", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 1664, - "rot": 0, - "props": { - "w": 36, - "h": 40, - "fill": "hsl(333 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02636": { - "id": "shape:perf:02636", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 1664, - "rot": 0, - "props": { - "w": 26, - "h": 28, - "fill": "hsl(58 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02637": { - "id": "shape:perf:02637", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 1664, - "rot": 0, - "props": { - "w": 31, - "h": 47, - "fill": "hsl(73 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02638": { - "id": "shape:perf:02638", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 1664, - "rot": 0, - "props": { - "w": 43, - "h": 26, - "fill": "hsl(229 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02639": { - "id": "shape:perf:02639", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 1664, - "rot": 0, - "props": { - "w": 32, - "h": 36, - "fill": "hsl(137 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02640": { - "id": "shape:perf:02640", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 1664, - "rot": 0, - "props": { - "w": 42, - "h": 34, - "fill": "hsl(300 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02641": { - "id": "shape:perf:02641", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 1664, - "rot": 0, - "props": { - "w": 30, - "h": 32, - "fill": "hsl(328 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02642": { - "id": "shape:perf:02642", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 1664, - "rot": 0, - "props": { - "w": 43, - "h": 34, - "fill": "hsl(65 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02643": { - "id": "shape:perf:02643", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 1664, - "rot": 0, - "props": { - "w": 41, - "h": 30, - "fill": "hsl(317 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02644": { - "id": "shape:perf:02644", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 1664, - "rot": 0, - "props": { - "w": 37, - "h": 24, - "fill": "hsl(0 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02645": { - "id": "shape:perf:02645", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 1664, - "rot": 0, - "props": { - "w": 47, - "h": 26, - "fill": "hsl(307 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02646": { - "id": "shape:perf:02646", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 1664, - "rot": 0, - "props": { - "w": 45, - "h": 45, - "fill": "hsl(152 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02647": { - "id": "shape:perf:02647", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 1664, - "rot": 0, - "props": { - "w": 35, - "h": 44, - "fill": "hsl(355 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02648": { - "id": "shape:perf:02648", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 1664, - "rot": 0, - "props": { - "w": 24, - "h": 39, - "fill": "hsl(14 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02649": { - "id": "shape:perf:02649", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 1664, - "rot": 0, - "props": { - "w": 27, - "h": 41, - "fill": "hsl(295 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02650": { - "id": "shape:perf:02650", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 1664, - "rot": 0, - "props": { - "w": 42, - "h": 40, - "fill": "hsl(226 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02651": { - "id": "shape:perf:02651", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 1664, - "rot": 0, - "props": { - "w": 41, - "h": 31, - "fill": "hsl(132 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02652": { - "id": "shape:perf:02652", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 1664, - "rot": 0, - "props": { - "w": 45, - "h": 31, - "fill": "hsl(70 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02653": { - "id": "shape:perf:02653", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 1664, - "rot": 0, - "props": { - "w": 25, - "h": 40, - "fill": "hsl(225 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02654": { - "id": "shape:perf:02654", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 1664, - "rot": 0, - "props": { - "w": 39, - "h": 37, - "fill": "hsl(77 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02655": { - "id": "shape:perf:02655", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 1664, - "rot": 0, - "props": { - "w": 30, - "h": 35, - "fill": "hsl(309 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02656": { - "id": "shape:perf:02656", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 1664, - "rot": 0, - "props": { - "w": 30, - "h": 35, - "fill": "hsl(285 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02657": { - "id": "shape:perf:02657", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 1664, - "rot": 0, - "props": { - "w": 25, - "h": 36, - "fill": "hsl(104 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02658": { - "id": "shape:perf:02658", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 1664, - "rot": 0, - "props": { - "w": 43, - "h": 28, - "fill": "hsl(132 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02659": { - "id": "shape:perf:02659", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 1664, - "rot": 0, - "props": { - "w": 32, - "h": 44, - "fill": "hsl(86 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02660": { - "id": "shape:perf:02660", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 1664, - "rot": 0, - "props": { - "w": 30, - "h": 36, - "fill": "hsl(178 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02661": { - "id": "shape:perf:02661", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 1664, - "rot": 0, - "props": { - "w": 40, - "h": 40, - "fill": "hsl(22 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02662": { - "id": "shape:perf:02662", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 1664, - "rot": 0, - "props": { - "w": 32, - "h": 38, - "fill": "hsl(190 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02663": { - "id": "shape:perf:02663", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 1664, - "rot": 0, - "props": { - "w": 25, - "h": 42, - "fill": "hsl(36 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02664": { - "id": "shape:perf:02664", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 1664, - "rot": 0, - "props": { - "w": 43, - "h": 36, - "fill": "hsl(200 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02665": { - "id": "shape:perf:02665", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 1664, - "rot": 0, - "props": { - "w": 35, - "h": 43, - "fill": "hsl(135 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02666": { - "id": "shape:perf:02666", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 1664, - "rot": 0, - "props": { - "w": 38, - "h": 40, - "fill": "hsl(247 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02667": { - "id": "shape:perf:02667", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 1664, - "rot": 0, - "props": { - "w": 46, - "h": 25, - "fill": "hsl(177 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02668": { - "id": "shape:perf:02668", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 1664, - "rot": 0, - "props": { - "w": 44, - "h": 45, - "fill": "hsl(29 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02669": { - "id": "shape:perf:02669", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 1664, - "rot": 0, - "props": { - "w": 24, - "h": 34, - "fill": "hsl(357 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02670": { - "id": "shape:perf:02670", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 1664, - "rot": 0, - "props": { - "w": 39, - "h": 28, - "fill": "hsl(286 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02671": { - "id": "shape:perf:02671", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 1664, - "rot": 0, - "props": { - "w": 34, - "h": 44, - "fill": "hsl(111 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02672": { - "id": "shape:perf:02672", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 1664, - "rot": 0, - "props": { - "w": 34, - "h": 30, - "fill": "hsl(259 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02673": { - "id": "shape:perf:02673", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 1664, - "rot": 0, - "props": { - "w": 40, - "h": 39, - "fill": "hsl(336 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02674": { - "id": "shape:perf:02674", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 1664, - "rot": 0, - "props": { - "w": 31, - "h": 34, - "fill": "hsl(253 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02675": { - "id": "shape:perf:02675", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 1664, - "rot": 0, - "props": { - "w": 41, - "h": 39, - "fill": "hsl(180 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02676": { - "id": "shape:perf:02676", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 1664, - "rot": 0, - "props": { - "w": 31, - "h": 26, - "fill": "hsl(136 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02677": { - "id": "shape:perf:02677", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 1664, - "rot": 0, - "props": { - "w": 34, - "h": 42, - "fill": "hsl(342 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02678": { - "id": "shape:perf:02678", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 1664, - "rot": 0, - "props": { - "w": 45, - "h": 27, - "fill": "hsl(148 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02679": { - "id": "shape:perf:02679", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 1664, - "rot": 0, - "props": { - "w": 26, - "h": 36, - "fill": "hsl(223 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02680": { - "id": "shape:perf:02680", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 1664, - "rot": 0, - "props": { - "w": 35, - "h": 46, - "fill": "hsl(288 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02681": { - "id": "shape:perf:02681", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 1664, - "rot": 0, - "props": { - "w": 30, - "h": 25, - "fill": "hsl(215 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02682": { - "id": "shape:perf:02682", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 1664, - "rot": 0, - "props": { - "w": 28, - "h": 26, - "fill": "hsl(213 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02683": { - "id": "shape:perf:02683", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 1664, - "rot": 0, - "props": { - "w": 37, - "h": 37, - "fill": "hsl(116 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02684": { - "id": "shape:perf:02684", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 1664, - "rot": 0, - "props": { - "w": 32, - "h": 31, - "fill": "hsl(55 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02685": { - "id": "shape:perf:02685", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 1664, - "rot": 0, - "props": { - "w": 26, - "h": 30, - "fill": "hsl(74 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02686": { - "id": "shape:perf:02686", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 1664, - "rot": 0, - "props": { - "w": 37, - "h": 42, - "fill": "hsl(223 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02687": { - "id": "shape:perf:02687", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 1664, - "rot": 0, - "props": { - "w": 28, - "h": 46, - "fill": "hsl(276 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02688": { - "id": "shape:perf:02688", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 1664, - "rot": 0, - "props": { - "w": 27, - "h": 37, - "fill": "hsl(342 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02689": { - "id": "shape:perf:02689", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 1664, - "rot": 0, - "props": { - "w": 44, - "h": 41, - "fill": "hsl(111 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02690": { - "id": "shape:perf:02690", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 1664, - "rot": 0, - "props": { - "w": 40, - "h": 32, - "fill": "hsl(220 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02691": { - "id": "shape:perf:02691", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 1664, - "rot": 0, - "props": { - "w": 33, - "h": 39, - "fill": "hsl(25 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02692": { - "id": "shape:perf:02692", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 1664, - "rot": 0, - "props": { - "w": 43, - "h": 24, - "fill": "hsl(337 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02693": { - "id": "shape:perf:02693", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 1664, - "rot": 0, - "props": { - "w": 29, - "h": 32, - "fill": "hsl(111 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02694": { - "id": "shape:perf:02694", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 1664, - "rot": 0, - "props": { - "w": 35, - "h": 24, - "fill": "hsl(66 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02695": { - "id": "shape:perf:02695", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 1664, - "rot": 0, - "props": { - "w": 47, - "h": 35, - "fill": "hsl(89 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02696": { - "id": "shape:perf:02696", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 1664, - "rot": 0, - "props": { - "w": 31, - "h": 43, - "fill": "hsl(284 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02697": { - "id": "shape:perf:02697", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 1664, - "rot": 0, - "props": { - "w": 43, - "h": 44, - "fill": "hsl(152 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02698": { - "id": "shape:perf:02698", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 1664, - "rot": 0, - "props": { - "w": 40, - "h": 45, - "fill": "hsl(338 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02699": { - "id": "shape:perf:02699", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 1664, - "rot": 0, - "props": { - "w": 26, - "h": 32, - "fill": "hsl(117 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02700": { - "id": "shape:perf:02700", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 1728, - "rot": 0, - "props": { - "w": 47, - "h": 31, - "fill": "hsl(271 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02701": { - "id": "shape:perf:02701", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 1728, - "rot": 0, - "props": { - "w": 40, - "h": 42, - "fill": "hsl(84 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02702": { - "id": "shape:perf:02702", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 1728, - "rot": 0, - "props": { - "w": 35, - "h": 38, - "fill": "hsl(322 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02703": { - "id": "shape:perf:02703", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 1728, - "rot": 0, - "props": { - "w": 42, - "h": 45, - "fill": "hsl(185 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02704": { - "id": "shape:perf:02704", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 1728, - "rot": 0, - "props": { - "w": 25, - "h": 29, - "fill": "hsl(196 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02705": { - "id": "shape:perf:02705", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 1728, - "rot": 0, - "props": { - "w": 27, - "h": 32, - "fill": "hsl(131 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02706": { - "id": "shape:perf:02706", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 1728, - "rot": 0, - "props": { - "w": 27, - "h": 27, - "fill": "hsl(121 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02707": { - "id": "shape:perf:02707", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 1728, - "rot": 0, - "props": { - "w": 25, - "h": 44, - "fill": "hsl(232 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02708": { - "id": "shape:perf:02708", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 1728, - "rot": 0, - "props": { - "w": 27, - "h": 39, - "fill": "hsl(61 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02709": { - "id": "shape:perf:02709", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 1728, - "rot": 0, - "props": { - "w": 40, - "h": 34, - "fill": "hsl(27 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02710": { - "id": "shape:perf:02710", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 1728, - "rot": 0, - "props": { - "w": 38, - "h": 28, - "fill": "hsl(314 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02711": { - "id": "shape:perf:02711", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 1728, - "rot": 0, - "props": { - "w": 35, - "h": 40, - "fill": "hsl(95 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02712": { - "id": "shape:perf:02712", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 1728, - "rot": 0, - "props": { - "w": 39, - "h": 28, - "fill": "hsl(177 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02713": { - "id": "shape:perf:02713", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 1728, - "rot": 0, - "props": { - "w": 30, - "h": 30, - "fill": "hsl(309 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02714": { - "id": "shape:perf:02714", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 1728, - "rot": 0, - "props": { - "w": 46, - "h": 34, - "fill": "hsl(218 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02715": { - "id": "shape:perf:02715", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 1728, - "rot": 0, - "props": { - "w": 29, - "h": 31, - "fill": "hsl(36 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02716": { - "id": "shape:perf:02716", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 1728, - "rot": 0, - "props": { - "w": 39, - "h": 30, - "fill": "hsl(235 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02717": { - "id": "shape:perf:02717", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 1728, - "rot": 0, - "props": { - "w": 31, - "h": 43, - "fill": "hsl(105 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02718": { - "id": "shape:perf:02718", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 1728, - "rot": 0, - "props": { - "w": 29, - "h": 38, - "fill": "hsl(255 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02719": { - "id": "shape:perf:02719", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 1728, - "rot": 0, - "props": { - "w": 38, - "h": 28, - "fill": "hsl(273 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02720": { - "id": "shape:perf:02720", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 1728, - "rot": 0, - "props": { - "w": 32, - "h": 32, - "fill": "hsl(264 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02721": { - "id": "shape:perf:02721", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 1728, - "rot": 0, - "props": { - "w": 47, - "h": 41, - "fill": "hsl(258 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02722": { - "id": "shape:perf:02722", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 1728, - "rot": 0, - "props": { - "w": 28, - "h": 43, - "fill": "hsl(315 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02723": { - "id": "shape:perf:02723", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 1728, - "rot": 0, - "props": { - "w": 41, - "h": 45, - "fill": "hsl(324 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02724": { - "id": "shape:perf:02724", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 1728, - "rot": 0, - "props": { - "w": 46, - "h": 33, - "fill": "hsl(84 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02725": { - "id": "shape:perf:02725", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 1728, - "rot": 0, - "props": { - "w": 27, - "h": 24, - "fill": "hsl(194 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02726": { - "id": "shape:perf:02726", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 1728, - "rot": 0, - "props": { - "w": 42, - "h": 24, - "fill": "hsl(135 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02727": { - "id": "shape:perf:02727", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 1728, - "rot": 0, - "props": { - "w": 27, - "h": 30, - "fill": "hsl(83 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02728": { - "id": "shape:perf:02728", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 1728, - "rot": 0, - "props": { - "w": 47, - "h": 38, - "fill": "hsl(94 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02729": { - "id": "shape:perf:02729", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 1728, - "rot": 0, - "props": { - "w": 33, - "h": 44, - "fill": "hsl(67 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02730": { - "id": "shape:perf:02730", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 1728, - "rot": 0, - "props": { - "w": 40, - "h": 29, - "fill": "hsl(249 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02731": { - "id": "shape:perf:02731", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 1728, - "rot": 0, - "props": { - "w": 25, - "h": 29, - "fill": "hsl(24 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02732": { - "id": "shape:perf:02732", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 1728, - "rot": 0, - "props": { - "w": 33, - "h": 33, - "fill": "hsl(179 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02733": { - "id": "shape:perf:02733", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 1728, - "rot": 0, - "props": { - "w": 30, - "h": 44, - "fill": "hsl(13 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02734": { - "id": "shape:perf:02734", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 1728, - "rot": 0, - "props": { - "w": 42, - "h": 39, - "fill": "hsl(358 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02735": { - "id": "shape:perf:02735", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 1728, - "rot": 0, - "props": { - "w": 34, - "h": 26, - "fill": "hsl(120 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02736": { - "id": "shape:perf:02736", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 1728, - "rot": 0, - "props": { - "w": 40, - "h": 39, - "fill": "hsl(127 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02737": { - "id": "shape:perf:02737", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 1728, - "rot": 0, - "props": { - "w": 25, - "h": 35, - "fill": "hsl(307 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02738": { - "id": "shape:perf:02738", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 1728, - "rot": 0, - "props": { - "w": 45, - "h": 40, - "fill": "hsl(331 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02739": { - "id": "shape:perf:02739", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 1728, - "rot": 0, - "props": { - "w": 45, - "h": 32, - "fill": "hsl(64 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02740": { - "id": "shape:perf:02740", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 1728, - "rot": 0, - "props": { - "w": 46, - "h": 29, - "fill": "hsl(314 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02741": { - "id": "shape:perf:02741", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 1728, - "rot": 0, - "props": { - "w": 46, - "h": 43, - "fill": "hsl(187 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02742": { - "id": "shape:perf:02742", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 1728, - "rot": 0, - "props": { - "w": 46, - "h": 42, - "fill": "hsl(140 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02743": { - "id": "shape:perf:02743", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 1728, - "rot": 0, - "props": { - "w": 34, - "h": 41, - "fill": "hsl(240 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02744": { - "id": "shape:perf:02744", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 1728, - "rot": 0, - "props": { - "w": 43, - "h": 27, - "fill": "hsl(99 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02745": { - "id": "shape:perf:02745", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 1728, - "rot": 0, - "props": { - "w": 25, - "h": 38, - "fill": "hsl(49 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02746": { - "id": "shape:perf:02746", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 1728, - "rot": 0, - "props": { - "w": 25, - "h": 33, - "fill": "hsl(167 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02747": { - "id": "shape:perf:02747", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 1728, - "rot": 0, - "props": { - "w": 32, - "h": 46, - "fill": "hsl(58 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02748": { - "id": "shape:perf:02748", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 1728, - "rot": 0, - "props": { - "w": 34, - "h": 43, - "fill": "hsl(87 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02749": { - "id": "shape:perf:02749", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 1728, - "rot": 0, - "props": { - "w": 36, - "h": 36, - "fill": "hsl(269 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02750": { - "id": "shape:perf:02750", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 1728, - "rot": 0, - "props": { - "w": 44, - "h": 35, - "fill": "hsl(163 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02751": { - "id": "shape:perf:02751", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 1728, - "rot": 0, - "props": { - "w": 37, - "h": 27, - "fill": "hsl(132 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02752": { - "id": "shape:perf:02752", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 1728, - "rot": 0, - "props": { - "w": 31, - "h": 32, - "fill": "hsl(103 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02753": { - "id": "shape:perf:02753", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 1728, - "rot": 0, - "props": { - "w": 28, - "h": 40, - "fill": "hsl(108 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02754": { - "id": "shape:perf:02754", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 1728, - "rot": 0, - "props": { - "w": 38, - "h": 28, - "fill": "hsl(284 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02755": { - "id": "shape:perf:02755", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 1728, - "rot": 0, - "props": { - "w": 43, - "h": 33, - "fill": "hsl(62 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02756": { - "id": "shape:perf:02756", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 1728, - "rot": 0, - "props": { - "w": 47, - "h": 37, - "fill": "hsl(309 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02757": { - "id": "shape:perf:02757", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 1728, - "rot": 0, - "props": { - "w": 33, - "h": 32, - "fill": "hsl(201 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02758": { - "id": "shape:perf:02758", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 1728, - "rot": 0, - "props": { - "w": 44, - "h": 29, - "fill": "hsl(125 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02759": { - "id": "shape:perf:02759", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 1728, - "rot": 0, - "props": { - "w": 47, - "h": 38, - "fill": "hsl(267 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02760": { - "id": "shape:perf:02760", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 1728, - "rot": 0, - "props": { - "w": 35, - "h": 37, - "fill": "hsl(352 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02761": { - "id": "shape:perf:02761", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 1728, - "rot": 0, - "props": { - "w": 28, - "h": 45, - "fill": "hsl(29 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02762": { - "id": "shape:perf:02762", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 1728, - "rot": 0, - "props": { - "w": 25, - "h": 37, - "fill": "hsl(100 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02763": { - "id": "shape:perf:02763", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 1728, - "rot": 0, - "props": { - "w": 36, - "h": 25, - "fill": "hsl(183 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02764": { - "id": "shape:perf:02764", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 1728, - "rot": 0, - "props": { - "w": 47, - "h": 45, - "fill": "hsl(211 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02765": { - "id": "shape:perf:02765", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 1728, - "rot": 0, - "props": { - "w": 26, - "h": 41, - "fill": "hsl(187 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02766": { - "id": "shape:perf:02766", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 1728, - "rot": 0, - "props": { - "w": 28, - "h": 31, - "fill": "hsl(177 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02767": { - "id": "shape:perf:02767", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 1728, - "rot": 0, - "props": { - "w": 45, - "h": 34, - "fill": "hsl(357 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02768": { - "id": "shape:perf:02768", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 1728, - "rot": 0, - "props": { - "w": 43, - "h": 38, - "fill": "hsl(323 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02769": { - "id": "shape:perf:02769", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 1728, - "rot": 0, - "props": { - "w": 47, - "h": 44, - "fill": "hsl(296 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02770": { - "id": "shape:perf:02770", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 1728, - "rot": 0, - "props": { - "w": 26, - "h": 35, - "fill": "hsl(133 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02771": { - "id": "shape:perf:02771", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 1728, - "rot": 0, - "props": { - "w": 35, - "h": 47, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02772": { - "id": "shape:perf:02772", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 1728, - "rot": 0, - "props": { - "w": 45, - "h": 40, - "fill": "hsl(155 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02773": { - "id": "shape:perf:02773", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 1728, - "rot": 0, - "props": { - "w": 32, - "h": 47, - "fill": "hsl(36 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02774": { - "id": "shape:perf:02774", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 1728, - "rot": 0, - "props": { - "w": 37, - "h": 38, - "fill": "hsl(132 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02775": { - "id": "shape:perf:02775", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 1728, - "rot": 0, - "props": { - "w": 39, - "h": 43, - "fill": "hsl(348 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02776": { - "id": "shape:perf:02776", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 1728, - "rot": 0, - "props": { - "w": 30, - "h": 38, - "fill": "hsl(185 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02777": { - "id": "shape:perf:02777", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 1728, - "rot": 0, - "props": { - "w": 28, - "h": 36, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02778": { - "id": "shape:perf:02778", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 1728, - "rot": 0, - "props": { - "w": 46, - "h": 35, - "fill": "hsl(192 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02779": { - "id": "shape:perf:02779", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 1728, - "rot": 0, - "props": { - "w": 25, - "h": 32, - "fill": "hsl(44 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02780": { - "id": "shape:perf:02780", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 1728, - "rot": 0, - "props": { - "w": 28, - "h": 30, - "fill": "hsl(150 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02781": { - "id": "shape:perf:02781", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 1728, - "rot": 0, - "props": { - "w": 25, - "h": 38, - "fill": "hsl(161 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02782": { - "id": "shape:perf:02782", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 1728, - "rot": 0, - "props": { - "w": 47, - "h": 35, - "fill": "hsl(57 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02783": { - "id": "shape:perf:02783", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 1728, - "rot": 0, - "props": { - "w": 30, - "h": 30, - "fill": "hsl(4 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02784": { - "id": "shape:perf:02784", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 1728, - "rot": 0, - "props": { - "w": 26, - "h": 37, - "fill": "hsl(168 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02785": { - "id": "shape:perf:02785", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 1728, - "rot": 0, - "props": { - "w": 33, - "h": 40, - "fill": "hsl(219 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02786": { - "id": "shape:perf:02786", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 1728, - "rot": 0, - "props": { - "w": 28, - "h": 31, - "fill": "hsl(19 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02787": { - "id": "shape:perf:02787", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 1728, - "rot": 0, - "props": { - "w": 26, - "h": 32, - "fill": "hsl(348 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02788": { - "id": "shape:perf:02788", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 1728, - "rot": 0, - "props": { - "w": 36, - "h": 42, - "fill": "hsl(264 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02789": { - "id": "shape:perf:02789", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 1728, - "rot": 0, - "props": { - "w": 43, - "h": 38, - "fill": "hsl(248 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02790": { - "id": "shape:perf:02790", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 1728, - "rot": 0, - "props": { - "w": 44, - "h": 28, - "fill": "hsl(63 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02791": { - "id": "shape:perf:02791", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 1728, - "rot": 0, - "props": { - "w": 43, - "h": 25, - "fill": "hsl(312 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02792": { - "id": "shape:perf:02792", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 1728, - "rot": 0, - "props": { - "w": 32, - "h": 27, - "fill": "hsl(57 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02793": { - "id": "shape:perf:02793", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 1728, - "rot": 0, - "props": { - "w": 43, - "h": 34, - "fill": "hsl(283 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02794": { - "id": "shape:perf:02794", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 1728, - "rot": 0, - "props": { - "w": 41, - "h": 39, - "fill": "hsl(218 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02795": { - "id": "shape:perf:02795", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 1728, - "rot": 0, - "props": { - "w": 38, - "h": 47, - "fill": "hsl(208 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02796": { - "id": "shape:perf:02796", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 1728, - "rot": 0, - "props": { - "w": 30, - "h": 29, - "fill": "hsl(87 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02797": { - "id": "shape:perf:02797", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 1728, - "rot": 0, - "props": { - "w": 46, - "h": 33, - "fill": "hsl(295 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02798": { - "id": "shape:perf:02798", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 1728, - "rot": 0, - "props": { - "w": 35, - "h": 28, - "fill": "hsl(35 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02799": { - "id": "shape:perf:02799", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 1728, - "rot": 0, - "props": { - "w": 40, - "h": 32, - "fill": "hsl(219 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02800": { - "id": "shape:perf:02800", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 1792, - "rot": 0, - "props": { - "w": 35, - "h": 37, - "fill": "hsl(227 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02801": { - "id": "shape:perf:02801", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 1792, - "rot": 0, - "props": { - "w": 38, - "h": 28, - "fill": "hsl(165 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02802": { - "id": "shape:perf:02802", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 1792, - "rot": 0, - "props": { - "w": 28, - "h": 35, - "fill": "hsl(243 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02803": { - "id": "shape:perf:02803", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 1792, - "rot": 0, - "props": { - "w": 24, - "h": 37, - "fill": "hsl(38 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02804": { - "id": "shape:perf:02804", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 1792, - "rot": 0, - "props": { - "w": 37, - "h": 27, - "fill": "hsl(89 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02805": { - "id": "shape:perf:02805", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 1792, - "rot": 0, - "props": { - "w": 44, - "h": 43, - "fill": "hsl(52 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02806": { - "id": "shape:perf:02806", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 1792, - "rot": 0, - "props": { - "w": 41, - "h": 43, - "fill": "hsl(17 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02807": { - "id": "shape:perf:02807", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 1792, - "rot": 0, - "props": { - "w": 35, - "h": 29, - "fill": "hsl(247 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02808": { - "id": "shape:perf:02808", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 1792, - "rot": 0, - "props": { - "w": 36, - "h": 32, - "fill": "hsl(278 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02809": { - "id": "shape:perf:02809", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 1792, - "rot": 0, - "props": { - "w": 42, - "h": 44, - "fill": "hsl(69 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02810": { - "id": "shape:perf:02810", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 1792, - "rot": 0, - "props": { - "w": 36, - "h": 25, - "fill": "hsl(278 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02811": { - "id": "shape:perf:02811", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 1792, - "rot": 0, - "props": { - "w": 25, - "h": 29, - "fill": "hsl(260 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02812": { - "id": "shape:perf:02812", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 1792, - "rot": 0, - "props": { - "w": 28, - "h": 41, - "fill": "hsl(226 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02813": { - "id": "shape:perf:02813", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 1792, - "rot": 0, - "props": { - "w": 38, - "h": 34, - "fill": "hsl(104 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02814": { - "id": "shape:perf:02814", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 1792, - "rot": 0, - "props": { - "w": 30, - "h": 29, - "fill": "hsl(165 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02815": { - "id": "shape:perf:02815", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 1792, - "rot": 0, - "props": { - "w": 31, - "h": 34, - "fill": "hsl(3 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02816": { - "id": "shape:perf:02816", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 1792, - "rot": 0, - "props": { - "w": 32, - "h": 34, - "fill": "hsl(297 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02817": { - "id": "shape:perf:02817", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 1792, - "rot": 0, - "props": { - "w": 37, - "h": 36, - "fill": "hsl(346 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02818": { - "id": "shape:perf:02818", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 1792, - "rot": 0, - "props": { - "w": 27, - "h": 38, - "fill": "hsl(162 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02819": { - "id": "shape:perf:02819", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 1792, - "rot": 0, - "props": { - "w": 25, - "h": 46, - "fill": "hsl(2 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02820": { - "id": "shape:perf:02820", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 1792, - "rot": 0, - "props": { - "w": 36, - "h": 35, - "fill": "hsl(85 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02821": { - "id": "shape:perf:02821", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 1792, - "rot": 0, - "props": { - "w": 26, - "h": 38, - "fill": "hsl(274 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02822": { - "id": "shape:perf:02822", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 1792, - "rot": 0, - "props": { - "w": 42, - "h": 41, - "fill": "hsl(271 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02823": { - "id": "shape:perf:02823", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 1792, - "rot": 0, - "props": { - "w": 38, - "h": 24, - "fill": "hsl(26 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02824": { - "id": "shape:perf:02824", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 1792, - "rot": 0, - "props": { - "w": 32, - "h": 46, - "fill": "hsl(79 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02825": { - "id": "shape:perf:02825", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 1792, - "rot": 0, - "props": { - "w": 35, - "h": 27, - "fill": "hsl(91 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02826": { - "id": "shape:perf:02826", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 1792, - "rot": 0, - "props": { - "w": 25, - "h": 24, - "fill": "hsl(59 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02827": { - "id": "shape:perf:02827", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 1792, - "rot": 0, - "props": { - "w": 47, - "h": 42, - "fill": "hsl(123 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02828": { - "id": "shape:perf:02828", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 1792, - "rot": 0, - "props": { - "w": 42, - "h": 39, - "fill": "hsl(231 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02829": { - "id": "shape:perf:02829", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 1792, - "rot": 0, - "props": { - "w": 44, - "h": 25, - "fill": "hsl(31 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02830": { - "id": "shape:perf:02830", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 1792, - "rot": 0, - "props": { - "w": 42, - "h": 38, - "fill": "hsl(309 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02831": { - "id": "shape:perf:02831", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 1792, - "rot": 0, - "props": { - "w": 43, - "h": 39, - "fill": "hsl(68 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02832": { - "id": "shape:perf:02832", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 1792, - "rot": 0, - "props": { - "w": 32, - "h": 36, - "fill": "hsl(255 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02833": { - "id": "shape:perf:02833", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 1792, - "rot": 0, - "props": { - "w": 43, - "h": 47, - "fill": "hsl(254 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02834": { - "id": "shape:perf:02834", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 1792, - "rot": 0, - "props": { - "w": 37, - "h": 45, - "fill": "hsl(328 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02835": { - "id": "shape:perf:02835", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 1792, - "rot": 0, - "props": { - "w": 41, - "h": 32, - "fill": "hsl(158 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02836": { - "id": "shape:perf:02836", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 1792, - "rot": 0, - "props": { - "w": 41, - "h": 47, - "fill": "hsl(63 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02837": { - "id": "shape:perf:02837", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 1792, - "rot": 0, - "props": { - "w": 34, - "h": 38, - "fill": "hsl(177 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02838": { - "id": "shape:perf:02838", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 1792, - "rot": 0, - "props": { - "w": 37, - "h": 33, - "fill": "hsl(177 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02839": { - "id": "shape:perf:02839", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 1792, - "rot": 0, - "props": { - "w": 27, - "h": 26, - "fill": "hsl(270 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02840": { - "id": "shape:perf:02840", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 1792, - "rot": 0, - "props": { - "w": 24, - "h": 30, - "fill": "hsl(295 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02841": { - "id": "shape:perf:02841", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 1792, - "rot": 0, - "props": { - "w": 39, - "h": 42, - "fill": "hsl(131 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02842": { - "id": "shape:perf:02842", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 1792, - "rot": 0, - "props": { - "w": 26, - "h": 36, - "fill": "hsl(252 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02843": { - "id": "shape:perf:02843", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 1792, - "rot": 0, - "props": { - "w": 36, - "h": 24, - "fill": "hsl(309 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02844": { - "id": "shape:perf:02844", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 1792, - "rot": 0, - "props": { - "w": 37, - "h": 25, - "fill": "hsl(101 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02845": { - "id": "shape:perf:02845", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 1792, - "rot": 0, - "props": { - "w": 28, - "h": 35, - "fill": "hsl(65 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02846": { - "id": "shape:perf:02846", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 1792, - "rot": 0, - "props": { - "w": 38, - "h": 28, - "fill": "hsl(110 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02847": { - "id": "shape:perf:02847", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 1792, - "rot": 0, - "props": { - "w": 34, - "h": 47, - "fill": "hsl(201 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02848": { - "id": "shape:perf:02848", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 1792, - "rot": 0, - "props": { - "w": 29, - "h": 24, - "fill": "hsl(222 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02849": { - "id": "shape:perf:02849", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 1792, - "rot": 0, - "props": { - "w": 46, - "h": 45, - "fill": "hsl(159 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02850": { - "id": "shape:perf:02850", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 1792, - "rot": 0, - "props": { - "w": 38, - "h": 41, - "fill": "hsl(303 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02851": { - "id": "shape:perf:02851", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 1792, - "rot": 0, - "props": { - "w": 30, - "h": 42, - "fill": "hsl(233 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02852": { - "id": "shape:perf:02852", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 1792, - "rot": 0, - "props": { - "w": 28, - "h": 35, - "fill": "hsl(70 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02853": { - "id": "shape:perf:02853", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 1792, - "rot": 0, - "props": { - "w": 44, - "h": 40, - "fill": "hsl(47 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02854": { - "id": "shape:perf:02854", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 1792, - "rot": 0, - "props": { - "w": 28, - "h": 44, - "fill": "hsl(294 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02855": { - "id": "shape:perf:02855", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 1792, - "rot": 0, - "props": { - "w": 28, - "h": 44, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02856": { - "id": "shape:perf:02856", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 1792, - "rot": 0, - "props": { - "w": 30, - "h": 37, - "fill": "hsl(281 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02857": { - "id": "shape:perf:02857", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 1792, - "rot": 0, - "props": { - "w": 26, - "h": 27, - "fill": "hsl(248 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02858": { - "id": "shape:perf:02858", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 1792, - "rot": 0, - "props": { - "w": 45, - "h": 28, - "fill": "hsl(8 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02859": { - "id": "shape:perf:02859", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 1792, - "rot": 0, - "props": { - "w": 44, - "h": 45, - "fill": "hsl(4 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02860": { - "id": "shape:perf:02860", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 1792, - "rot": 0, - "props": { - "w": 42, - "h": 28, - "fill": "hsl(331 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02861": { - "id": "shape:perf:02861", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 1792, - "rot": 0, - "props": { - "w": 33, - "h": 45, - "fill": "hsl(175 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02862": { - "id": "shape:perf:02862", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 1792, - "rot": 0, - "props": { - "w": 29, - "h": 34, - "fill": "hsl(54 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02863": { - "id": "shape:perf:02863", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 1792, - "rot": 0, - "props": { - "w": 32, - "h": 40, - "fill": "hsl(229 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02864": { - "id": "shape:perf:02864", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 1792, - "rot": 0, - "props": { - "w": 41, - "h": 24, - "fill": "hsl(356 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02865": { - "id": "shape:perf:02865", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 1792, - "rot": 0, - "props": { - "w": 36, - "h": 37, - "fill": "hsl(103 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02866": { - "id": "shape:perf:02866", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 1792, - "rot": 0, - "props": { - "w": 39, - "h": 33, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02867": { - "id": "shape:perf:02867", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 1792, - "rot": 0, - "props": { - "w": 45, - "h": 40, - "fill": "hsl(17 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02868": { - "id": "shape:perf:02868", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 1792, - "rot": 0, - "props": { - "w": 38, - "h": 42, - "fill": "hsl(187 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02869": { - "id": "shape:perf:02869", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 1792, - "rot": 0, - "props": { - "w": 45, - "h": 30, - "fill": "hsl(181 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02870": { - "id": "shape:perf:02870", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 1792, - "rot": 0, - "props": { - "w": 40, - "h": 39, - "fill": "hsl(214 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02871": { - "id": "shape:perf:02871", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 1792, - "rot": 0, - "props": { - "w": 35, - "h": 37, - "fill": "hsl(167 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02872": { - "id": "shape:perf:02872", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 1792, - "rot": 0, - "props": { - "w": 32, - "h": 27, - "fill": "hsl(227 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02873": { - "id": "shape:perf:02873", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 1792, - "rot": 0, - "props": { - "w": 31, - "h": 41, - "fill": "hsl(122 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02874": { - "id": "shape:perf:02874", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 1792, - "rot": 0, - "props": { - "w": 36, - "h": 47, - "fill": "hsl(155 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02875": { - "id": "shape:perf:02875", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 1792, - "rot": 0, - "props": { - "w": 27, - "h": 43, - "fill": "hsl(200 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02876": { - "id": "shape:perf:02876", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 1792, - "rot": 0, - "props": { - "w": 30, - "h": 45, - "fill": "hsl(264 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02877": { - "id": "shape:perf:02877", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 1792, - "rot": 0, - "props": { - "w": 31, - "h": 29, - "fill": "hsl(16 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02878": { - "id": "shape:perf:02878", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 1792, - "rot": 0, - "props": { - "w": 26, - "h": 29, - "fill": "hsl(359 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02879": { - "id": "shape:perf:02879", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 1792, - "rot": 0, - "props": { - "w": 40, - "h": 40, - "fill": "hsl(272 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02880": { - "id": "shape:perf:02880", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 1792, - "rot": 0, - "props": { - "w": 37, - "h": 43, - "fill": "hsl(291 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02881": { - "id": "shape:perf:02881", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 1792, - "rot": 0, - "props": { - "w": 41, - "h": 30, - "fill": "hsl(324 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02882": { - "id": "shape:perf:02882", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 1792, - "rot": 0, - "props": { - "w": 39, - "h": 43, - "fill": "hsl(60 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02883": { - "id": "shape:perf:02883", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 1792, - "rot": 0, - "props": { - "w": 27, - "h": 36, - "fill": "hsl(324 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02884": { - "id": "shape:perf:02884", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 1792, - "rot": 0, - "props": { - "w": 28, - "h": 41, - "fill": "hsl(322 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02885": { - "id": "shape:perf:02885", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 1792, - "rot": 0, - "props": { - "w": 37, - "h": 44, - "fill": "hsl(238 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02886": { - "id": "shape:perf:02886", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 1792, - "rot": 0, - "props": { - "w": 34, - "h": 36, - "fill": "hsl(332 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02887": { - "id": "shape:perf:02887", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 1792, - "rot": 0, - "props": { - "w": 27, - "h": 46, - "fill": "hsl(209 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02888": { - "id": "shape:perf:02888", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 1792, - "rot": 0, - "props": { - "w": 46, - "h": 37, - "fill": "hsl(240 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02889": { - "id": "shape:perf:02889", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 1792, - "rot": 0, - "props": { - "w": 28, - "h": 44, - "fill": "hsl(206 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02890": { - "id": "shape:perf:02890", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 1792, - "rot": 0, - "props": { - "w": 35, - "h": 38, - "fill": "hsl(297 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02891": { - "id": "shape:perf:02891", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 1792, - "rot": 0, - "props": { - "w": 45, - "h": 36, - "fill": "hsl(337 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02892": { - "id": "shape:perf:02892", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 1792, - "rot": 0, - "props": { - "w": 33, - "h": 38, - "fill": "hsl(56 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02893": { - "id": "shape:perf:02893", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 1792, - "rot": 0, - "props": { - "w": 34, - "h": 29, - "fill": "hsl(75 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02894": { - "id": "shape:perf:02894", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 1792, - "rot": 0, - "props": { - "w": 31, - "h": 30, - "fill": "hsl(242 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02895": { - "id": "shape:perf:02895", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 1792, - "rot": 0, - "props": { - "w": 43, - "h": 28, - "fill": "hsl(266 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02896": { - "id": "shape:perf:02896", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 1792, - "rot": 0, - "props": { - "w": 33, - "h": 25, - "fill": "hsl(13 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02897": { - "id": "shape:perf:02897", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 1792, - "rot": 0, - "props": { - "w": 45, - "h": 27, - "fill": "hsl(245 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02898": { - "id": "shape:perf:02898", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 1792, - "rot": 0, - "props": { - "w": 41, - "h": 26, - "fill": "hsl(304 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02899": { - "id": "shape:perf:02899", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 1792, - "rot": 0, - "props": { - "w": 42, - "h": 26, - "fill": "hsl(2 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02900": { - "id": "shape:perf:02900", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 1856, - "rot": 0, - "props": { - "w": 40, - "h": 34, - "fill": "hsl(14 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02901": { - "id": "shape:perf:02901", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 1856, - "rot": 0, - "props": { - "w": 44, - "h": 32, - "fill": "hsl(19 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02902": { - "id": "shape:perf:02902", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 1856, - "rot": 0, - "props": { - "w": 37, - "h": 47, - "fill": "hsl(29 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02903": { - "id": "shape:perf:02903", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 1856, - "rot": 0, - "props": { - "w": 29, - "h": 39, - "fill": "hsl(190 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02904": { - "id": "shape:perf:02904", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 1856, - "rot": 0, - "props": { - "w": 27, - "h": 43, - "fill": "hsl(137 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02905": { - "id": "shape:perf:02905", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 1856, - "rot": 0, - "props": { - "w": 43, - "h": 38, - "fill": "hsl(351 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02906": { - "id": "shape:perf:02906", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 1856, - "rot": 0, - "props": { - "w": 47, - "h": 36, - "fill": "hsl(232 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02907": { - "id": "shape:perf:02907", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 1856, - "rot": 0, - "props": { - "w": 26, - "h": 32, - "fill": "hsl(354 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02908": { - "id": "shape:perf:02908", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 1856, - "rot": 0, - "props": { - "w": 25, - "h": 39, - "fill": "hsl(107 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02909": { - "id": "shape:perf:02909", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 1856, - "rot": 0, - "props": { - "w": 42, - "h": 30, - "fill": "hsl(298 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02910": { - "id": "shape:perf:02910", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 1856, - "rot": 0, - "props": { - "w": 47, - "h": 47, - "fill": "hsl(51 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02911": { - "id": "shape:perf:02911", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 1856, - "rot": 0, - "props": { - "w": 34, - "h": 44, - "fill": "hsl(211 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02912": { - "id": "shape:perf:02912", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 1856, - "rot": 0, - "props": { - "w": 40, - "h": 46, - "fill": "hsl(21 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02913": { - "id": "shape:perf:02913", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 1856, - "rot": 0, - "props": { - "w": 33, - "h": 24, - "fill": "hsl(341 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02914": { - "id": "shape:perf:02914", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 1856, - "rot": 0, - "props": { - "w": 33, - "h": 32, - "fill": "hsl(158 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02915": { - "id": "shape:perf:02915", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 1856, - "rot": 0, - "props": { - "w": 29, - "h": 25, - "fill": "hsl(144 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02916": { - "id": "shape:perf:02916", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 1856, - "rot": 0, - "props": { - "w": 32, - "h": 37, - "fill": "hsl(26 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02917": { - "id": "shape:perf:02917", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 1856, - "rot": 0, - "props": { - "w": 38, - "h": 39, - "fill": "hsl(264 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02918": { - "id": "shape:perf:02918", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 1856, - "rot": 0, - "props": { - "w": 36, - "h": 25, - "fill": "hsl(164 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02919": { - "id": "shape:perf:02919", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 1856, - "rot": 0, - "props": { - "w": 41, - "h": 37, - "fill": "hsl(281 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02920": { - "id": "shape:perf:02920", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 1856, - "rot": 0, - "props": { - "w": 32, - "h": 37, - "fill": "hsl(326 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02921": { - "id": "shape:perf:02921", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 1856, - "rot": 0, - "props": { - "w": 46, - "h": 46, - "fill": "hsl(234 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02922": { - "id": "shape:perf:02922", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 1856, - "rot": 0, - "props": { - "w": 37, - "h": 36, - "fill": "hsl(287 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02923": { - "id": "shape:perf:02923", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 1856, - "rot": 0, - "props": { - "w": 32, - "h": 39, - "fill": "hsl(218 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02924": { - "id": "shape:perf:02924", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 1856, - "rot": 0, - "props": { - "w": 37, - "h": 34, - "fill": "hsl(140 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02925": { - "id": "shape:perf:02925", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 1856, - "rot": 0, - "props": { - "w": 31, - "h": 33, - "fill": "hsl(160 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02926": { - "id": "shape:perf:02926", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 1856, - "rot": 0, - "props": { - "w": 40, - "h": 29, - "fill": "hsl(165 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02927": { - "id": "shape:perf:02927", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 1856, - "rot": 0, - "props": { - "w": 45, - "h": 34, - "fill": "hsl(62 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02928": { - "id": "shape:perf:02928", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 1856, - "rot": 0, - "props": { - "w": 42, - "h": 29, - "fill": "hsl(41 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02929": { - "id": "shape:perf:02929", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 1856, - "rot": 0, - "props": { - "w": 28, - "h": 39, - "fill": "hsl(48 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02930": { - "id": "shape:perf:02930", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 1856, - "rot": 0, - "props": { - "w": 26, - "h": 32, - "fill": "hsl(27 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02931": { - "id": "shape:perf:02931", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 1856, - "rot": 0, - "props": { - "w": 39, - "h": 32, - "fill": "hsl(9 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02932": { - "id": "shape:perf:02932", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 1856, - "rot": 0, - "props": { - "w": 43, - "h": 28, - "fill": "hsl(342 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02933": { - "id": "shape:perf:02933", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 1856, - "rot": 0, - "props": { - "w": 46, - "h": 45, - "fill": "hsl(192 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02934": { - "id": "shape:perf:02934", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 1856, - "rot": 0, - "props": { - "w": 32, - "h": 46, - "fill": "hsl(178 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02935": { - "id": "shape:perf:02935", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 1856, - "rot": 0, - "props": { - "w": 44, - "h": 33, - "fill": "hsl(11 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02936": { - "id": "shape:perf:02936", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 1856, - "rot": 0, - "props": { - "w": 28, - "h": 29, - "fill": "hsl(161 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02937": { - "id": "shape:perf:02937", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 1856, - "rot": 0, - "props": { - "w": 45, - "h": 35, - "fill": "hsl(145 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02938": { - "id": "shape:perf:02938", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 1856, - "rot": 0, - "props": { - "w": 29, - "h": 28, - "fill": "hsl(218 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02939": { - "id": "shape:perf:02939", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 1856, - "rot": 0, - "props": { - "w": 27, - "h": 28, - "fill": "hsl(165 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02940": { - "id": "shape:perf:02940", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 1856, - "rot": 0, - "props": { - "w": 37, - "h": 36, - "fill": "hsl(83 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02941": { - "id": "shape:perf:02941", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 1856, - "rot": 0, - "props": { - "w": 44, - "h": 29, - "fill": "hsl(173 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02942": { - "id": "shape:perf:02942", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 1856, - "rot": 0, - "props": { - "w": 43, - "h": 42, - "fill": "hsl(248 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02943": { - "id": "shape:perf:02943", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 1856, - "rot": 0, - "props": { - "w": 29, - "h": 26, - "fill": "hsl(333 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02944": { - "id": "shape:perf:02944", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 1856, - "rot": 0, - "props": { - "w": 37, - "h": 44, - "fill": "hsl(266 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02945": { - "id": "shape:perf:02945", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 1856, - "rot": 0, - "props": { - "w": 37, - "h": 31, - "fill": "hsl(348 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02946": { - "id": "shape:perf:02946", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 1856, - "rot": 0, - "props": { - "w": 42, - "h": 28, - "fill": "hsl(271 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02947": { - "id": "shape:perf:02947", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 1856, - "rot": 0, - "props": { - "w": 26, - "h": 37, - "fill": "hsl(156 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02948": { - "id": "shape:perf:02948", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 1856, - "rot": 0, - "props": { - "w": 24, - "h": 35, - "fill": "hsl(329 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02949": { - "id": "shape:perf:02949", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 1856, - "rot": 0, - "props": { - "w": 30, - "h": 28, - "fill": "hsl(90 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02950": { - "id": "shape:perf:02950", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 1856, - "rot": 0, - "props": { - "w": 29, - "h": 41, - "fill": "hsl(226 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02951": { - "id": "shape:perf:02951", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 1856, - "rot": 0, - "props": { - "w": 26, - "h": 47, - "fill": "hsl(311 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02952": { - "id": "shape:perf:02952", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 1856, - "rot": 0, - "props": { - "w": 36, - "h": 29, - "fill": "hsl(262 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02953": { - "id": "shape:perf:02953", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 1856, - "rot": 0, - "props": { - "w": 27, - "h": 35, - "fill": "hsl(334 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02954": { - "id": "shape:perf:02954", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 1856, - "rot": 0, - "props": { - "w": 30, - "h": 25, - "fill": "hsl(266 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02955": { - "id": "shape:perf:02955", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 1856, - "rot": 0, - "props": { - "w": 47, - "h": 42, - "fill": "hsl(234 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02956": { - "id": "shape:perf:02956", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 1856, - "rot": 0, - "props": { - "w": 24, - "h": 47, - "fill": "hsl(220 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02957": { - "id": "shape:perf:02957", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 1856, - "rot": 0, - "props": { - "w": 40, - "h": 45, - "fill": "hsl(149 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02958": { - "id": "shape:perf:02958", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 1856, - "rot": 0, - "props": { - "w": 28, - "h": 28, - "fill": "hsl(311 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02959": { - "id": "shape:perf:02959", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 1856, - "rot": 0, - "props": { - "w": 36, - "h": 25, - "fill": "hsl(185 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02960": { - "id": "shape:perf:02960", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 1856, - "rot": 0, - "props": { - "w": 43, - "h": 38, - "fill": "hsl(70 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02961": { - "id": "shape:perf:02961", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 1856, - "rot": 0, - "props": { - "w": 43, - "h": 46, - "fill": "hsl(237 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02962": { - "id": "shape:perf:02962", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 1856, - "rot": 0, - "props": { - "w": 47, - "h": 24, - "fill": "hsl(108 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02963": { - "id": "shape:perf:02963", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 1856, - "rot": 0, - "props": { - "w": 43, - "h": 34, - "fill": "hsl(166 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02964": { - "id": "shape:perf:02964", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 1856, - "rot": 0, - "props": { - "w": 28, - "h": 34, - "fill": "hsl(330 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02965": { - "id": "shape:perf:02965", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 1856, - "rot": 0, - "props": { - "w": 39, - "h": 38, - "fill": "hsl(304 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02966": { - "id": "shape:perf:02966", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 1856, - "rot": 0, - "props": { - "w": 44, - "h": 27, - "fill": "hsl(78 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02967": { - "id": "shape:perf:02967", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 1856, - "rot": 0, - "props": { - "w": 38, - "h": 42, - "fill": "hsl(165 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02968": { - "id": "shape:perf:02968", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 1856, - "rot": 0, - "props": { - "w": 30, - "h": 28, - "fill": "hsl(149 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02969": { - "id": "shape:perf:02969", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 1856, - "rot": 0, - "props": { - "w": 47, - "h": 43, - "fill": "hsl(3 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02970": { - "id": "shape:perf:02970", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 1856, - "rot": 0, - "props": { - "w": 34, - "h": 44, - "fill": "hsl(55 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02971": { - "id": "shape:perf:02971", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 1856, - "rot": 0, - "props": { - "w": 36, - "h": 35, - "fill": "hsl(153 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02972": { - "id": "shape:perf:02972", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 1856, - "rot": 0, - "props": { - "w": 28, - "h": 33, - "fill": "hsl(272 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02973": { - "id": "shape:perf:02973", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 1856, - "rot": 0, - "props": { - "w": 28, - "h": 46, - "fill": "hsl(352 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02974": { - "id": "shape:perf:02974", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 1856, - "rot": 0, - "props": { - "w": 30, - "h": 34, - "fill": "hsl(326 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02975": { - "id": "shape:perf:02975", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 1856, - "rot": 0, - "props": { - "w": 46, - "h": 39, - "fill": "hsl(194 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02976": { - "id": "shape:perf:02976", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 1856, - "rot": 0, - "props": { - "w": 41, - "h": 40, - "fill": "hsl(330 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02977": { - "id": "shape:perf:02977", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 1856, - "rot": 0, - "props": { - "w": 47, - "h": 26, - "fill": "hsl(36 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02978": { - "id": "shape:perf:02978", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 1856, - "rot": 0, - "props": { - "w": 42, - "h": 40, - "fill": "hsl(103 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02979": { - "id": "shape:perf:02979", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 1856, - "rot": 0, - "props": { - "w": 31, - "h": 31, - "fill": "hsl(333 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02980": { - "id": "shape:perf:02980", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 1856, - "rot": 0, - "props": { - "w": 41, - "h": 32, - "fill": "hsl(23 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02981": { - "id": "shape:perf:02981", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 1856, - "rot": 0, - "props": { - "w": 40, - "h": 27, - "fill": "hsl(223 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02982": { - "id": "shape:perf:02982", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 1856, - "rot": 0, - "props": { - "w": 47, - "h": 26, - "fill": "hsl(174 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02983": { - "id": "shape:perf:02983", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 1856, - "rot": 0, - "props": { - "w": 26, - "h": 32, - "fill": "hsl(92 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02984": { - "id": "shape:perf:02984", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 1856, - "rot": 0, - "props": { - "w": 36, - "h": 27, - "fill": "hsl(203 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02985": { - "id": "shape:perf:02985", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 1856, - "rot": 0, - "props": { - "w": 29, - "h": 44, - "fill": "hsl(246 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02986": { - "id": "shape:perf:02986", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 1856, - "rot": 0, - "props": { - "w": 32, - "h": 32, - "fill": "hsl(11 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02987": { - "id": "shape:perf:02987", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 1856, - "rot": 0, - "props": { - "w": 47, - "h": 29, - "fill": "hsl(304 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02988": { - "id": "shape:perf:02988", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 1856, - "rot": 0, - "props": { - "w": 33, - "h": 30, - "fill": "hsl(275 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02989": { - "id": "shape:perf:02989", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 1856, - "rot": 0, - "props": { - "w": 38, - "h": 30, - "fill": "hsl(123 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02990": { - "id": "shape:perf:02990", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 1856, - "rot": 0, - "props": { - "w": 44, - "h": 39, - "fill": "hsl(207 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02991": { - "id": "shape:perf:02991", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 1856, - "rot": 0, - "props": { - "w": 47, - "h": 28, - "fill": "hsl(79 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02992": { - "id": "shape:perf:02992", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 1856, - "rot": 0, - "props": { - "w": 27, - "h": 41, - "fill": "hsl(340 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02993": { - "id": "shape:perf:02993", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 1856, - "rot": 0, - "props": { - "w": 32, - "h": 40, - "fill": "hsl(14 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02994": { - "id": "shape:perf:02994", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 1856, - "rot": 0, - "props": { - "w": 38, - "h": 32, - "fill": "hsl(353 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:02995": { - "id": "shape:perf:02995", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 1856, - "rot": 0, - "props": { - "w": 38, - "h": 35, - "fill": "hsl(111 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:02996": { - "id": "shape:perf:02996", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 1856, - "rot": 0, - "props": { - "w": 29, - "h": 44, - "fill": "hsl(20 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:02997": { - "id": "shape:perf:02997", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 1856, - "rot": 0, - "props": { - "w": 30, - "h": 40, - "fill": "hsl(148 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:02998": { - "id": "shape:perf:02998", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 1856, - "rot": 0, - "props": { - "w": 39, - "h": 35, - "fill": "hsl(163 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:02999": { - "id": "shape:perf:02999", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 1856, - "rot": 0, - "props": { - "w": 33, - "h": 41, - "fill": "hsl(243 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03000": { - "id": "shape:perf:03000", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 1920, - "rot": 0, - "props": { - "w": 30, - "h": 39, - "fill": "hsl(23 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03001": { - "id": "shape:perf:03001", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 1920, - "rot": 0, - "props": { - "w": 24, - "h": 34, - "fill": "hsl(163 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03002": { - "id": "shape:perf:03002", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 1920, - "rot": 0, - "props": { - "w": 27, - "h": 28, - "fill": "hsl(255 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03003": { - "id": "shape:perf:03003", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 1920, - "rot": 0, - "props": { - "w": 47, - "h": 28, - "fill": "hsl(173 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03004": { - "id": "shape:perf:03004", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 1920, - "rot": 0, - "props": { - "w": 28, - "h": 24, - "fill": "hsl(14 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03005": { - "id": "shape:perf:03005", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 1920, - "rot": 0, - "props": { - "w": 41, - "h": 27, - "fill": "hsl(110 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03006": { - "id": "shape:perf:03006", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 1920, - "rot": 0, - "props": { - "w": 30, - "h": 37, - "fill": "hsl(143 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03007": { - "id": "shape:perf:03007", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 1920, - "rot": 0, - "props": { - "w": 40, - "h": 25, - "fill": "hsl(30 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03008": { - "id": "shape:perf:03008", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 1920, - "rot": 0, - "props": { - "w": 30, - "h": 24, - "fill": "hsl(131 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03009": { - "id": "shape:perf:03009", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 1920, - "rot": 0, - "props": { - "w": 34, - "h": 28, - "fill": "hsl(96 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03010": { - "id": "shape:perf:03010", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 1920, - "rot": 0, - "props": { - "w": 30, - "h": 34, - "fill": "hsl(102 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03011": { - "id": "shape:perf:03011", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 1920, - "rot": 0, - "props": { - "w": 33, - "h": 43, - "fill": "hsl(159 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03012": { - "id": "shape:perf:03012", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 1920, - "rot": 0, - "props": { - "w": 32, - "h": 29, - "fill": "hsl(223 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03013": { - "id": "shape:perf:03013", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 1920, - "rot": 0, - "props": { - "w": 47, - "h": 44, - "fill": "hsl(279 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03014": { - "id": "shape:perf:03014", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 1920, - "rot": 0, - "props": { - "w": 45, - "h": 42, - "fill": "hsl(321 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03015": { - "id": "shape:perf:03015", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 1920, - "rot": 0, - "props": { - "w": 31, - "h": 45, - "fill": "hsl(278 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03016": { - "id": "shape:perf:03016", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 1920, - "rot": 0, - "props": { - "w": 37, - "h": 24, - "fill": "hsl(20 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03017": { - "id": "shape:perf:03017", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 1920, - "rot": 0, - "props": { - "w": 31, - "h": 42, - "fill": "hsl(164 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03018": { - "id": "shape:perf:03018", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 1920, - "rot": 0, - "props": { - "w": 42, - "h": 31, - "fill": "hsl(226 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03019": { - "id": "shape:perf:03019", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 1920, - "rot": 0, - "props": { - "w": 26, - "h": 25, - "fill": "hsl(36 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03020": { - "id": "shape:perf:03020", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 1920, - "rot": 0, - "props": { - "w": 26, - "h": 28, - "fill": "hsl(267 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03021": { - "id": "shape:perf:03021", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 1920, - "rot": 0, - "props": { - "w": 37, - "h": 25, - "fill": "hsl(172 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03022": { - "id": "shape:perf:03022", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 1920, - "rot": 0, - "props": { - "w": 47, - "h": 39, - "fill": "hsl(219 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03023": { - "id": "shape:perf:03023", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 1920, - "rot": 0, - "props": { - "w": 42, - "h": 33, - "fill": "hsl(232 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03024": { - "id": "shape:perf:03024", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 1920, - "rot": 0, - "props": { - "w": 43, - "h": 41, - "fill": "hsl(267 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03025": { - "id": "shape:perf:03025", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 1920, - "rot": 0, - "props": { - "w": 33, - "h": 32, - "fill": "hsl(293 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03026": { - "id": "shape:perf:03026", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 1920, - "rot": 0, - "props": { - "w": 25, - "h": 47, - "fill": "hsl(237 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03027": { - "id": "shape:perf:03027", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 1920, - "rot": 0, - "props": { - "w": 31, - "h": 45, - "fill": "hsl(72 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03028": { - "id": "shape:perf:03028", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 1920, - "rot": 0, - "props": { - "w": 43, - "h": 33, - "fill": "hsl(339 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03029": { - "id": "shape:perf:03029", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 1920, - "rot": 0, - "props": { - "w": 25, - "h": 47, - "fill": "hsl(62 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03030": { - "id": "shape:perf:03030", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 1920, - "rot": 0, - "props": { - "w": 46, - "h": 44, - "fill": "hsl(86 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03031": { - "id": "shape:perf:03031", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 1920, - "rot": 0, - "props": { - "w": 25, - "h": 27, - "fill": "hsl(341 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03032": { - "id": "shape:perf:03032", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 1920, - "rot": 0, - "props": { - "w": 28, - "h": 36, - "fill": "hsl(138 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03033": { - "id": "shape:perf:03033", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 1920, - "rot": 0, - "props": { - "w": 41, - "h": 34, - "fill": "hsl(238 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03034": { - "id": "shape:perf:03034", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 1920, - "rot": 0, - "props": { - "w": 35, - "h": 45, - "fill": "hsl(95 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03035": { - "id": "shape:perf:03035", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 1920, - "rot": 0, - "props": { - "w": 43, - "h": 44, - "fill": "hsl(128 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03036": { - "id": "shape:perf:03036", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 1920, - "rot": 0, - "props": { - "w": 40, - "h": 43, - "fill": "hsl(74 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03037": { - "id": "shape:perf:03037", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 1920, - "rot": 0, - "props": { - "w": 47, - "h": 41, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03038": { - "id": "shape:perf:03038", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 1920, - "rot": 0, - "props": { - "w": 45, - "h": 31, - "fill": "hsl(33 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03039": { - "id": "shape:perf:03039", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 1920, - "rot": 0, - "props": { - "w": 44, - "h": 33, - "fill": "hsl(38 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03040": { - "id": "shape:perf:03040", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 1920, - "rot": 0, - "props": { - "w": 44, - "h": 24, - "fill": "hsl(202 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03041": { - "id": "shape:perf:03041", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 1920, - "rot": 0, - "props": { - "w": 46, - "h": 30, - "fill": "hsl(49 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03042": { - "id": "shape:perf:03042", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 1920, - "rot": 0, - "props": { - "w": 29, - "h": 36, - "fill": "hsl(28 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03043": { - "id": "shape:perf:03043", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 1920, - "rot": 0, - "props": { - "w": 24, - "h": 43, - "fill": "hsl(67 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03044": { - "id": "shape:perf:03044", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 1920, - "rot": 0, - "props": { - "w": 28, - "h": 34, - "fill": "hsl(45 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03045": { - "id": "shape:perf:03045", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 1920, - "rot": 0, - "props": { - "w": 24, - "h": 26, - "fill": "hsl(57 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03046": { - "id": "shape:perf:03046", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 1920, - "rot": 0, - "props": { - "w": 43, - "h": 37, - "fill": "hsl(198 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03047": { - "id": "shape:perf:03047", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 1920, - "rot": 0, - "props": { - "w": 28, - "h": 39, - "fill": "hsl(223 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03048": { - "id": "shape:perf:03048", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 1920, - "rot": 0, - "props": { - "w": 44, - "h": 36, - "fill": "hsl(13 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03049": { - "id": "shape:perf:03049", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 1920, - "rot": 0, - "props": { - "w": 26, - "h": 30, - "fill": "hsl(18 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03050": { - "id": "shape:perf:03050", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 1920, - "rot": 0, - "props": { - "w": 28, - "h": 43, - "fill": "hsl(25 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03051": { - "id": "shape:perf:03051", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 1920, - "rot": 0, - "props": { - "w": 40, - "h": 47, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03052": { - "id": "shape:perf:03052", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 1920, - "rot": 0, - "props": { - "w": 33, - "h": 32, - "fill": "hsl(142 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03053": { - "id": "shape:perf:03053", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 1920, - "rot": 0, - "props": { - "w": 34, - "h": 24, - "fill": "hsl(29 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03054": { - "id": "shape:perf:03054", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 1920, - "rot": 0, - "props": { - "w": 47, - "h": 47, - "fill": "hsl(110 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03055": { - "id": "shape:perf:03055", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 1920, - "rot": 0, - "props": { - "w": 38, - "h": 41, - "fill": "hsl(11 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03056": { - "id": "shape:perf:03056", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 1920, - "rot": 0, - "props": { - "w": 38, - "h": 29, - "fill": "hsl(239 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03057": { - "id": "shape:perf:03057", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 1920, - "rot": 0, - "props": { - "w": 44, - "h": 29, - "fill": "hsl(106 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03058": { - "id": "shape:perf:03058", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 1920, - "rot": 0, - "props": { - "w": 34, - "h": 43, - "fill": "hsl(343 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03059": { - "id": "shape:perf:03059", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 1920, - "rot": 0, - "props": { - "w": 32, - "h": 30, - "fill": "hsl(149 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03060": { - "id": "shape:perf:03060", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 1920, - "rot": 0, - "props": { - "w": 25, - "h": 32, - "fill": "hsl(216 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03061": { - "id": "shape:perf:03061", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 1920, - "rot": 0, - "props": { - "w": 29, - "h": 44, - "fill": "hsl(207 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03062": { - "id": "shape:perf:03062", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 1920, - "rot": 0, - "props": { - "w": 40, - "h": 34, - "fill": "hsl(156 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03063": { - "id": "shape:perf:03063", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 1920, - "rot": 0, - "props": { - "w": 25, - "h": 43, - "fill": "hsl(334 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03064": { - "id": "shape:perf:03064", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 1920, - "rot": 0, - "props": { - "w": 24, - "h": 41, - "fill": "hsl(205 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03065": { - "id": "shape:perf:03065", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 1920, - "rot": 0, - "props": { - "w": 32, - "h": 31, - "fill": "hsl(294 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03066": { - "id": "shape:perf:03066", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 1920, - "rot": 0, - "props": { - "w": 46, - "h": 36, - "fill": "hsl(144 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03067": { - "id": "shape:perf:03067", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 1920, - "rot": 0, - "props": { - "w": 42, - "h": 44, - "fill": "hsl(333 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03068": { - "id": "shape:perf:03068", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 1920, - "rot": 0, - "props": { - "w": 37, - "h": 24, - "fill": "hsl(119 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03069": { - "id": "shape:perf:03069", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 1920, - "rot": 0, - "props": { - "w": 40, - "h": 41, - "fill": "hsl(176 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03070": { - "id": "shape:perf:03070", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 1920, - "rot": 0, - "props": { - "w": 35, - "h": 35, - "fill": "hsl(87 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03071": { - "id": "shape:perf:03071", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 1920, - "rot": 0, - "props": { - "w": 25, - "h": 27, - "fill": "hsl(16 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03072": { - "id": "shape:perf:03072", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 1920, - "rot": 0, - "props": { - "w": 41, - "h": 29, - "fill": "hsl(246 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03073": { - "id": "shape:perf:03073", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 1920, - "rot": 0, - "props": { - "w": 41, - "h": 42, - "fill": "hsl(55 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03074": { - "id": "shape:perf:03074", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 1920, - "rot": 0, - "props": { - "w": 32, - "h": 33, - "fill": "hsl(27 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03075": { - "id": "shape:perf:03075", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 1920, - "rot": 0, - "props": { - "w": 40, - "h": 29, - "fill": "hsl(1 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03076": { - "id": "shape:perf:03076", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 1920, - "rot": 0, - "props": { - "w": 42, - "h": 38, - "fill": "hsl(211 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03077": { - "id": "shape:perf:03077", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 1920, - "rot": 0, - "props": { - "w": 40, - "h": 33, - "fill": "hsl(264 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03078": { - "id": "shape:perf:03078", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 1920, - "rot": 0, - "props": { - "w": 32, - "h": 32, - "fill": "hsl(354 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03079": { - "id": "shape:perf:03079", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 1920, - "rot": 0, - "props": { - "w": 43, - "h": 41, - "fill": "hsl(144 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03080": { - "id": "shape:perf:03080", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 1920, - "rot": 0, - "props": { - "w": 43, - "h": 32, - "fill": "hsl(200 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03081": { - "id": "shape:perf:03081", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 1920, - "rot": 0, - "props": { - "w": 47, - "h": 41, - "fill": "hsl(194 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03082": { - "id": "shape:perf:03082", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 1920, - "rot": 0, - "props": { - "w": 35, - "h": 37, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03083": { - "id": "shape:perf:03083", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 1920, - "rot": 0, - "props": { - "w": 36, - "h": 32, - "fill": "hsl(53 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03084": { - "id": "shape:perf:03084", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 1920, - "rot": 0, - "props": { - "w": 32, - "h": 25, - "fill": "hsl(190 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03085": { - "id": "shape:perf:03085", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 1920, - "rot": 0, - "props": { - "w": 34, - "h": 44, - "fill": "hsl(154 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03086": { - "id": "shape:perf:03086", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 1920, - "rot": 0, - "props": { - "w": 36, - "h": 24, - "fill": "hsl(122 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03087": { - "id": "shape:perf:03087", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 1920, - "rot": 0, - "props": { - "w": 38, - "h": 40, - "fill": "hsl(184 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03088": { - "id": "shape:perf:03088", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 1920, - "rot": 0, - "props": { - "w": 43, - "h": 32, - "fill": "hsl(177 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03089": { - "id": "shape:perf:03089", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 1920, - "rot": 0, - "props": { - "w": 40, - "h": 35, - "fill": "hsl(201 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03090": { - "id": "shape:perf:03090", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 1920, - "rot": 0, - "props": { - "w": 43, - "h": 32, - "fill": "hsl(200 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03091": { - "id": "shape:perf:03091", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 1920, - "rot": 0, - "props": { - "w": 24, - "h": 31, - "fill": "hsl(311 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03092": { - "id": "shape:perf:03092", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 1920, - "rot": 0, - "props": { - "w": 34, - "h": 27, - "fill": "hsl(184 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03093": { - "id": "shape:perf:03093", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 1920, - "rot": 0, - "props": { - "w": 42, - "h": 31, - "fill": "hsl(214 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03094": { - "id": "shape:perf:03094", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 1920, - "rot": 0, - "props": { - "w": 37, - "h": 33, - "fill": "hsl(262 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03095": { - "id": "shape:perf:03095", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 1920, - "rot": 0, - "props": { - "w": 41, - "h": 38, - "fill": "hsl(237 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03096": { - "id": "shape:perf:03096", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 1920, - "rot": 0, - "props": { - "w": 47, - "h": 29, - "fill": "hsl(5 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03097": { - "id": "shape:perf:03097", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 1920, - "rot": 0, - "props": { - "w": 44, - "h": 43, - "fill": "hsl(136 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03098": { - "id": "shape:perf:03098", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 1920, - "rot": 0, - "props": { - "w": 36, - "h": 35, - "fill": "hsl(96 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03099": { - "id": "shape:perf:03099", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 1920, - "rot": 0, - "props": { - "w": 28, - "h": 28, - "fill": "hsl(73 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03100": { - "id": "shape:perf:03100", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 1984, - "rot": 0, - "props": { - "w": 38, - "h": 40, - "fill": "hsl(159 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03101": { - "id": "shape:perf:03101", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 1984, - "rot": 0, - "props": { - "w": 24, - "h": 28, - "fill": "hsl(142 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03102": { - "id": "shape:perf:03102", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 1984, - "rot": 0, - "props": { - "w": 36, - "h": 38, - "fill": "hsl(157 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03103": { - "id": "shape:perf:03103", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 1984, - "rot": 0, - "props": { - "w": 30, - "h": 31, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03104": { - "id": "shape:perf:03104", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 1984, - "rot": 0, - "props": { - "w": 41, - "h": 43, - "fill": "hsl(223 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03105": { - "id": "shape:perf:03105", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 1984, - "rot": 0, - "props": { - "w": 24, - "h": 24, - "fill": "hsl(191 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03106": { - "id": "shape:perf:03106", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 1984, - "rot": 0, - "props": { - "w": 35, - "h": 46, - "fill": "hsl(274 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03107": { - "id": "shape:perf:03107", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 1984, - "rot": 0, - "props": { - "w": 26, - "h": 28, - "fill": "hsl(137 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03108": { - "id": "shape:perf:03108", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 1984, - "rot": 0, - "props": { - "w": 46, - "h": 38, - "fill": "hsl(164 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03109": { - "id": "shape:perf:03109", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 1984, - "rot": 0, - "props": { - "w": 41, - "h": 40, - "fill": "hsl(349 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03110": { - "id": "shape:perf:03110", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 1984, - "rot": 0, - "props": { - "w": 39, - "h": 29, - "fill": "hsl(198 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03111": { - "id": "shape:perf:03111", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 1984, - "rot": 0, - "props": { - "w": 27, - "h": 27, - "fill": "hsl(35 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03112": { - "id": "shape:perf:03112", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 1984, - "rot": 0, - "props": { - "w": 43, - "h": 27, - "fill": "hsl(307 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03113": { - "id": "shape:perf:03113", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 1984, - "rot": 0, - "props": { - "w": 46, - "h": 43, - "fill": "hsl(94 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03114": { - "id": "shape:perf:03114", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 1984, - "rot": 0, - "props": { - "w": 28, - "h": 28, - "fill": "hsl(186 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03115": { - "id": "shape:perf:03115", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 1984, - "rot": 0, - "props": { - "w": 45, - "h": 31, - "fill": "hsl(168 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03116": { - "id": "shape:perf:03116", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 1984, - "rot": 0, - "props": { - "w": 45, - "h": 35, - "fill": "hsl(322 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03117": { - "id": "shape:perf:03117", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 1984, - "rot": 0, - "props": { - "w": 28, - "h": 35, - "fill": "hsl(293 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03118": { - "id": "shape:perf:03118", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 1984, - "rot": 0, - "props": { - "w": 35, - "h": 43, - "fill": "hsl(254 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03119": { - "id": "shape:perf:03119", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 1984, - "rot": 0, - "props": { - "w": 47, - "h": 28, - "fill": "hsl(38 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03120": { - "id": "shape:perf:03120", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 1984, - "rot": 0, - "props": { - "w": 30, - "h": 42, - "fill": "hsl(255 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03121": { - "id": "shape:perf:03121", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 1984, - "rot": 0, - "props": { - "w": 46, - "h": 24, - "fill": "hsl(160 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03122": { - "id": "shape:perf:03122", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 1984, - "rot": 0, - "props": { - "w": 28, - "h": 31, - "fill": "hsl(88 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03123": { - "id": "shape:perf:03123", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 1984, - "rot": 0, - "props": { - "w": 40, - "h": 25, - "fill": "hsl(39 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03124": { - "id": "shape:perf:03124", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 1984, - "rot": 0, - "props": { - "w": 42, - "h": 37, - "fill": "hsl(216 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03125": { - "id": "shape:perf:03125", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 1984, - "rot": 0, - "props": { - "w": 37, - "h": 44, - "fill": "hsl(255 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03126": { - "id": "shape:perf:03126", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 1984, - "rot": 0, - "props": { - "w": 44, - "h": 27, - "fill": "hsl(231 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03127": { - "id": "shape:perf:03127", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 1984, - "rot": 0, - "props": { - "w": 25, - "h": 27, - "fill": "hsl(206 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03128": { - "id": "shape:perf:03128", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 1984, - "rot": 0, - "props": { - "w": 28, - "h": 46, - "fill": "hsl(112 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03129": { - "id": "shape:perf:03129", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 1984, - "rot": 0, - "props": { - "w": 44, - "h": 24, - "fill": "hsl(23 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03130": { - "id": "shape:perf:03130", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 1984, - "rot": 0, - "props": { - "w": 37, - "h": 25, - "fill": "hsl(215 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03131": { - "id": "shape:perf:03131", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 1984, - "rot": 0, - "props": { - "w": 44, - "h": 36, - "fill": "hsl(122 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03132": { - "id": "shape:perf:03132", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 1984, - "rot": 0, - "props": { - "w": 32, - "h": 36, - "fill": "hsl(188 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03133": { - "id": "shape:perf:03133", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 1984, - "rot": 0, - "props": { - "w": 39, - "h": 29, - "fill": "hsl(86 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03134": { - "id": "shape:perf:03134", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 1984, - "rot": 0, - "props": { - "w": 40, - "h": 40, - "fill": "hsl(211 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03135": { - "id": "shape:perf:03135", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 1984, - "rot": 0, - "props": { - "w": 38, - "h": 30, - "fill": "hsl(314 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03136": { - "id": "shape:perf:03136", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 1984, - "rot": 0, - "props": { - "w": 30, - "h": 35, - "fill": "hsl(341 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03137": { - "id": "shape:perf:03137", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 1984, - "rot": 0, - "props": { - "w": 29, - "h": 26, - "fill": "hsl(85 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03138": { - "id": "shape:perf:03138", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 1984, - "rot": 0, - "props": { - "w": 32, - "h": 31, - "fill": "hsl(251 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03139": { - "id": "shape:perf:03139", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 1984, - "rot": 0, - "props": { - "w": 44, - "h": 24, - "fill": "hsl(162 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03140": { - "id": "shape:perf:03140", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 1984, - "rot": 0, - "props": { - "w": 24, - "h": 38, - "fill": "hsl(232 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03141": { - "id": "shape:perf:03141", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 1984, - "rot": 0, - "props": { - "w": 40, - "h": 37, - "fill": "hsl(312 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03142": { - "id": "shape:perf:03142", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 1984, - "rot": 0, - "props": { - "w": 42, - "h": 33, - "fill": "hsl(155 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03143": { - "id": "shape:perf:03143", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 1984, - "rot": 0, - "props": { - "w": 45, - "h": 43, - "fill": "hsl(33 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03144": { - "id": "shape:perf:03144", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 1984, - "rot": 0, - "props": { - "w": 31, - "h": 41, - "fill": "hsl(138 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03145": { - "id": "shape:perf:03145", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 1984, - "rot": 0, - "props": { - "w": 39, - "h": 38, - "fill": "hsl(293 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03146": { - "id": "shape:perf:03146", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 1984, - "rot": 0, - "props": { - "w": 27, - "h": 29, - "fill": "hsl(175 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03147": { - "id": "shape:perf:03147", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 1984, - "rot": 0, - "props": { - "w": 39, - "h": 40, - "fill": "hsl(326 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03148": { - "id": "shape:perf:03148", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 1984, - "rot": 0, - "props": { - "w": 41, - "h": 36, - "fill": "hsl(74 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03149": { - "id": "shape:perf:03149", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 1984, - "rot": 0, - "props": { - "w": 42, - "h": 42, - "fill": "hsl(195 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03150": { - "id": "shape:perf:03150", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 1984, - "rot": 0, - "props": { - "w": 46, - "h": 25, - "fill": "hsl(264 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03151": { - "id": "shape:perf:03151", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 1984, - "rot": 0, - "props": { - "w": 31, - "h": 39, - "fill": "hsl(265 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03152": { - "id": "shape:perf:03152", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 1984, - "rot": 0, - "props": { - "w": 34, - "h": 38, - "fill": "hsl(181 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03153": { - "id": "shape:perf:03153", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 1984, - "rot": 0, - "props": { - "w": 45, - "h": 40, - "fill": "hsl(202 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03154": { - "id": "shape:perf:03154", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 1984, - "rot": 0, - "props": { - "w": 35, - "h": 45, - "fill": "hsl(314 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03155": { - "id": "shape:perf:03155", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 1984, - "rot": 0, - "props": { - "w": 43, - "h": 39, - "fill": "hsl(125 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03156": { - "id": "shape:perf:03156", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 1984, - "rot": 0, - "props": { - "w": 28, - "h": 39, - "fill": "hsl(93 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03157": { - "id": "shape:perf:03157", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 1984, - "rot": 0, - "props": { - "w": 36, - "h": 40, - "fill": "hsl(330 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03158": { - "id": "shape:perf:03158", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 1984, - "rot": 0, - "props": { - "w": 40, - "h": 28, - "fill": "hsl(188 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03159": { - "id": "shape:perf:03159", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 1984, - "rot": 0, - "props": { - "w": 46, - "h": 29, - "fill": "hsl(179 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03160": { - "id": "shape:perf:03160", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 1984, - "rot": 0, - "props": { - "w": 46, - "h": 46, - "fill": "hsl(96 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03161": { - "id": "shape:perf:03161", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 1984, - "rot": 0, - "props": { - "w": 36, - "h": 34, - "fill": "hsl(310 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03162": { - "id": "shape:perf:03162", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 1984, - "rot": 0, - "props": { - "w": 25, - "h": 37, - "fill": "hsl(252 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03163": { - "id": "shape:perf:03163", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 1984, - "rot": 0, - "props": { - "w": 27, - "h": 32, - "fill": "hsl(229 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03164": { - "id": "shape:perf:03164", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 1984, - "rot": 0, - "props": { - "w": 29, - "h": 25, - "fill": "hsl(183 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03165": { - "id": "shape:perf:03165", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 1984, - "rot": 0, - "props": { - "w": 34, - "h": 25, - "fill": "hsl(32 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03166": { - "id": "shape:perf:03166", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 1984, - "rot": 0, - "props": { - "w": 47, - "h": 37, - "fill": "hsl(337 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03167": { - "id": "shape:perf:03167", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 1984, - "rot": 0, - "props": { - "w": 37, - "h": 46, - "fill": "hsl(33 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03168": { - "id": "shape:perf:03168", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 1984, - "rot": 0, - "props": { - "w": 32, - "h": 31, - "fill": "hsl(347 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03169": { - "id": "shape:perf:03169", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 1984, - "rot": 0, - "props": { - "w": 47, - "h": 25, - "fill": "hsl(4 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03170": { - "id": "shape:perf:03170", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 1984, - "rot": 0, - "props": { - "w": 37, - "h": 27, - "fill": "hsl(190 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03171": { - "id": "shape:perf:03171", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 1984, - "rot": 0, - "props": { - "w": 38, - "h": 30, - "fill": "hsl(350 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03172": { - "id": "shape:perf:03172", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 1984, - "rot": 0, - "props": { - "w": 34, - "h": 24, - "fill": "hsl(184 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03173": { - "id": "shape:perf:03173", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 1984, - "rot": 0, - "props": { - "w": 27, - "h": 30, - "fill": "hsl(333 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03174": { - "id": "shape:perf:03174", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 1984, - "rot": 0, - "props": { - "w": 30, - "h": 27, - "fill": "hsl(229 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03175": { - "id": "shape:perf:03175", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 1984, - "rot": 0, - "props": { - "w": 34, - "h": 41, - "fill": "hsl(56 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03176": { - "id": "shape:perf:03176", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 1984, - "rot": 0, - "props": { - "w": 46, - "h": 41, - "fill": "hsl(286 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03177": { - "id": "shape:perf:03177", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 1984, - "rot": 0, - "props": { - "w": 33, - "h": 32, - "fill": "hsl(26 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03178": { - "id": "shape:perf:03178", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 1984, - "rot": 0, - "props": { - "w": 41, - "h": 26, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03179": { - "id": "shape:perf:03179", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 1984, - "rot": 0, - "props": { - "w": 26, - "h": 24, - "fill": "hsl(27 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03180": { - "id": "shape:perf:03180", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 1984, - "rot": 0, - "props": { - "w": 35, - "h": 43, - "fill": "hsl(44 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03181": { - "id": "shape:perf:03181", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 1984, - "rot": 0, - "props": { - "w": 37, - "h": 42, - "fill": "hsl(338 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03182": { - "id": "shape:perf:03182", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 1984, - "rot": 0, - "props": { - "w": 26, - "h": 25, - "fill": "hsl(27 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03183": { - "id": "shape:perf:03183", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 1984, - "rot": 0, - "props": { - "w": 35, - "h": 45, - "fill": "hsl(73 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03184": { - "id": "shape:perf:03184", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 1984, - "rot": 0, - "props": { - "w": 32, - "h": 36, - "fill": "hsl(276 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03185": { - "id": "shape:perf:03185", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 1984, - "rot": 0, - "props": { - "w": 47, - "h": 26, - "fill": "hsl(101 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03186": { - "id": "shape:perf:03186", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 1984, - "rot": 0, - "props": { - "w": 38, - "h": 40, - "fill": "hsl(132 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03187": { - "id": "shape:perf:03187", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 1984, - "rot": 0, - "props": { - "w": 42, - "h": 36, - "fill": "hsl(149 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03188": { - "id": "shape:perf:03188", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 1984, - "rot": 0, - "props": { - "w": 27, - "h": 39, - "fill": "hsl(114 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03189": { - "id": "shape:perf:03189", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 1984, - "rot": 0, - "props": { - "w": 29, - "h": 35, - "fill": "hsl(266 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03190": { - "id": "shape:perf:03190", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 1984, - "rot": 0, - "props": { - "w": 42, - "h": 28, - "fill": "hsl(195 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03191": { - "id": "shape:perf:03191", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 1984, - "rot": 0, - "props": { - "w": 45, - "h": 34, - "fill": "hsl(233 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03192": { - "id": "shape:perf:03192", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 1984, - "rot": 0, - "props": { - "w": 38, - "h": 26, - "fill": "hsl(317 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03193": { - "id": "shape:perf:03193", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 1984, - "rot": 0, - "props": { - "w": 41, - "h": 43, - "fill": "hsl(8 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03194": { - "id": "shape:perf:03194", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 1984, - "rot": 0, - "props": { - "w": 30, - "h": 47, - "fill": "hsl(166 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03195": { - "id": "shape:perf:03195", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 1984, - "rot": 0, - "props": { - "w": 45, - "h": 41, - "fill": "hsl(189 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03196": { - "id": "shape:perf:03196", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 1984, - "rot": 0, - "props": { - "w": 34, - "h": 39, - "fill": "hsl(104 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03197": { - "id": "shape:perf:03197", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 1984, - "rot": 0, - "props": { - "w": 43, - "h": 47, - "fill": "hsl(9 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03198": { - "id": "shape:perf:03198", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 1984, - "rot": 0, - "props": { - "w": 35, - "h": 37, - "fill": "hsl(18 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03199": { - "id": "shape:perf:03199", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 1984, - "rot": 0, - "props": { - "w": 44, - "h": 38, - "fill": "hsl(319 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03200": { - "id": "shape:perf:03200", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 2048, - "rot": 0, - "props": { - "w": 36, - "h": 25, - "fill": "hsl(236 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03201": { - "id": "shape:perf:03201", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 2048, - "rot": 0, - "props": { - "w": 46, - "h": 37, - "fill": "hsl(131 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03202": { - "id": "shape:perf:03202", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 2048, - "rot": 0, - "props": { - "w": 43, - "h": 36, - "fill": "hsl(349 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03203": { - "id": "shape:perf:03203", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 2048, - "rot": 0, - "props": { - "w": 24, - "h": 40, - "fill": "hsl(130 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03204": { - "id": "shape:perf:03204", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 2048, - "rot": 0, - "props": { - "w": 27, - "h": 34, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03205": { - "id": "shape:perf:03205", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 2048, - "rot": 0, - "props": { - "w": 35, - "h": 35, - "fill": "hsl(62 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03206": { - "id": "shape:perf:03206", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 2048, - "rot": 0, - "props": { - "w": 37, - "h": 24, - "fill": "hsl(1 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03207": { - "id": "shape:perf:03207", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 2048, - "rot": 0, - "props": { - "w": 25, - "h": 40, - "fill": "hsl(161 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03208": { - "id": "shape:perf:03208", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 2048, - "rot": 0, - "props": { - "w": 32, - "h": 47, - "fill": "hsl(340 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03209": { - "id": "shape:perf:03209", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 2048, - "rot": 0, - "props": { - "w": 26, - "h": 44, - "fill": "hsl(61 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03210": { - "id": "shape:perf:03210", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 2048, - "rot": 0, - "props": { - "w": 42, - "h": 25, - "fill": "hsl(57 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03211": { - "id": "shape:perf:03211", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 2048, - "rot": 0, - "props": { - "w": 26, - "h": 35, - "fill": "hsl(264 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03212": { - "id": "shape:perf:03212", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 2048, - "rot": 0, - "props": { - "w": 35, - "h": 43, - "fill": "hsl(93 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03213": { - "id": "shape:perf:03213", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 2048, - "rot": 0, - "props": { - "w": 33, - "h": 35, - "fill": "hsl(124 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03214": { - "id": "shape:perf:03214", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 2048, - "rot": 0, - "props": { - "w": 36, - "h": 41, - "fill": "hsl(258 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03215": { - "id": "shape:perf:03215", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 2048, - "rot": 0, - "props": { - "w": 36, - "h": 29, - "fill": "hsl(73 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03216": { - "id": "shape:perf:03216", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 2048, - "rot": 0, - "props": { - "w": 38, - "h": 43, - "fill": "hsl(33 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03217": { - "id": "shape:perf:03217", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 2048, - "rot": 0, - "props": { - "w": 40, - "h": 40, - "fill": "hsl(267 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03218": { - "id": "shape:perf:03218", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 2048, - "rot": 0, - "props": { - "w": 33, - "h": 38, - "fill": "hsl(266 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03219": { - "id": "shape:perf:03219", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 2048, - "rot": 0, - "props": { - "w": 24, - "h": 29, - "fill": "hsl(285 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03220": { - "id": "shape:perf:03220", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 2048, - "rot": 0, - "props": { - "w": 34, - "h": 28, - "fill": "hsl(27 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03221": { - "id": "shape:perf:03221", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 2048, - "rot": 0, - "props": { - "w": 32, - "h": 35, - "fill": "hsl(72 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03222": { - "id": "shape:perf:03222", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 2048, - "rot": 0, - "props": { - "w": 38, - "h": 47, - "fill": "hsl(254 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03223": { - "id": "shape:perf:03223", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 2048, - "rot": 0, - "props": { - "w": 31, - "h": 34, - "fill": "hsl(225 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03224": { - "id": "shape:perf:03224", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 2048, - "rot": 0, - "props": { - "w": 39, - "h": 36, - "fill": "hsl(130 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03225": { - "id": "shape:perf:03225", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 2048, - "rot": 0, - "props": { - "w": 47, - "h": 28, - "fill": "hsl(21 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03226": { - "id": "shape:perf:03226", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 2048, - "rot": 0, - "props": { - "w": 47, - "h": 33, - "fill": "hsl(125 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03227": { - "id": "shape:perf:03227", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 2048, - "rot": 0, - "props": { - "w": 35, - "h": 37, - "fill": "hsl(210 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03228": { - "id": "shape:perf:03228", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 2048, - "rot": 0, - "props": { - "w": 25, - "h": 29, - "fill": "hsl(254 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03229": { - "id": "shape:perf:03229", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 2048, - "rot": 0, - "props": { - "w": 36, - "h": 32, - "fill": "hsl(52 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03230": { - "id": "shape:perf:03230", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 2048, - "rot": 0, - "props": { - "w": 35, - "h": 41, - "fill": "hsl(298 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03231": { - "id": "shape:perf:03231", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 2048, - "rot": 0, - "props": { - "w": 34, - "h": 25, - "fill": "hsl(52 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03232": { - "id": "shape:perf:03232", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 2048, - "rot": 0, - "props": { - "w": 46, - "h": 45, - "fill": "hsl(259 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03233": { - "id": "shape:perf:03233", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 2048, - "rot": 0, - "props": { - "w": 46, - "h": 31, - "fill": "hsl(203 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03234": { - "id": "shape:perf:03234", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 2048, - "rot": 0, - "props": { - "w": 40, - "h": 42, - "fill": "hsl(296 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03235": { - "id": "shape:perf:03235", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 2048, - "rot": 0, - "props": { - "w": 43, - "h": 28, - "fill": "hsl(239 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03236": { - "id": "shape:perf:03236", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 2048, - "rot": 0, - "props": { - "w": 31, - "h": 45, - "fill": "hsl(356 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03237": { - "id": "shape:perf:03237", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 2048, - "rot": 0, - "props": { - "w": 46, - "h": 37, - "fill": "hsl(51 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03238": { - "id": "shape:perf:03238", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 2048, - "rot": 0, - "props": { - "w": 41, - "h": 39, - "fill": "hsl(73 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03239": { - "id": "shape:perf:03239", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 2048, - "rot": 0, - "props": { - "w": 41, - "h": 37, - "fill": "hsl(187 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03240": { - "id": "shape:perf:03240", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 2048, - "rot": 0, - "props": { - "w": 28, - "h": 29, - "fill": "hsl(321 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03241": { - "id": "shape:perf:03241", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 2048, - "rot": 0, - "props": { - "w": 32, - "h": 24, - "fill": "hsl(181 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03242": { - "id": "shape:perf:03242", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 2048, - "rot": 0, - "props": { - "w": 35, - "h": 31, - "fill": "hsl(105 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03243": { - "id": "shape:perf:03243", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 2048, - "rot": 0, - "props": { - "w": 26, - "h": 25, - "fill": "hsl(280 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03244": { - "id": "shape:perf:03244", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 2048, - "rot": 0, - "props": { - "w": 47, - "h": 40, - "fill": "hsl(66 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03245": { - "id": "shape:perf:03245", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 2048, - "rot": 0, - "props": { - "w": 34, - "h": 27, - "fill": "hsl(40 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03246": { - "id": "shape:perf:03246", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 2048, - "rot": 0, - "props": { - "w": 43, - "h": 40, - "fill": "hsl(349 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03247": { - "id": "shape:perf:03247", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 2048, - "rot": 0, - "props": { - "w": 44, - "h": 33, - "fill": "hsl(115 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03248": { - "id": "shape:perf:03248", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 2048, - "rot": 0, - "props": { - "w": 33, - "h": 25, - "fill": "hsl(279 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03249": { - "id": "shape:perf:03249", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 2048, - "rot": 0, - "props": { - "w": 40, - "h": 42, - "fill": "hsl(304 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03250": { - "id": "shape:perf:03250", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 2048, - "rot": 0, - "props": { - "w": 41, - "h": 25, - "fill": "hsl(26 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03251": { - "id": "shape:perf:03251", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 2048, - "rot": 0, - "props": { - "w": 46, - "h": 37, - "fill": "hsl(215 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03252": { - "id": "shape:perf:03252", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 2048, - "rot": 0, - "props": { - "w": 28, - "h": 24, - "fill": "hsl(97 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03253": { - "id": "shape:perf:03253", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 2048, - "rot": 0, - "props": { - "w": 33, - "h": 38, - "fill": "hsl(306 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03254": { - "id": "shape:perf:03254", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 2048, - "rot": 0, - "props": { - "w": 31, - "h": 35, - "fill": "hsl(304 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03255": { - "id": "shape:perf:03255", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 2048, - "rot": 0, - "props": { - "w": 31, - "h": 40, - "fill": "hsl(155 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03256": { - "id": "shape:perf:03256", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 2048, - "rot": 0, - "props": { - "w": 37, - "h": 29, - "fill": "hsl(43 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03257": { - "id": "shape:perf:03257", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 2048, - "rot": 0, - "props": { - "w": 34, - "h": 24, - "fill": "hsl(273 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03258": { - "id": "shape:perf:03258", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 2048, - "rot": 0, - "props": { - "w": 34, - "h": 39, - "fill": "hsl(145 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03259": { - "id": "shape:perf:03259", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 2048, - "rot": 0, - "props": { - "w": 41, - "h": 32, - "fill": "hsl(190 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03260": { - "id": "shape:perf:03260", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 2048, - "rot": 0, - "props": { - "w": 47, - "h": 42, - "fill": "hsl(199 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03261": { - "id": "shape:perf:03261", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 2048, - "rot": 0, - "props": { - "w": 41, - "h": 39, - "fill": "hsl(201 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03262": { - "id": "shape:perf:03262", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 2048, - "rot": 0, - "props": { - "w": 37, - "h": 41, - "fill": "hsl(178 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03263": { - "id": "shape:perf:03263", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 2048, - "rot": 0, - "props": { - "w": 36, - "h": 36, - "fill": "hsl(233 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03264": { - "id": "shape:perf:03264", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 2048, - "rot": 0, - "props": { - "w": 32, - "h": 37, - "fill": "hsl(199 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03265": { - "id": "shape:perf:03265", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 2048, - "rot": 0, - "props": { - "w": 25, - "h": 41, - "fill": "hsl(232 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03266": { - "id": "shape:perf:03266", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 2048, - "rot": 0, - "props": { - "w": 40, - "h": 40, - "fill": "hsl(346 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03267": { - "id": "shape:perf:03267", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 2048, - "rot": 0, - "props": { - "w": 39, - "h": 45, - "fill": "hsl(205 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03268": { - "id": "shape:perf:03268", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 2048, - "rot": 0, - "props": { - "w": 36, - "h": 36, - "fill": "hsl(213 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03269": { - "id": "shape:perf:03269", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 2048, - "rot": 0, - "props": { - "w": 42, - "h": 33, - "fill": "hsl(321 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03270": { - "id": "shape:perf:03270", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 2048, - "rot": 0, - "props": { - "w": 36, - "h": 41, - "fill": "hsl(261 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03271": { - "id": "shape:perf:03271", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 2048, - "rot": 0, - "props": { - "w": 28, - "h": 27, - "fill": "hsl(113 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03272": { - "id": "shape:perf:03272", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 2048, - "rot": 0, - "props": { - "w": 32, - "h": 30, - "fill": "hsl(323 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03273": { - "id": "shape:perf:03273", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 2048, - "rot": 0, - "props": { - "w": 32, - "h": 29, - "fill": "hsl(265 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03274": { - "id": "shape:perf:03274", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 2048, - "rot": 0, - "props": { - "w": 39, - "h": 45, - "fill": "hsl(74 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03275": { - "id": "shape:perf:03275", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 2048, - "rot": 0, - "props": { - "w": 45, - "h": 32, - "fill": "hsl(88 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03276": { - "id": "shape:perf:03276", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 2048, - "rot": 0, - "props": { - "w": 24, - "h": 33, - "fill": "hsl(151 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03277": { - "id": "shape:perf:03277", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 2048, - "rot": 0, - "props": { - "w": 31, - "h": 46, - "fill": "hsl(220 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03278": { - "id": "shape:perf:03278", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 2048, - "rot": 0, - "props": { - "w": 45, - "h": 29, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03279": { - "id": "shape:perf:03279", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 2048, - "rot": 0, - "props": { - "w": 24, - "h": 38, - "fill": "hsl(12 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03280": { - "id": "shape:perf:03280", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 2048, - "rot": 0, - "props": { - "w": 36, - "h": 38, - "fill": "hsl(294 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03281": { - "id": "shape:perf:03281", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 2048, - "rot": 0, - "props": { - "w": 43, - "h": 32, - "fill": "hsl(94 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03282": { - "id": "shape:perf:03282", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 2048, - "rot": 0, - "props": { - "w": 31, - "h": 40, - "fill": "hsl(193 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03283": { - "id": "shape:perf:03283", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 2048, - "rot": 0, - "props": { - "w": 24, - "h": 37, - "fill": "hsl(214 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03284": { - "id": "shape:perf:03284", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 2048, - "rot": 0, - "props": { - "w": 43, - "h": 29, - "fill": "hsl(36 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03285": { - "id": "shape:perf:03285", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 2048, - "rot": 0, - "props": { - "w": 40, - "h": 31, - "fill": "hsl(270 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03286": { - "id": "shape:perf:03286", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 2048, - "rot": 0, - "props": { - "w": 42, - "h": 43, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03287": { - "id": "shape:perf:03287", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 2048, - "rot": 0, - "props": { - "w": 41, - "h": 42, - "fill": "hsl(163 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03288": { - "id": "shape:perf:03288", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 2048, - "rot": 0, - "props": { - "w": 47, - "h": 29, - "fill": "hsl(277 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03289": { - "id": "shape:perf:03289", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 2048, - "rot": 0, - "props": { - "w": 44, - "h": 25, - "fill": "hsl(61 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03290": { - "id": "shape:perf:03290", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 2048, - "rot": 0, - "props": { - "w": 31, - "h": 37, - "fill": "hsl(91 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03291": { - "id": "shape:perf:03291", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 2048, - "rot": 0, - "props": { - "w": 26, - "h": 30, - "fill": "hsl(79 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03292": { - "id": "shape:perf:03292", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 2048, - "rot": 0, - "props": { - "w": 45, - "h": 42, - "fill": "hsl(208 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03293": { - "id": "shape:perf:03293", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 2048, - "rot": 0, - "props": { - "w": 46, - "h": 31, - "fill": "hsl(142 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03294": { - "id": "shape:perf:03294", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 2048, - "rot": 0, - "props": { - "w": 34, - "h": 44, - "fill": "hsl(218 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03295": { - "id": "shape:perf:03295", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 2048, - "rot": 0, - "props": { - "w": 40, - "h": 40, - "fill": "hsl(25 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03296": { - "id": "shape:perf:03296", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 2048, - "rot": 0, - "props": { - "w": 24, - "h": 30, - "fill": "hsl(93 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03297": { - "id": "shape:perf:03297", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 2048, - "rot": 0, - "props": { - "w": 31, - "h": 25, - "fill": "hsl(148 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03298": { - "id": "shape:perf:03298", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 2048, - "rot": 0, - "props": { - "w": 31, - "h": 36, - "fill": "hsl(123 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03299": { - "id": "shape:perf:03299", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 2048, - "rot": 0, - "props": { - "w": 29, - "h": 29, - "fill": "hsl(148 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03300": { - "id": "shape:perf:03300", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 2112, - "rot": 0, - "props": { - "w": 37, - "h": 44, - "fill": "hsl(304 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03301": { - "id": "shape:perf:03301", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 2112, - "rot": 0, - "props": { - "w": 47, - "h": 34, - "fill": "hsl(357 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03302": { - "id": "shape:perf:03302", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 2112, - "rot": 0, - "props": { - "w": 32, - "h": 29, - "fill": "hsl(322 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03303": { - "id": "shape:perf:03303", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 2112, - "rot": 0, - "props": { - "w": 45, - "h": 27, - "fill": "hsl(58 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03304": { - "id": "shape:perf:03304", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 2112, - "rot": 0, - "props": { - "w": 40, - "h": 45, - "fill": "hsl(153 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03305": { - "id": "shape:perf:03305", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 2112, - "rot": 0, - "props": { - "w": 47, - "h": 28, - "fill": "hsl(290 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03306": { - "id": "shape:perf:03306", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 2112, - "rot": 0, - "props": { - "w": 32, - "h": 44, - "fill": "hsl(24 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03307": { - "id": "shape:perf:03307", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 2112, - "rot": 0, - "props": { - "w": 47, - "h": 41, - "fill": "hsl(113 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03308": { - "id": "shape:perf:03308", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 2112, - "rot": 0, - "props": { - "w": 35, - "h": 40, - "fill": "hsl(158 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03309": { - "id": "shape:perf:03309", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 2112, - "rot": 0, - "props": { - "w": 47, - "h": 28, - "fill": "hsl(82 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03310": { - "id": "shape:perf:03310", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 2112, - "rot": 0, - "props": { - "w": 43, - "h": 27, - "fill": "hsl(69 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03311": { - "id": "shape:perf:03311", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 2112, - "rot": 0, - "props": { - "w": 24, - "h": 36, - "fill": "hsl(256 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03312": { - "id": "shape:perf:03312", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 2112, - "rot": 0, - "props": { - "w": 29, - "h": 26, - "fill": "hsl(331 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03313": { - "id": "shape:perf:03313", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 2112, - "rot": 0, - "props": { - "w": 24, - "h": 35, - "fill": "hsl(154 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03314": { - "id": "shape:perf:03314", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 2112, - "rot": 0, - "props": { - "w": 45, - "h": 41, - "fill": "hsl(133 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03315": { - "id": "shape:perf:03315", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 2112, - "rot": 0, - "props": { - "w": 41, - "h": 32, - "fill": "hsl(64 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03316": { - "id": "shape:perf:03316", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 2112, - "rot": 0, - "props": { - "w": 26, - "h": 29, - "fill": "hsl(78 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03317": { - "id": "shape:perf:03317", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 2112, - "rot": 0, - "props": { - "w": 35, - "h": 37, - "fill": "hsl(172 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03318": { - "id": "shape:perf:03318", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 2112, - "rot": 0, - "props": { - "w": 37, - "h": 27, - "fill": "hsl(182 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03319": { - "id": "shape:perf:03319", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 2112, - "rot": 0, - "props": { - "w": 30, - "h": 26, - "fill": "hsl(167 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03320": { - "id": "shape:perf:03320", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 2112, - "rot": 0, - "props": { - "w": 35, - "h": 37, - "fill": "hsl(44 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03321": { - "id": "shape:perf:03321", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 2112, - "rot": 0, - "props": { - "w": 40, - "h": 33, - "fill": "hsl(217 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03322": { - "id": "shape:perf:03322", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 2112, - "rot": 0, - "props": { - "w": 42, - "h": 40, - "fill": "hsl(33 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03323": { - "id": "shape:perf:03323", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 2112, - "rot": 0, - "props": { - "w": 35, - "h": 32, - "fill": "hsl(235 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03324": { - "id": "shape:perf:03324", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 2112, - "rot": 0, - "props": { - "w": 32, - "h": 38, - "fill": "hsl(173 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03325": { - "id": "shape:perf:03325", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 2112, - "rot": 0, - "props": { - "w": 25, - "h": 24, - "fill": "hsl(288 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03326": { - "id": "shape:perf:03326", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 2112, - "rot": 0, - "props": { - "w": 24, - "h": 25, - "fill": "hsl(14 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03327": { - "id": "shape:perf:03327", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 2112, - "rot": 0, - "props": { - "w": 40, - "h": 40, - "fill": "hsl(351 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03328": { - "id": "shape:perf:03328", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 2112, - "rot": 0, - "props": { - "w": 43, - "h": 43, - "fill": "hsl(231 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03329": { - "id": "shape:perf:03329", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 2112, - "rot": 0, - "props": { - "w": 25, - "h": 34, - "fill": "hsl(156 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03330": { - "id": "shape:perf:03330", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 2112, - "rot": 0, - "props": { - "w": 24, - "h": 42, - "fill": "hsl(357 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03331": { - "id": "shape:perf:03331", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 2112, - "rot": 0, - "props": { - "w": 31, - "h": 39, - "fill": "hsl(56 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03332": { - "id": "shape:perf:03332", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 2112, - "rot": 0, - "props": { - "w": 39, - "h": 37, - "fill": "hsl(138 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03333": { - "id": "shape:perf:03333", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 2112, - "rot": 0, - "props": { - "w": 37, - "h": 43, - "fill": "hsl(190 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03334": { - "id": "shape:perf:03334", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 2112, - "rot": 0, - "props": { - "w": 34, - "h": 27, - "fill": "hsl(312 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03335": { - "id": "shape:perf:03335", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 2112, - "rot": 0, - "props": { - "w": 29, - "h": 29, - "fill": "hsl(282 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03336": { - "id": "shape:perf:03336", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 2112, - "rot": 0, - "props": { - "w": 27, - "h": 45, - "fill": "hsl(51 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03337": { - "id": "shape:perf:03337", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 2112, - "rot": 0, - "props": { - "w": 40, - "h": 42, - "fill": "hsl(325 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03338": { - "id": "shape:perf:03338", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 2112, - "rot": 0, - "props": { - "w": 30, - "h": 24, - "fill": "hsl(220 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03339": { - "id": "shape:perf:03339", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 2112, - "rot": 0, - "props": { - "w": 28, - "h": 28, - "fill": "hsl(109 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03340": { - "id": "shape:perf:03340", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 2112, - "rot": 0, - "props": { - "w": 25, - "h": 24, - "fill": "hsl(242 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03341": { - "id": "shape:perf:03341", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 2112, - "rot": 0, - "props": { - "w": 43, - "h": 31, - "fill": "hsl(133 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03342": { - "id": "shape:perf:03342", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 2112, - "rot": 0, - "props": { - "w": 45, - "h": 47, - "fill": "hsl(152 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03343": { - "id": "shape:perf:03343", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 2112, - "rot": 0, - "props": { - "w": 46, - "h": 29, - "fill": "hsl(220 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03344": { - "id": "shape:perf:03344", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 2112, - "rot": 0, - "props": { - "w": 36, - "h": 44, - "fill": "hsl(177 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03345": { - "id": "shape:perf:03345", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 2112, - "rot": 0, - "props": { - "w": 31, - "h": 44, - "fill": "hsl(195 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03346": { - "id": "shape:perf:03346", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 2112, - "rot": 0, - "props": { - "w": 26, - "h": 38, - "fill": "hsl(323 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03347": { - "id": "shape:perf:03347", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 2112, - "rot": 0, - "props": { - "w": 36, - "h": 33, - "fill": "hsl(142 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03348": { - "id": "shape:perf:03348", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 2112, - "rot": 0, - "props": { - "w": 27, - "h": 38, - "fill": "hsl(261 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03349": { - "id": "shape:perf:03349", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 2112, - "rot": 0, - "props": { - "w": 47, - "h": 47, - "fill": "hsl(45 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03350": { - "id": "shape:perf:03350", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 2112, - "rot": 0, - "props": { - "w": 47, - "h": 44, - "fill": "hsl(299 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03351": { - "id": "shape:perf:03351", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 2112, - "rot": 0, - "props": { - "w": 30, - "h": 26, - "fill": "hsl(228 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03352": { - "id": "shape:perf:03352", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 2112, - "rot": 0, - "props": { - "w": 45, - "h": 32, - "fill": "hsl(73 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03353": { - "id": "shape:perf:03353", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 2112, - "rot": 0, - "props": { - "w": 47, - "h": 33, - "fill": "hsl(230 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03354": { - "id": "shape:perf:03354", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 2112, - "rot": 0, - "props": { - "w": 34, - "h": 40, - "fill": "hsl(252 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03355": { - "id": "shape:perf:03355", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 2112, - "rot": 0, - "props": { - "w": 31, - "h": 28, - "fill": "hsl(349 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03356": { - "id": "shape:perf:03356", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 2112, - "rot": 0, - "props": { - "w": 41, - "h": 33, - "fill": "hsl(330 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03357": { - "id": "shape:perf:03357", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 2112, - "rot": 0, - "props": { - "w": 34, - "h": 35, - "fill": "hsl(336 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03358": { - "id": "shape:perf:03358", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 2112, - "rot": 0, - "props": { - "w": 35, - "h": 47, - "fill": "hsl(3 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03359": { - "id": "shape:perf:03359", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 2112, - "rot": 0, - "props": { - "w": 37, - "h": 25, - "fill": "hsl(293 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03360": { - "id": "shape:perf:03360", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 2112, - "rot": 0, - "props": { - "w": 29, - "h": 33, - "fill": "hsl(75 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03361": { - "id": "shape:perf:03361", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 2112, - "rot": 0, - "props": { - "w": 41, - "h": 41, - "fill": "hsl(14 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03362": { - "id": "shape:perf:03362", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 2112, - "rot": 0, - "props": { - "w": 29, - "h": 34, - "fill": "hsl(10 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03363": { - "id": "shape:perf:03363", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 2112, - "rot": 0, - "props": { - "w": 39, - "h": 47, - "fill": "hsl(151 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03364": { - "id": "shape:perf:03364", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 2112, - "rot": 0, - "props": { - "w": 30, - "h": 41, - "fill": "hsl(101 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03365": { - "id": "shape:perf:03365", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 2112, - "rot": 0, - "props": { - "w": 33, - "h": 26, - "fill": "hsl(35 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03366": { - "id": "shape:perf:03366", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 2112, - "rot": 0, - "props": { - "w": 40, - "h": 40, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03367": { - "id": "shape:perf:03367", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 2112, - "rot": 0, - "props": { - "w": 27, - "h": 25, - "fill": "hsl(108 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03368": { - "id": "shape:perf:03368", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 2112, - "rot": 0, - "props": { - "w": 42, - "h": 27, - "fill": "hsl(331 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03369": { - "id": "shape:perf:03369", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 2112, - "rot": 0, - "props": { - "w": 39, - "h": 33, - "fill": "hsl(178 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03370": { - "id": "shape:perf:03370", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 2112, - "rot": 0, - "props": { - "w": 34, - "h": 27, - "fill": "hsl(55 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03371": { - "id": "shape:perf:03371", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 2112, - "rot": 0, - "props": { - "w": 24, - "h": 36, - "fill": "hsl(242 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03372": { - "id": "shape:perf:03372", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 2112, - "rot": 0, - "props": { - "w": 31, - "h": 39, - "fill": "hsl(178 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03373": { - "id": "shape:perf:03373", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 2112, - "rot": 0, - "props": { - "w": 38, - "h": 42, - "fill": "hsl(160 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03374": { - "id": "shape:perf:03374", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 2112, - "rot": 0, - "props": { - "w": 37, - "h": 45, - "fill": "hsl(286 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03375": { - "id": "shape:perf:03375", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 2112, - "rot": 0, - "props": { - "w": 28, - "h": 31, - "fill": "hsl(318 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03376": { - "id": "shape:perf:03376", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 2112, - "rot": 0, - "props": { - "w": 44, - "h": 38, - "fill": "hsl(229 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03377": { - "id": "shape:perf:03377", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 2112, - "rot": 0, - "props": { - "w": 25, - "h": 25, - "fill": "hsl(205 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03378": { - "id": "shape:perf:03378", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 2112, - "rot": 0, - "props": { - "w": 38, - "h": 31, - "fill": "hsl(186 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03379": { - "id": "shape:perf:03379", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 2112, - "rot": 0, - "props": { - "w": 47, - "h": 31, - "fill": "hsl(333 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03380": { - "id": "shape:perf:03380", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 2112, - "rot": 0, - "props": { - "w": 32, - "h": 29, - "fill": "hsl(64 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03381": { - "id": "shape:perf:03381", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 2112, - "rot": 0, - "props": { - "w": 29, - "h": 41, - "fill": "hsl(108 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03382": { - "id": "shape:perf:03382", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 2112, - "rot": 0, - "props": { - "w": 47, - "h": 35, - "fill": "hsl(265 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03383": { - "id": "shape:perf:03383", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 2112, - "rot": 0, - "props": { - "w": 47, - "h": 28, - "fill": "hsl(189 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03384": { - "id": "shape:perf:03384", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 2112, - "rot": 0, - "props": { - "w": 25, - "h": 39, - "fill": "hsl(83 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03385": { - "id": "shape:perf:03385", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 2112, - "rot": 0, - "props": { - "w": 34, - "h": 43, - "fill": "hsl(44 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03386": { - "id": "shape:perf:03386", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 2112, - "rot": 0, - "props": { - "w": 30, - "h": 47, - "fill": "hsl(156 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03387": { - "id": "shape:perf:03387", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 2112, - "rot": 0, - "props": { - "w": 36, - "h": 26, - "fill": "hsl(161 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03388": { - "id": "shape:perf:03388", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 2112, - "rot": 0, - "props": { - "w": 29, - "h": 25, - "fill": "hsl(178 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03389": { - "id": "shape:perf:03389", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 2112, - "rot": 0, - "props": { - "w": 43, - "h": 32, - "fill": "hsl(349 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03390": { - "id": "shape:perf:03390", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 2112, - "rot": 0, - "props": { - "w": 27, - "h": 43, - "fill": "hsl(18 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03391": { - "id": "shape:perf:03391", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 2112, - "rot": 0, - "props": { - "w": 37, - "h": 45, - "fill": "hsl(335 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03392": { - "id": "shape:perf:03392", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 2112, - "rot": 0, - "props": { - "w": 31, - "h": 43, - "fill": "hsl(61 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03393": { - "id": "shape:perf:03393", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 2112, - "rot": 0, - "props": { - "w": 42, - "h": 41, - "fill": "hsl(119 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03394": { - "id": "shape:perf:03394", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 2112, - "rot": 0, - "props": { - "w": 29, - "h": 45, - "fill": "hsl(227 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03395": { - "id": "shape:perf:03395", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 2112, - "rot": 0, - "props": { - "w": 47, - "h": 28, - "fill": "hsl(163 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03396": { - "id": "shape:perf:03396", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 2112, - "rot": 0, - "props": { - "w": 31, - "h": 36, - "fill": "hsl(27 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03397": { - "id": "shape:perf:03397", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 2112, - "rot": 0, - "props": { - "w": 28, - "h": 37, - "fill": "hsl(294 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03398": { - "id": "shape:perf:03398", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 2112, - "rot": 0, - "props": { - "w": 39, - "h": 28, - "fill": "hsl(342 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03399": { - "id": "shape:perf:03399", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 2112, - "rot": 0, - "props": { - "w": 35, - "h": 28, - "fill": "hsl(75 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03400": { - "id": "shape:perf:03400", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 2176, - "rot": 0, - "props": { - "w": 40, - "h": 35, - "fill": "hsl(301 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03401": { - "id": "shape:perf:03401", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 2176, - "rot": 0, - "props": { - "w": 38, - "h": 40, - "fill": "hsl(110 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03402": { - "id": "shape:perf:03402", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 2176, - "rot": 0, - "props": { - "w": 33, - "h": 44, - "fill": "hsl(214 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03403": { - "id": "shape:perf:03403", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 2176, - "rot": 0, - "props": { - "w": 33, - "h": 26, - "fill": "hsl(7 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03404": { - "id": "shape:perf:03404", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 2176, - "rot": 0, - "props": { - "w": 38, - "h": 39, - "fill": "hsl(89 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03405": { - "id": "shape:perf:03405", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 2176, - "rot": 0, - "props": { - "w": 34, - "h": 26, - "fill": "hsl(322 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03406": { - "id": "shape:perf:03406", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 2176, - "rot": 0, - "props": { - "w": 38, - "h": 41, - "fill": "hsl(91 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03407": { - "id": "shape:perf:03407", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 2176, - "rot": 0, - "props": { - "w": 36, - "h": 43, - "fill": "hsl(203 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03408": { - "id": "shape:perf:03408", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 2176, - "rot": 0, - "props": { - "w": 32, - "h": 40, - "fill": "hsl(62 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03409": { - "id": "shape:perf:03409", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 2176, - "rot": 0, - "props": { - "w": 36, - "h": 36, - "fill": "hsl(89 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03410": { - "id": "shape:perf:03410", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 2176, - "rot": 0, - "props": { - "w": 47, - "h": 26, - "fill": "hsl(254 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03411": { - "id": "shape:perf:03411", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 2176, - "rot": 0, - "props": { - "w": 37, - "h": 44, - "fill": "hsl(32 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03412": { - "id": "shape:perf:03412", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 2176, - "rot": 0, - "props": { - "w": 37, - "h": 30, - "fill": "hsl(212 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03413": { - "id": "shape:perf:03413", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 2176, - "rot": 0, - "props": { - "w": 26, - "h": 38, - "fill": "hsl(47 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03414": { - "id": "shape:perf:03414", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 2176, - "rot": 0, - "props": { - "w": 29, - "h": 39, - "fill": "hsl(69 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03415": { - "id": "shape:perf:03415", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 2176, - "rot": 0, - "props": { - "w": 30, - "h": 38, - "fill": "hsl(30 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03416": { - "id": "shape:perf:03416", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 2176, - "rot": 0, - "props": { - "w": 43, - "h": 38, - "fill": "hsl(228 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03417": { - "id": "shape:perf:03417", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 2176, - "rot": 0, - "props": { - "w": 34, - "h": 41, - "fill": "hsl(59 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03418": { - "id": "shape:perf:03418", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 2176, - "rot": 0, - "props": { - "w": 44, - "h": 45, - "fill": "hsl(82 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03419": { - "id": "shape:perf:03419", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 2176, - "rot": 0, - "props": { - "w": 38, - "h": 28, - "fill": "hsl(182 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03420": { - "id": "shape:perf:03420", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 2176, - "rot": 0, - "props": { - "w": 45, - "h": 29, - "fill": "hsl(278 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03421": { - "id": "shape:perf:03421", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 2176, - "rot": 0, - "props": { - "w": 29, - "h": 36, - "fill": "hsl(36 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03422": { - "id": "shape:perf:03422", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 2176, - "rot": 0, - "props": { - "w": 36, - "h": 33, - "fill": "hsl(11 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03423": { - "id": "shape:perf:03423", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 2176, - "rot": 0, - "props": { - "w": 32, - "h": 40, - "fill": "hsl(203 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03424": { - "id": "shape:perf:03424", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 2176, - "rot": 0, - "props": { - "w": 39, - "h": 33, - "fill": "hsl(158 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03425": { - "id": "shape:perf:03425", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 2176, - "rot": 0, - "props": { - "w": 46, - "h": 24, - "fill": "hsl(62 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03426": { - "id": "shape:perf:03426", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 2176, - "rot": 0, - "props": { - "w": 32, - "h": 44, - "fill": "hsl(27 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03427": { - "id": "shape:perf:03427", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 2176, - "rot": 0, - "props": { - "w": 26, - "h": 32, - "fill": "hsl(53 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03428": { - "id": "shape:perf:03428", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 2176, - "rot": 0, - "props": { - "w": 46, - "h": 37, - "fill": "hsl(269 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03429": { - "id": "shape:perf:03429", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 2176, - "rot": 0, - "props": { - "w": 37, - "h": 46, - "fill": "hsl(116 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03430": { - "id": "shape:perf:03430", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 2176, - "rot": 0, - "props": { - "w": 37, - "h": 27, - "fill": "hsl(183 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03431": { - "id": "shape:perf:03431", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 2176, - "rot": 0, - "props": { - "w": 44, - "h": 29, - "fill": "hsl(147 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03432": { - "id": "shape:perf:03432", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 2176, - "rot": 0, - "props": { - "w": 25, - "h": 41, - "fill": "hsl(59 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03433": { - "id": "shape:perf:03433", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 2176, - "rot": 0, - "props": { - "w": 47, - "h": 38, - "fill": "hsl(119 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03434": { - "id": "shape:perf:03434", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 2176, - "rot": 0, - "props": { - "w": 26, - "h": 39, - "fill": "hsl(145 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03435": { - "id": "shape:perf:03435", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 2176, - "rot": 0, - "props": { - "w": 43, - "h": 27, - "fill": "hsl(32 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03436": { - "id": "shape:perf:03436", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 2176, - "rot": 0, - "props": { - "w": 25, - "h": 41, - "fill": "hsl(77 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03437": { - "id": "shape:perf:03437", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 2176, - "rot": 0, - "props": { - "w": 46, - "h": 45, - "fill": "hsl(58 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03438": { - "id": "shape:perf:03438", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 2176, - "rot": 0, - "props": { - "w": 44, - "h": 44, - "fill": "hsl(30 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03439": { - "id": "shape:perf:03439", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 2176, - "rot": 0, - "props": { - "w": 44, - "h": 28, - "fill": "hsl(210 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03440": { - "id": "shape:perf:03440", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 2176, - "rot": 0, - "props": { - "w": 38, - "h": 44, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03441": { - "id": "shape:perf:03441", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 2176, - "rot": 0, - "props": { - "w": 30, - "h": 35, - "fill": "hsl(24 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03442": { - "id": "shape:perf:03442", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 2176, - "rot": 0, - "props": { - "w": 41, - "h": 40, - "fill": "hsl(7 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03443": { - "id": "shape:perf:03443", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 2176, - "rot": 0, - "props": { - "w": 43, - "h": 25, - "fill": "hsl(307 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03444": { - "id": "shape:perf:03444", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 2176, - "rot": 0, - "props": { - "w": 42, - "h": 27, - "fill": "hsl(150 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03445": { - "id": "shape:perf:03445", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 2176, - "rot": 0, - "props": { - "w": 36, - "h": 45, - "fill": "hsl(92 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03446": { - "id": "shape:perf:03446", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 2176, - "rot": 0, - "props": { - "w": 26, - "h": 27, - "fill": "hsl(359 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03447": { - "id": "shape:perf:03447", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 2176, - "rot": 0, - "props": { - "w": 46, - "h": 39, - "fill": "hsl(234 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03448": { - "id": "shape:perf:03448", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 2176, - "rot": 0, - "props": { - "w": 28, - "h": 31, - "fill": "hsl(14 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03449": { - "id": "shape:perf:03449", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 2176, - "rot": 0, - "props": { - "w": 45, - "h": 36, - "fill": "hsl(52 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03450": { - "id": "shape:perf:03450", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 2176, - "rot": 0, - "props": { - "w": 27, - "h": 39, - "fill": "hsl(214 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03451": { - "id": "shape:perf:03451", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 2176, - "rot": 0, - "props": { - "w": 35, - "h": 27, - "fill": "hsl(256 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03452": { - "id": "shape:perf:03452", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 2176, - "rot": 0, - "props": { - "w": 36, - "h": 31, - "fill": "hsl(96 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03453": { - "id": "shape:perf:03453", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 2176, - "rot": 0, - "props": { - "w": 28, - "h": 46, - "fill": "hsl(190 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03454": { - "id": "shape:perf:03454", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 2176, - "rot": 0, - "props": { - "w": 33, - "h": 30, - "fill": "hsl(51 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03455": { - "id": "shape:perf:03455", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 2176, - "rot": 0, - "props": { - "w": 40, - "h": 33, - "fill": "hsl(300 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03456": { - "id": "shape:perf:03456", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 2176, - "rot": 0, - "props": { - "w": 33, - "h": 46, - "fill": "hsl(229 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03457": { - "id": "shape:perf:03457", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 2176, - "rot": 0, - "props": { - "w": 26, - "h": 47, - "fill": "hsl(70 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03458": { - "id": "shape:perf:03458", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 2176, - "rot": 0, - "props": { - "w": 44, - "h": 35, - "fill": "hsl(251 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03459": { - "id": "shape:perf:03459", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 2176, - "rot": 0, - "props": { - "w": 43, - "h": 46, - "fill": "hsl(14 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03460": { - "id": "shape:perf:03460", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 2176, - "rot": 0, - "props": { - "w": 38, - "h": 38, - "fill": "hsl(267 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03461": { - "id": "shape:perf:03461", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 2176, - "rot": 0, - "props": { - "w": 25, - "h": 39, - "fill": "hsl(274 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03462": { - "id": "shape:perf:03462", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 2176, - "rot": 0, - "props": { - "w": 34, - "h": 26, - "fill": "hsl(270 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03463": { - "id": "shape:perf:03463", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 2176, - "rot": 0, - "props": { - "w": 37, - "h": 39, - "fill": "hsl(65 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03464": { - "id": "shape:perf:03464", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 2176, - "rot": 0, - "props": { - "w": 29, - "h": 43, - "fill": "hsl(138 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03465": { - "id": "shape:perf:03465", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 2176, - "rot": 0, - "props": { - "w": 45, - "h": 34, - "fill": "hsl(299 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03466": { - "id": "shape:perf:03466", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 2176, - "rot": 0, - "props": { - "w": 25, - "h": 24, - "fill": "hsl(227 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03467": { - "id": "shape:perf:03467", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 2176, - "rot": 0, - "props": { - "w": 29, - "h": 34, - "fill": "hsl(273 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03468": { - "id": "shape:perf:03468", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 2176, - "rot": 0, - "props": { - "w": 43, - "h": 36, - "fill": "hsl(227 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03469": { - "id": "shape:perf:03469", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 2176, - "rot": 0, - "props": { - "w": 47, - "h": 46, - "fill": "hsl(257 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03470": { - "id": "shape:perf:03470", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 2176, - "rot": 0, - "props": { - "w": 33, - "h": 33, - "fill": "hsl(321 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03471": { - "id": "shape:perf:03471", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 2176, - "rot": 0, - "props": { - "w": 33, - "h": 32, - "fill": "hsl(276 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03472": { - "id": "shape:perf:03472", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 2176, - "rot": 0, - "props": { - "w": 45, - "h": 35, - "fill": "hsl(64 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03473": { - "id": "shape:perf:03473", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 2176, - "rot": 0, - "props": { - "w": 47, - "h": 25, - "fill": "hsl(106 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03474": { - "id": "shape:perf:03474", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 2176, - "rot": 0, - "props": { - "w": 31, - "h": 26, - "fill": "hsl(33 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03475": { - "id": "shape:perf:03475", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 2176, - "rot": 0, - "props": { - "w": 31, - "h": 27, - "fill": "hsl(296 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03476": { - "id": "shape:perf:03476", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 2176, - "rot": 0, - "props": { - "w": 33, - "h": 36, - "fill": "hsl(209 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03477": { - "id": "shape:perf:03477", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 2176, - "rot": 0, - "props": { - "w": 26, - "h": 36, - "fill": "hsl(298 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03478": { - "id": "shape:perf:03478", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 2176, - "rot": 0, - "props": { - "w": 41, - "h": 45, - "fill": "hsl(281 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03479": { - "id": "shape:perf:03479", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 2176, - "rot": 0, - "props": { - "w": 33, - "h": 37, - "fill": "hsl(345 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03480": { - "id": "shape:perf:03480", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 2176, - "rot": 0, - "props": { - "w": 30, - "h": 45, - "fill": "hsl(100 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03481": { - "id": "shape:perf:03481", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 2176, - "rot": 0, - "props": { - "w": 36, - "h": 45, - "fill": "hsl(252 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03482": { - "id": "shape:perf:03482", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 2176, - "rot": 0, - "props": { - "w": 35, - "h": 32, - "fill": "hsl(225 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03483": { - "id": "shape:perf:03483", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 2176, - "rot": 0, - "props": { - "w": 40, - "h": 35, - "fill": "hsl(273 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03484": { - "id": "shape:perf:03484", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 2176, - "rot": 0, - "props": { - "w": 43, - "h": 36, - "fill": "hsl(159 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03485": { - "id": "shape:perf:03485", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 2176, - "rot": 0, - "props": { - "w": 37, - "h": 37, - "fill": "hsl(173 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03486": { - "id": "shape:perf:03486", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 2176, - "rot": 0, - "props": { - "w": 41, - "h": 37, - "fill": "hsl(327 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03487": { - "id": "shape:perf:03487", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 2176, - "rot": 0, - "props": { - "w": 40, - "h": 33, - "fill": "hsl(274 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03488": { - "id": "shape:perf:03488", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 2176, - "rot": 0, - "props": { - "w": 33, - "h": 41, - "fill": "hsl(28 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03489": { - "id": "shape:perf:03489", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 2176, - "rot": 0, - "props": { - "w": 27, - "h": 45, - "fill": "hsl(285 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03490": { - "id": "shape:perf:03490", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 2176, - "rot": 0, - "props": { - "w": 46, - "h": 30, - "fill": "hsl(334 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03491": { - "id": "shape:perf:03491", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 2176, - "rot": 0, - "props": { - "w": 44, - "h": 33, - "fill": "hsl(108 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03492": { - "id": "shape:perf:03492", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 2176, - "rot": 0, - "props": { - "w": 29, - "h": 41, - "fill": "hsl(341 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03493": { - "id": "shape:perf:03493", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 2176, - "rot": 0, - "props": { - "w": 26, - "h": 39, - "fill": "hsl(285 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03494": { - "id": "shape:perf:03494", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 2176, - "rot": 0, - "props": { - "w": 24, - "h": 43, - "fill": "hsl(349 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03495": { - "id": "shape:perf:03495", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 2176, - "rot": 0, - "props": { - "w": 41, - "h": 45, - "fill": "hsl(75 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03496": { - "id": "shape:perf:03496", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 2176, - "rot": 0, - "props": { - "w": 36, - "h": 37, - "fill": "hsl(65 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03497": { - "id": "shape:perf:03497", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 2176, - "rot": 0, - "props": { - "w": 46, - "h": 44, - "fill": "hsl(117 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03498": { - "id": "shape:perf:03498", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 2176, - "rot": 0, - "props": { - "w": 25, - "h": 30, - "fill": "hsl(328 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03499": { - "id": "shape:perf:03499", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 2176, - "rot": 0, - "props": { - "w": 27, - "h": 38, - "fill": "hsl(19 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03500": { - "id": "shape:perf:03500", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 2240, - "rot": 0, - "props": { - "w": 38, - "h": 30, - "fill": "hsl(251 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03501": { - "id": "shape:perf:03501", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 2240, - "rot": 0, - "props": { - "w": 46, - "h": 46, - "fill": "hsl(10 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03502": { - "id": "shape:perf:03502", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 2240, - "rot": 0, - "props": { - "w": 37, - "h": 25, - "fill": "hsl(220 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03503": { - "id": "shape:perf:03503", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 2240, - "rot": 0, - "props": { - "w": 39, - "h": 39, - "fill": "hsl(295 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03504": { - "id": "shape:perf:03504", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 2240, - "rot": 0, - "props": { - "w": 47, - "h": 32, - "fill": "hsl(283 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03505": { - "id": "shape:perf:03505", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 2240, - "rot": 0, - "props": { - "w": 32, - "h": 26, - "fill": "hsl(346 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03506": { - "id": "shape:perf:03506", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 2240, - "rot": 0, - "props": { - "w": 29, - "h": 45, - "fill": "hsl(228 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03507": { - "id": "shape:perf:03507", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 2240, - "rot": 0, - "props": { - "w": 37, - "h": 36, - "fill": "hsl(85 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03508": { - "id": "shape:perf:03508", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 2240, - "rot": 0, - "props": { - "w": 30, - "h": 32, - "fill": "hsl(161 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03509": { - "id": "shape:perf:03509", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 2240, - "rot": 0, - "props": { - "w": 37, - "h": 24, - "fill": "hsl(188 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03510": { - "id": "shape:perf:03510", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 2240, - "rot": 0, - "props": { - "w": 44, - "h": 47, - "fill": "hsl(0 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03511": { - "id": "shape:perf:03511", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 2240, - "rot": 0, - "props": { - "w": 44, - "h": 36, - "fill": "hsl(45 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03512": { - "id": "shape:perf:03512", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 2240, - "rot": 0, - "props": { - "w": 27, - "h": 35, - "fill": "hsl(139 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03513": { - "id": "shape:perf:03513", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 2240, - "rot": 0, - "props": { - "w": 36, - "h": 44, - "fill": "hsl(266 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03514": { - "id": "shape:perf:03514", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 2240, - "rot": 0, - "props": { - "w": 43, - "h": 25, - "fill": "hsl(356 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03515": { - "id": "shape:perf:03515", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 2240, - "rot": 0, - "props": { - "w": 29, - "h": 32, - "fill": "hsl(177 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03516": { - "id": "shape:perf:03516", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 2240, - "rot": 0, - "props": { - "w": 31, - "h": 42, - "fill": "hsl(258 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03517": { - "id": "shape:perf:03517", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 2240, - "rot": 0, - "props": { - "w": 39, - "h": 34, - "fill": "hsl(68 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03518": { - "id": "shape:perf:03518", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 2240, - "rot": 0, - "props": { - "w": 39, - "h": 26, - "fill": "hsl(66 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03519": { - "id": "shape:perf:03519", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 2240, - "rot": 0, - "props": { - "w": 42, - "h": 36, - "fill": "hsl(89 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03520": { - "id": "shape:perf:03520", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 2240, - "rot": 0, - "props": { - "w": 47, - "h": 39, - "fill": "hsl(284 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03521": { - "id": "shape:perf:03521", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 2240, - "rot": 0, - "props": { - "w": 30, - "h": 42, - "fill": "hsl(46 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03522": { - "id": "shape:perf:03522", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 2240, - "rot": 0, - "props": { - "w": 42, - "h": 27, - "fill": "hsl(94 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03523": { - "id": "shape:perf:03523", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 2240, - "rot": 0, - "props": { - "w": 27, - "h": 38, - "fill": "hsl(268 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03524": { - "id": "shape:perf:03524", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 2240, - "rot": 0, - "props": { - "w": 44, - "h": 29, - "fill": "hsl(256 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03525": { - "id": "shape:perf:03525", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 2240, - "rot": 0, - "props": { - "w": 47, - "h": 33, - "fill": "hsl(216 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03526": { - "id": "shape:perf:03526", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 2240, - "rot": 0, - "props": { - "w": 38, - "h": 29, - "fill": "hsl(104 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03527": { - "id": "shape:perf:03527", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 2240, - "rot": 0, - "props": { - "w": 29, - "h": 32, - "fill": "hsl(199 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03528": { - "id": "shape:perf:03528", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 2240, - "rot": 0, - "props": { - "w": 31, - "h": 47, - "fill": "hsl(159 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03529": { - "id": "shape:perf:03529", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 2240, - "rot": 0, - "props": { - "w": 36, - "h": 43, - "fill": "hsl(219 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03530": { - "id": "shape:perf:03530", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 2240, - "rot": 0, - "props": { - "w": 36, - "h": 37, - "fill": "hsl(162 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03531": { - "id": "shape:perf:03531", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 2240, - "rot": 0, - "props": { - "w": 37, - "h": 44, - "fill": "hsl(47 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03532": { - "id": "shape:perf:03532", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 2240, - "rot": 0, - "props": { - "w": 27, - "h": 26, - "fill": "hsl(201 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03533": { - "id": "shape:perf:03533", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 2240, - "rot": 0, - "props": { - "w": 35, - "h": 42, - "fill": "hsl(217 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03534": { - "id": "shape:perf:03534", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 2240, - "rot": 0, - "props": { - "w": 43, - "h": 29, - "fill": "hsl(184 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03535": { - "id": "shape:perf:03535", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 2240, - "rot": 0, - "props": { - "w": 32, - "h": 47, - "fill": "hsl(125 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03536": { - "id": "shape:perf:03536", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 2240, - "rot": 0, - "props": { - "w": 30, - "h": 44, - "fill": "hsl(23 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03537": { - "id": "shape:perf:03537", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 2240, - "rot": 0, - "props": { - "w": 34, - "h": 32, - "fill": "hsl(308 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03538": { - "id": "shape:perf:03538", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 2240, - "rot": 0, - "props": { - "w": 43, - "h": 45, - "fill": "hsl(157 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03539": { - "id": "shape:perf:03539", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 2240, - "rot": 0, - "props": { - "w": 28, - "h": 43, - "fill": "hsl(354 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03540": { - "id": "shape:perf:03540", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 2240, - "rot": 0, - "props": { - "w": 32, - "h": 44, - "fill": "hsl(303 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03541": { - "id": "shape:perf:03541", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 2240, - "rot": 0, - "props": { - "w": 31, - "h": 33, - "fill": "hsl(188 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03542": { - "id": "shape:perf:03542", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 2240, - "rot": 0, - "props": { - "w": 47, - "h": 38, - "fill": "hsl(337 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03543": { - "id": "shape:perf:03543", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 2240, - "rot": 0, - "props": { - "w": 33, - "h": 39, - "fill": "hsl(240 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03544": { - "id": "shape:perf:03544", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 2240, - "rot": 0, - "props": { - "w": 25, - "h": 31, - "fill": "hsl(217 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03545": { - "id": "shape:perf:03545", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 2240, - "rot": 0, - "props": { - "w": 44, - "h": 44, - "fill": "hsl(157 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03546": { - "id": "shape:perf:03546", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 2240, - "rot": 0, - "props": { - "w": 32, - "h": 39, - "fill": "hsl(335 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03547": { - "id": "shape:perf:03547", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 2240, - "rot": 0, - "props": { - "w": 38, - "h": 36, - "fill": "hsl(323 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03548": { - "id": "shape:perf:03548", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 2240, - "rot": 0, - "props": { - "w": 31, - "h": 43, - "fill": "hsl(168 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03549": { - "id": "shape:perf:03549", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 2240, - "rot": 0, - "props": { - "w": 26, - "h": 42, - "fill": "hsl(328 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03550": { - "id": "shape:perf:03550", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 2240, - "rot": 0, - "props": { - "w": 35, - "h": 30, - "fill": "hsl(50 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03551": { - "id": "shape:perf:03551", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 2240, - "rot": 0, - "props": { - "w": 37, - "h": 26, - "fill": "hsl(34 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03552": { - "id": "shape:perf:03552", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 2240, - "rot": 0, - "props": { - "w": 24, - "h": 25, - "fill": "hsl(179 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03553": { - "id": "shape:perf:03553", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 2240, - "rot": 0, - "props": { - "w": 41, - "h": 37, - "fill": "hsl(46 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03554": { - "id": "shape:perf:03554", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 2240, - "rot": 0, - "props": { - "w": 35, - "h": 35, - "fill": "hsl(101 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03555": { - "id": "shape:perf:03555", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 2240, - "rot": 0, - "props": { - "w": 34, - "h": 35, - "fill": "hsl(299 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03556": { - "id": "shape:perf:03556", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 2240, - "rot": 0, - "props": { - "w": 24, - "h": 41, - "fill": "hsl(300 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03557": { - "id": "shape:perf:03557", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 2240, - "rot": 0, - "props": { - "w": 45, - "h": 26, - "fill": "hsl(316 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03558": { - "id": "shape:perf:03558", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 2240, - "rot": 0, - "props": { - "w": 32, - "h": 31, - "fill": "hsl(234 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03559": { - "id": "shape:perf:03559", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 2240, - "rot": 0, - "props": { - "w": 39, - "h": 33, - "fill": "hsl(242 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03560": { - "id": "shape:perf:03560", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 2240, - "rot": 0, - "props": { - "w": 28, - "h": 46, - "fill": "hsl(92 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03561": { - "id": "shape:perf:03561", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 2240, - "rot": 0, - "props": { - "w": 38, - "h": 37, - "fill": "hsl(266 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03562": { - "id": "shape:perf:03562", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 2240, - "rot": 0, - "props": { - "w": 28, - "h": 47, - "fill": "hsl(13 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03563": { - "id": "shape:perf:03563", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 2240, - "rot": 0, - "props": { - "w": 25, - "h": 28, - "fill": "hsl(107 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03564": { - "id": "shape:perf:03564", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 2240, - "rot": 0, - "props": { - "w": 46, - "h": 44, - "fill": "hsl(112 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03565": { - "id": "shape:perf:03565", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 2240, - "rot": 0, - "props": { - "w": 41, - "h": 34, - "fill": "hsl(341 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03566": { - "id": "shape:perf:03566", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 2240, - "rot": 0, - "props": { - "w": 46, - "h": 44, - "fill": "hsl(66 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03567": { - "id": "shape:perf:03567", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 2240, - "rot": 0, - "props": { - "w": 37, - "h": 37, - "fill": "hsl(303 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03568": { - "id": "shape:perf:03568", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 2240, - "rot": 0, - "props": { - "w": 42, - "h": 43, - "fill": "hsl(122 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03569": { - "id": "shape:perf:03569", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 2240, - "rot": 0, - "props": { - "w": 29, - "h": 32, - "fill": "hsl(194 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03570": { - "id": "shape:perf:03570", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 2240, - "rot": 0, - "props": { - "w": 34, - "h": 32, - "fill": "hsl(132 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03571": { - "id": "shape:perf:03571", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 2240, - "rot": 0, - "props": { - "w": 43, - "h": 43, - "fill": "hsl(212 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03572": { - "id": "shape:perf:03572", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 2240, - "rot": 0, - "props": { - "w": 26, - "h": 35, - "fill": "hsl(12 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03573": { - "id": "shape:perf:03573", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 2240, - "rot": 0, - "props": { - "w": 43, - "h": 31, - "fill": "hsl(192 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03574": { - "id": "shape:perf:03574", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 2240, - "rot": 0, - "props": { - "w": 32, - "h": 27, - "fill": "hsl(252 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03575": { - "id": "shape:perf:03575", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 2240, - "rot": 0, - "props": { - "w": 42, - "h": 47, - "fill": "hsl(174 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03576": { - "id": "shape:perf:03576", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 2240, - "rot": 0, - "props": { - "w": 31, - "h": 36, - "fill": "hsl(132 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03577": { - "id": "shape:perf:03577", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 2240, - "rot": 0, - "props": { - "w": 24, - "h": 37, - "fill": "hsl(84 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03578": { - "id": "shape:perf:03578", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 2240, - "rot": 0, - "props": { - "w": 46, - "h": 44, - "fill": "hsl(100 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03579": { - "id": "shape:perf:03579", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 2240, - "rot": 0, - "props": { - "w": 45, - "h": 40, - "fill": "hsl(34 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03580": { - "id": "shape:perf:03580", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 2240, - "rot": 0, - "props": { - "w": 24, - "h": 26, - "fill": "hsl(6 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03581": { - "id": "shape:perf:03581", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 2240, - "rot": 0, - "props": { - "w": 46, - "h": 42, - "fill": "hsl(330 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03582": { - "id": "shape:perf:03582", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 2240, - "rot": 0, - "props": { - "w": 44, - "h": 28, - "fill": "hsl(103 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03583": { - "id": "shape:perf:03583", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 2240, - "rot": 0, - "props": { - "w": 45, - "h": 46, - "fill": "hsl(356 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03584": { - "id": "shape:perf:03584", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 2240, - "rot": 0, - "props": { - "w": 26, - "h": 44, - "fill": "hsl(227 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03585": { - "id": "shape:perf:03585", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 2240, - "rot": 0, - "props": { - "w": 44, - "h": 46, - "fill": "hsl(174 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03586": { - "id": "shape:perf:03586", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 2240, - "rot": 0, - "props": { - "w": 27, - "h": 44, - "fill": "hsl(231 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03587": { - "id": "shape:perf:03587", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 2240, - "rot": 0, - "props": { - "w": 39, - "h": 28, - "fill": "hsl(236 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03588": { - "id": "shape:perf:03588", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 2240, - "rot": 0, - "props": { - "w": 37, - "h": 26, - "fill": "hsl(203 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03589": { - "id": "shape:perf:03589", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 2240, - "rot": 0, - "props": { - "w": 46, - "h": 32, - "fill": "hsl(300 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03590": { - "id": "shape:perf:03590", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 2240, - "rot": 0, - "props": { - "w": 25, - "h": 30, - "fill": "hsl(301 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03591": { - "id": "shape:perf:03591", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 2240, - "rot": 0, - "props": { - "w": 35, - "h": 32, - "fill": "hsl(149 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03592": { - "id": "shape:perf:03592", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 2240, - "rot": 0, - "props": { - "w": 41, - "h": 32, - "fill": "hsl(330 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03593": { - "id": "shape:perf:03593", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 2240, - "rot": 0, - "props": { - "w": 43, - "h": 42, - "fill": "hsl(12 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03594": { - "id": "shape:perf:03594", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 2240, - "rot": 0, - "props": { - "w": 31, - "h": 37, - "fill": "hsl(10 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03595": { - "id": "shape:perf:03595", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 2240, - "rot": 0, - "props": { - "w": 39, - "h": 29, - "fill": "hsl(359 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03596": { - "id": "shape:perf:03596", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 2240, - "rot": 0, - "props": { - "w": 32, - "h": 27, - "fill": "hsl(3 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03597": { - "id": "shape:perf:03597", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 2240, - "rot": 0, - "props": { - "w": 28, - "h": 44, - "fill": "hsl(212 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03598": { - "id": "shape:perf:03598", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 2240, - "rot": 0, - "props": { - "w": 42, - "h": 39, - "fill": "hsl(197 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03599": { - "id": "shape:perf:03599", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 2240, - "rot": 0, - "props": { - "w": 36, - "h": 28, - "fill": "hsl(247 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03600": { - "id": "shape:perf:03600", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 2304, - "rot": 0, - "props": { - "w": 46, - "h": 39, - "fill": "hsl(232 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03601": { - "id": "shape:perf:03601", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 2304, - "rot": 0, - "props": { - "w": 47, - "h": 36, - "fill": "hsl(123 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03602": { - "id": "shape:perf:03602", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 2304, - "rot": 0, - "props": { - "w": 33, - "h": 45, - "fill": "hsl(134 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03603": { - "id": "shape:perf:03603", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 2304, - "rot": 0, - "props": { - "w": 47, - "h": 38, - "fill": "hsl(79 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03604": { - "id": "shape:perf:03604", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 2304, - "rot": 0, - "props": { - "w": 29, - "h": 24, - "fill": "hsl(273 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03605": { - "id": "shape:perf:03605", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 2304, - "rot": 0, - "props": { - "w": 31, - "h": 47, - "fill": "hsl(278 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03606": { - "id": "shape:perf:03606", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 2304, - "rot": 0, - "props": { - "w": 42, - "h": 24, - "fill": "hsl(85 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03607": { - "id": "shape:perf:03607", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 2304, - "rot": 0, - "props": { - "w": 35, - "h": 39, - "fill": "hsl(312 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03608": { - "id": "shape:perf:03608", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 2304, - "rot": 0, - "props": { - "w": 31, - "h": 31, - "fill": "hsl(118 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03609": { - "id": "shape:perf:03609", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 2304, - "rot": 0, - "props": { - "w": 29, - "h": 24, - "fill": "hsl(298 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03610": { - "id": "shape:perf:03610", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 2304, - "rot": 0, - "props": { - "w": 43, - "h": 34, - "fill": "hsl(156 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03611": { - "id": "shape:perf:03611", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 2304, - "rot": 0, - "props": { - "w": 38, - "h": 24, - "fill": "hsl(125 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03612": { - "id": "shape:perf:03612", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 2304, - "rot": 0, - "props": { - "w": 34, - "h": 45, - "fill": "hsl(232 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03613": { - "id": "shape:perf:03613", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 2304, - "rot": 0, - "props": { - "w": 39, - "h": 41, - "fill": "hsl(176 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03614": { - "id": "shape:perf:03614", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 2304, - "rot": 0, - "props": { - "w": 35, - "h": 37, - "fill": "hsl(166 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03615": { - "id": "shape:perf:03615", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 2304, - "rot": 0, - "props": { - "w": 47, - "h": 28, - "fill": "hsl(183 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03616": { - "id": "shape:perf:03616", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 2304, - "rot": 0, - "props": { - "w": 30, - "h": 33, - "fill": "hsl(116 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03617": { - "id": "shape:perf:03617", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 2304, - "rot": 0, - "props": { - "w": 29, - "h": 35, - "fill": "hsl(237 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03618": { - "id": "shape:perf:03618", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 2304, - "rot": 0, - "props": { - "w": 41, - "h": 35, - "fill": "hsl(28 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03619": { - "id": "shape:perf:03619", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 2304, - "rot": 0, - "props": { - "w": 39, - "h": 27, - "fill": "hsl(342 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03620": { - "id": "shape:perf:03620", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 2304, - "rot": 0, - "props": { - "w": 37, - "h": 34, - "fill": "hsl(219 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03621": { - "id": "shape:perf:03621", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 2304, - "rot": 0, - "props": { - "w": 25, - "h": 34, - "fill": "hsl(70 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03622": { - "id": "shape:perf:03622", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 2304, - "rot": 0, - "props": { - "w": 28, - "h": 33, - "fill": "hsl(161 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03623": { - "id": "shape:perf:03623", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 2304, - "rot": 0, - "props": { - "w": 43, - "h": 35, - "fill": "hsl(7 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03624": { - "id": "shape:perf:03624", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 2304, - "rot": 0, - "props": { - "w": 36, - "h": 29, - "fill": "hsl(330 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03625": { - "id": "shape:perf:03625", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 2304, - "rot": 0, - "props": { - "w": 33, - "h": 32, - "fill": "hsl(29 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03626": { - "id": "shape:perf:03626", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 2304, - "rot": 0, - "props": { - "w": 37, - "h": 28, - "fill": "hsl(133 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03627": { - "id": "shape:perf:03627", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 2304, - "rot": 0, - "props": { - "w": 45, - "h": 33, - "fill": "hsl(293 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03628": { - "id": "shape:perf:03628", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 2304, - "rot": 0, - "props": { - "w": 35, - "h": 33, - "fill": "hsl(237 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03629": { - "id": "shape:perf:03629", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 2304, - "rot": 0, - "props": { - "w": 41, - "h": 28, - "fill": "hsl(26 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03630": { - "id": "shape:perf:03630", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 2304, - "rot": 0, - "props": { - "w": 34, - "h": 44, - "fill": "hsl(307 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03631": { - "id": "shape:perf:03631", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 2304, - "rot": 0, - "props": { - "w": 42, - "h": 47, - "fill": "hsl(55 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03632": { - "id": "shape:perf:03632", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 2304, - "rot": 0, - "props": { - "w": 47, - "h": 29, - "fill": "hsl(256 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03633": { - "id": "shape:perf:03633", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 2304, - "rot": 0, - "props": { - "w": 24, - "h": 25, - "fill": "hsl(125 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03634": { - "id": "shape:perf:03634", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 2304, - "rot": 0, - "props": { - "w": 45, - "h": 38, - "fill": "hsl(171 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03635": { - "id": "shape:perf:03635", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 2304, - "rot": 0, - "props": { - "w": 33, - "h": 33, - "fill": "hsl(245 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03636": { - "id": "shape:perf:03636", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 2304, - "rot": 0, - "props": { - "w": 42, - "h": 34, - "fill": "hsl(69 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03637": { - "id": "shape:perf:03637", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 2304, - "rot": 0, - "props": { - "w": 47, - "h": 30, - "fill": "hsl(350 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03638": { - "id": "shape:perf:03638", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 2304, - "rot": 0, - "props": { - "w": 46, - "h": 45, - "fill": "hsl(113 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03639": { - "id": "shape:perf:03639", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 2304, - "rot": 0, - "props": { - "w": 44, - "h": 37, - "fill": "hsl(182 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03640": { - "id": "shape:perf:03640", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 2304, - "rot": 0, - "props": { - "w": 34, - "h": 46, - "fill": "hsl(118 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03641": { - "id": "shape:perf:03641", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 2304, - "rot": 0, - "props": { - "w": 31, - "h": 37, - "fill": "hsl(71 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03642": { - "id": "shape:perf:03642", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 2304, - "rot": 0, - "props": { - "w": 37, - "h": 45, - "fill": "hsl(135 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03643": { - "id": "shape:perf:03643", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 2304, - "rot": 0, - "props": { - "w": 43, - "h": 36, - "fill": "hsl(23 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03644": { - "id": "shape:perf:03644", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 2304, - "rot": 0, - "props": { - "w": 32, - "h": 28, - "fill": "hsl(211 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03645": { - "id": "shape:perf:03645", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 2304, - "rot": 0, - "props": { - "w": 24, - "h": 24, - "fill": "hsl(333 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03646": { - "id": "shape:perf:03646", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 2304, - "rot": 0, - "props": { - "w": 31, - "h": 41, - "fill": "hsl(296 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03647": { - "id": "shape:perf:03647", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 2304, - "rot": 0, - "props": { - "w": 30, - "h": 36, - "fill": "hsl(43 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03648": { - "id": "shape:perf:03648", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 2304, - "rot": 0, - "props": { - "w": 27, - "h": 37, - "fill": "hsl(147 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03649": { - "id": "shape:perf:03649", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 2304, - "rot": 0, - "props": { - "w": 36, - "h": 37, - "fill": "hsl(314 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03650": { - "id": "shape:perf:03650", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 2304, - "rot": 0, - "props": { - "w": 29, - "h": 42, - "fill": "hsl(146 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03651": { - "id": "shape:perf:03651", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 2304, - "rot": 0, - "props": { - "w": 30, - "h": 46, - "fill": "hsl(35 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03652": { - "id": "shape:perf:03652", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 2304, - "rot": 0, - "props": { - "w": 37, - "h": 28, - "fill": "hsl(44 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03653": { - "id": "shape:perf:03653", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 2304, - "rot": 0, - "props": { - "w": 27, - "h": 29, - "fill": "hsl(73 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03654": { - "id": "shape:perf:03654", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 2304, - "rot": 0, - "props": { - "w": 47, - "h": 27, - "fill": "hsl(330 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03655": { - "id": "shape:perf:03655", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 2304, - "rot": 0, - "props": { - "w": 39, - "h": 47, - "fill": "hsl(42 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03656": { - "id": "shape:perf:03656", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 2304, - "rot": 0, - "props": { - "w": 33, - "h": 36, - "fill": "hsl(345 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03657": { - "id": "shape:perf:03657", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 2304, - "rot": 0, - "props": { - "w": 30, - "h": 37, - "fill": "hsl(264 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03658": { - "id": "shape:perf:03658", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 2304, - "rot": 0, - "props": { - "w": 27, - "h": 37, - "fill": "hsl(211 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03659": { - "id": "shape:perf:03659", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 2304, - "rot": 0, - "props": { - "w": 45, - "h": 40, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03660": { - "id": "shape:perf:03660", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 2304, - "rot": 0, - "props": { - "w": 32, - "h": 39, - "fill": "hsl(78 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03661": { - "id": "shape:perf:03661", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 2304, - "rot": 0, - "props": { - "w": 40, - "h": 38, - "fill": "hsl(342 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03662": { - "id": "shape:perf:03662", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 2304, - "rot": 0, - "props": { - "w": 30, - "h": 33, - "fill": "hsl(243 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03663": { - "id": "shape:perf:03663", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 2304, - "rot": 0, - "props": { - "w": 27, - "h": 39, - "fill": "hsl(147 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03664": { - "id": "shape:perf:03664", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 2304, - "rot": 0, - "props": { - "w": 37, - "h": 24, - "fill": "hsl(353 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03665": { - "id": "shape:perf:03665", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 2304, - "rot": 0, - "props": { - "w": 45, - "h": 24, - "fill": "hsl(151 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03666": { - "id": "shape:perf:03666", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 2304, - "rot": 0, - "props": { - "w": 28, - "h": 44, - "fill": "hsl(281 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03667": { - "id": "shape:perf:03667", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 2304, - "rot": 0, - "props": { - "w": 39, - "h": 39, - "fill": "hsl(152 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03668": { - "id": "shape:perf:03668", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 2304, - "rot": 0, - "props": { - "w": 27, - "h": 25, - "fill": "hsl(350 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03669": { - "id": "shape:perf:03669", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 2304, - "rot": 0, - "props": { - "w": 44, - "h": 35, - "fill": "hsl(138 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03670": { - "id": "shape:perf:03670", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 2304, - "rot": 0, - "props": { - "w": 26, - "h": 38, - "fill": "hsl(188 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03671": { - "id": "shape:perf:03671", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 2304, - "rot": 0, - "props": { - "w": 47, - "h": 40, - "fill": "hsl(170 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03672": { - "id": "shape:perf:03672", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 2304, - "rot": 0, - "props": { - "w": 30, - "h": 37, - "fill": "hsl(151 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03673": { - "id": "shape:perf:03673", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 2304, - "rot": 0, - "props": { - "w": 41, - "h": 45, - "fill": "hsl(206 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03674": { - "id": "shape:perf:03674", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 2304, - "rot": 0, - "props": { - "w": 33, - "h": 42, - "fill": "hsl(240 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03675": { - "id": "shape:perf:03675", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 2304, - "rot": 0, - "props": { - "w": 26, - "h": 44, - "fill": "hsl(283 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03676": { - "id": "shape:perf:03676", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 2304, - "rot": 0, - "props": { - "w": 34, - "h": 43, - "fill": "hsl(9 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03677": { - "id": "shape:perf:03677", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 2304, - "rot": 0, - "props": { - "w": 31, - "h": 26, - "fill": "hsl(196 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03678": { - "id": "shape:perf:03678", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 2304, - "rot": 0, - "props": { - "w": 37, - "h": 40, - "fill": "hsl(311 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03679": { - "id": "shape:perf:03679", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 2304, - "rot": 0, - "props": { - "w": 34, - "h": 25, - "fill": "hsl(68 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03680": { - "id": "shape:perf:03680", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 2304, - "rot": 0, - "props": { - "w": 24, - "h": 43, - "fill": "hsl(153 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03681": { - "id": "shape:perf:03681", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 2304, - "rot": 0, - "props": { - "w": 36, - "h": 32, - "fill": "hsl(41 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03682": { - "id": "shape:perf:03682", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 2304, - "rot": 0, - "props": { - "w": 38, - "h": 38, - "fill": "hsl(185 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03683": { - "id": "shape:perf:03683", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 2304, - "rot": 0, - "props": { - "w": 35, - "h": 30, - "fill": "hsl(40 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03684": { - "id": "shape:perf:03684", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 2304, - "rot": 0, - "props": { - "w": 30, - "h": 46, - "fill": "hsl(259 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03685": { - "id": "shape:perf:03685", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 2304, - "rot": 0, - "props": { - "w": 47, - "h": 27, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03686": { - "id": "shape:perf:03686", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 2304, - "rot": 0, - "props": { - "w": 31, - "h": 27, - "fill": "hsl(182 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03687": { - "id": "shape:perf:03687", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 2304, - "rot": 0, - "props": { - "w": 39, - "h": 24, - "fill": "hsl(261 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03688": { - "id": "shape:perf:03688", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 2304, - "rot": 0, - "props": { - "w": 27, - "h": 29, - "fill": "hsl(340 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03689": { - "id": "shape:perf:03689", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 2304, - "rot": 0, - "props": { - "w": 47, - "h": 24, - "fill": "hsl(40 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03690": { - "id": "shape:perf:03690", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 2304, - "rot": 0, - "props": { - "w": 39, - "h": 33, - "fill": "hsl(277 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03691": { - "id": "shape:perf:03691", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 2304, - "rot": 0, - "props": { - "w": 28, - "h": 46, - "fill": "hsl(301 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03692": { - "id": "shape:perf:03692", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 2304, - "rot": 0, - "props": { - "w": 42, - "h": 45, - "fill": "hsl(216 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03693": { - "id": "shape:perf:03693", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 2304, - "rot": 0, - "props": { - "w": 39, - "h": 31, - "fill": "hsl(288 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03694": { - "id": "shape:perf:03694", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 2304, - "rot": 0, - "props": { - "w": 43, - "h": 44, - "fill": "hsl(332 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03695": { - "id": "shape:perf:03695", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 2304, - "rot": 0, - "props": { - "w": 41, - "h": 30, - "fill": "hsl(182 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03696": { - "id": "shape:perf:03696", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 2304, - "rot": 0, - "props": { - "w": 47, - "h": 45, - "fill": "hsl(213 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03697": { - "id": "shape:perf:03697", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 2304, - "rot": 0, - "props": { - "w": 29, - "h": 29, - "fill": "hsl(64 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03698": { - "id": "shape:perf:03698", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 2304, - "rot": 0, - "props": { - "w": 33, - "h": 35, - "fill": "hsl(168 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03699": { - "id": "shape:perf:03699", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 2304, - "rot": 0, - "props": { - "w": 33, - "h": 46, - "fill": "hsl(191 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03700": { - "id": "shape:perf:03700", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 2368, - "rot": 0, - "props": { - "w": 25, - "h": 32, - "fill": "hsl(67 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03701": { - "id": "shape:perf:03701", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 2368, - "rot": 0, - "props": { - "w": 46, - "h": 38, - "fill": "hsl(278 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03702": { - "id": "shape:perf:03702", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 2368, - "rot": 0, - "props": { - "w": 30, - "h": 47, - "fill": "hsl(106 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03703": { - "id": "shape:perf:03703", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 2368, - "rot": 0, - "props": { - "w": 39, - "h": 47, - "fill": "hsl(83 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03704": { - "id": "shape:perf:03704", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 2368, - "rot": 0, - "props": { - "w": 33, - "h": 35, - "fill": "hsl(308 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03705": { - "id": "shape:perf:03705", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 2368, - "rot": 0, - "props": { - "w": 39, - "h": 24, - "fill": "hsl(164 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03706": { - "id": "shape:perf:03706", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 2368, - "rot": 0, - "props": { - "w": 44, - "h": 32, - "fill": "hsl(160 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03707": { - "id": "shape:perf:03707", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 2368, - "rot": 0, - "props": { - "w": 38, - "h": 33, - "fill": "hsl(73 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03708": { - "id": "shape:perf:03708", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 2368, - "rot": 0, - "props": { - "w": 27, - "h": 30, - "fill": "hsl(35 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03709": { - "id": "shape:perf:03709", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 2368, - "rot": 0, - "props": { - "w": 26, - "h": 37, - "fill": "hsl(244 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03710": { - "id": "shape:perf:03710", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 2368, - "rot": 0, - "props": { - "w": 37, - "h": 25, - "fill": "hsl(145 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03711": { - "id": "shape:perf:03711", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 2368, - "rot": 0, - "props": { - "w": 34, - "h": 33, - "fill": "hsl(346 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03712": { - "id": "shape:perf:03712", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 2368, - "rot": 0, - "props": { - "w": 40, - "h": 26, - "fill": "hsl(223 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03713": { - "id": "shape:perf:03713", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 2368, - "rot": 0, - "props": { - "w": 29, - "h": 46, - "fill": "hsl(51 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03714": { - "id": "shape:perf:03714", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 2368, - "rot": 0, - "props": { - "w": 41, - "h": 30, - "fill": "hsl(135 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03715": { - "id": "shape:perf:03715", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 2368, - "rot": 0, - "props": { - "w": 27, - "h": 29, - "fill": "hsl(235 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03716": { - "id": "shape:perf:03716", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 2368, - "rot": 0, - "props": { - "w": 45, - "h": 39, - "fill": "hsl(168 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03717": { - "id": "shape:perf:03717", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 2368, - "rot": 0, - "props": { - "w": 28, - "h": 27, - "fill": "hsl(254 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03718": { - "id": "shape:perf:03718", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 2368, - "rot": 0, - "props": { - "w": 42, - "h": 25, - "fill": "hsl(109 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03719": { - "id": "shape:perf:03719", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 2368, - "rot": 0, - "props": { - "w": 30, - "h": 41, - "fill": "hsl(92 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03720": { - "id": "shape:perf:03720", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 2368, - "rot": 0, - "props": { - "w": 39, - "h": 31, - "fill": "hsl(352 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03721": { - "id": "shape:perf:03721", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 2368, - "rot": 0, - "props": { - "w": 39, - "h": 40, - "fill": "hsl(215 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03722": { - "id": "shape:perf:03722", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 2368, - "rot": 0, - "props": { - "w": 26, - "h": 28, - "fill": "hsl(216 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03723": { - "id": "shape:perf:03723", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 2368, - "rot": 0, - "props": { - "w": 46, - "h": 37, - "fill": "hsl(329 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03724": { - "id": "shape:perf:03724", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 2368, - "rot": 0, - "props": { - "w": 33, - "h": 43, - "fill": "hsl(241 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03725": { - "id": "shape:perf:03725", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 2368, - "rot": 0, - "props": { - "w": 40, - "h": 40, - "fill": "hsl(75 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03726": { - "id": "shape:perf:03726", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 2368, - "rot": 0, - "props": { - "w": 41, - "h": 33, - "fill": "hsl(297 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03727": { - "id": "shape:perf:03727", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 2368, - "rot": 0, - "props": { - "w": 44, - "h": 32, - "fill": "hsl(142 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03728": { - "id": "shape:perf:03728", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 2368, - "rot": 0, - "props": { - "w": 25, - "h": 31, - "fill": "hsl(139 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03729": { - "id": "shape:perf:03729", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 2368, - "rot": 0, - "props": { - "w": 42, - "h": 34, - "fill": "hsl(4 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03730": { - "id": "shape:perf:03730", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 2368, - "rot": 0, - "props": { - "w": 39, - "h": 41, - "fill": "hsl(286 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03731": { - "id": "shape:perf:03731", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 2368, - "rot": 0, - "props": { - "w": 32, - "h": 26, - "fill": "hsl(265 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03732": { - "id": "shape:perf:03732", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 2368, - "rot": 0, - "props": { - "w": 35, - "h": 28, - "fill": "hsl(135 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03733": { - "id": "shape:perf:03733", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 2368, - "rot": 0, - "props": { - "w": 25, - "h": 27, - "fill": "hsl(150 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03734": { - "id": "shape:perf:03734", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 2368, - "rot": 0, - "props": { - "w": 28, - "h": 26, - "fill": "hsl(316 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03735": { - "id": "shape:perf:03735", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 2368, - "rot": 0, - "props": { - "w": 34, - "h": 28, - "fill": "hsl(230 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03736": { - "id": "shape:perf:03736", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 2368, - "rot": 0, - "props": { - "w": 36, - "h": 45, - "fill": "hsl(34 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03737": { - "id": "shape:perf:03737", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 2368, - "rot": 0, - "props": { - "w": 41, - "h": 31, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03738": { - "id": "shape:perf:03738", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 2368, - "rot": 0, - "props": { - "w": 46, - "h": 45, - "fill": "hsl(153 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03739": { - "id": "shape:perf:03739", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 2368, - "rot": 0, - "props": { - "w": 46, - "h": 29, - "fill": "hsl(50 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03740": { - "id": "shape:perf:03740", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 2368, - "rot": 0, - "props": { - "w": 43, - "h": 45, - "fill": "hsl(323 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03741": { - "id": "shape:perf:03741", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 2368, - "rot": 0, - "props": { - "w": 34, - "h": 47, - "fill": "hsl(242 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03742": { - "id": "shape:perf:03742", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 2368, - "rot": 0, - "props": { - "w": 46, - "h": 27, - "fill": "hsl(212 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03743": { - "id": "shape:perf:03743", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 2368, - "rot": 0, - "props": { - "w": 35, - "h": 36, - "fill": "hsl(208 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03744": { - "id": "shape:perf:03744", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 2368, - "rot": 0, - "props": { - "w": 37, - "h": 43, - "fill": "hsl(336 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03745": { - "id": "shape:perf:03745", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 2368, - "rot": 0, - "props": { - "w": 42, - "h": 28, - "fill": "hsl(171 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03746": { - "id": "shape:perf:03746", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 2368, - "rot": 0, - "props": { - "w": 34, - "h": 33, - "fill": "hsl(13 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03747": { - "id": "shape:perf:03747", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 2368, - "rot": 0, - "props": { - "w": 28, - "h": 47, - "fill": "hsl(8 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03748": { - "id": "shape:perf:03748", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 2368, - "rot": 0, - "props": { - "w": 43, - "h": 36, - "fill": "hsl(315 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03749": { - "id": "shape:perf:03749", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 2368, - "rot": 0, - "props": { - "w": 31, - "h": 44, - "fill": "hsl(93 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03750": { - "id": "shape:perf:03750", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 2368, - "rot": 0, - "props": { - "w": 41, - "h": 44, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03751": { - "id": "shape:perf:03751", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 2368, - "rot": 0, - "props": { - "w": 42, - "h": 28, - "fill": "hsl(183 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03752": { - "id": "shape:perf:03752", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 2368, - "rot": 0, - "props": { - "w": 44, - "h": 43, - "fill": "hsl(133 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03753": { - "id": "shape:perf:03753", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 2368, - "rot": 0, - "props": { - "w": 28, - "h": 42, - "fill": "hsl(304 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03754": { - "id": "shape:perf:03754", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 2368, - "rot": 0, - "props": { - "w": 24, - "h": 34, - "fill": "hsl(120 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03755": { - "id": "shape:perf:03755", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 2368, - "rot": 0, - "props": { - "w": 42, - "h": 43, - "fill": "hsl(308 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03756": { - "id": "shape:perf:03756", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 2368, - "rot": 0, - "props": { - "w": 40, - "h": 42, - "fill": "hsl(88 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03757": { - "id": "shape:perf:03757", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 2368, - "rot": 0, - "props": { - "w": 31, - "h": 26, - "fill": "hsl(282 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03758": { - "id": "shape:perf:03758", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 2368, - "rot": 0, - "props": { - "w": 24, - "h": 45, - "fill": "hsl(340 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03759": { - "id": "shape:perf:03759", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 2368, - "rot": 0, - "props": { - "w": 27, - "h": 46, - "fill": "hsl(326 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03760": { - "id": "shape:perf:03760", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 2368, - "rot": 0, - "props": { - "w": 30, - "h": 30, - "fill": "hsl(328 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03761": { - "id": "shape:perf:03761", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 2368, - "rot": 0, - "props": { - "w": 35, - "h": 27, - "fill": "hsl(26 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03762": { - "id": "shape:perf:03762", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 2368, - "rot": 0, - "props": { - "w": 24, - "h": 27, - "fill": "hsl(36 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03763": { - "id": "shape:perf:03763", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 2368, - "rot": 0, - "props": { - "w": 28, - "h": 30, - "fill": "hsl(147 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03764": { - "id": "shape:perf:03764", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 2368, - "rot": 0, - "props": { - "w": 45, - "h": 38, - "fill": "hsl(191 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03765": { - "id": "shape:perf:03765", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 2368, - "rot": 0, - "props": { - "w": 46, - "h": 31, - "fill": "hsl(41 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03766": { - "id": "shape:perf:03766", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 2368, - "rot": 0, - "props": { - "w": 29, - "h": 27, - "fill": "hsl(128 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03767": { - "id": "shape:perf:03767", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 2368, - "rot": 0, - "props": { - "w": 42, - "h": 28, - "fill": "hsl(339 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03768": { - "id": "shape:perf:03768", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 2368, - "rot": 0, - "props": { - "w": 34, - "h": 28, - "fill": "hsl(287 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03769": { - "id": "shape:perf:03769", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 2368, - "rot": 0, - "props": { - "w": 34, - "h": 33, - "fill": "hsl(29 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03770": { - "id": "shape:perf:03770", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 2368, - "rot": 0, - "props": { - "w": 29, - "h": 37, - "fill": "hsl(324 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03771": { - "id": "shape:perf:03771", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 2368, - "rot": 0, - "props": { - "w": 28, - "h": 26, - "fill": "hsl(201 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03772": { - "id": "shape:perf:03772", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 2368, - "rot": 0, - "props": { - "w": 37, - "h": 41, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03773": { - "id": "shape:perf:03773", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 2368, - "rot": 0, - "props": { - "w": 40, - "h": 24, - "fill": "hsl(320 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03774": { - "id": "shape:perf:03774", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 2368, - "rot": 0, - "props": { - "w": 34, - "h": 45, - "fill": "hsl(323 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03775": { - "id": "shape:perf:03775", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 2368, - "rot": 0, - "props": { - "w": 26, - "h": 46, - "fill": "hsl(26 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03776": { - "id": "shape:perf:03776", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 2368, - "rot": 0, - "props": { - "w": 38, - "h": 47, - "fill": "hsl(5 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03777": { - "id": "shape:perf:03777", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 2368, - "rot": 0, - "props": { - "w": 31, - "h": 41, - "fill": "hsl(143 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03778": { - "id": "shape:perf:03778", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 2368, - "rot": 0, - "props": { - "w": 35, - "h": 24, - "fill": "hsl(223 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03779": { - "id": "shape:perf:03779", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 2368, - "rot": 0, - "props": { - "w": 38, - "h": 44, - "fill": "hsl(56 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03780": { - "id": "shape:perf:03780", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 2368, - "rot": 0, - "props": { - "w": 44, - "h": 47, - "fill": "hsl(332 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03781": { - "id": "shape:perf:03781", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 2368, - "rot": 0, - "props": { - "w": 42, - "h": 32, - "fill": "hsl(210 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03782": { - "id": "shape:perf:03782", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 2368, - "rot": 0, - "props": { - "w": 28, - "h": 34, - "fill": "hsl(7 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03783": { - "id": "shape:perf:03783", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 2368, - "rot": 0, - "props": { - "w": 27, - "h": 34, - "fill": "hsl(243 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03784": { - "id": "shape:perf:03784", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 2368, - "rot": 0, - "props": { - "w": 46, - "h": 43, - "fill": "hsl(226 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03785": { - "id": "shape:perf:03785", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 2368, - "rot": 0, - "props": { - "w": 47, - "h": 44, - "fill": "hsl(275 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03786": { - "id": "shape:perf:03786", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 2368, - "rot": 0, - "props": { - "w": 33, - "h": 34, - "fill": "hsl(288 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03787": { - "id": "shape:perf:03787", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 2368, - "rot": 0, - "props": { - "w": 43, - "h": 36, - "fill": "hsl(339 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03788": { - "id": "shape:perf:03788", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 2368, - "rot": 0, - "props": { - "w": 46, - "h": 25, - "fill": "hsl(34 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03789": { - "id": "shape:perf:03789", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 2368, - "rot": 0, - "props": { - "w": 30, - "h": 25, - "fill": "hsl(52 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03790": { - "id": "shape:perf:03790", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 2368, - "rot": 0, - "props": { - "w": 41, - "h": 44, - "fill": "hsl(62 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03791": { - "id": "shape:perf:03791", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 2368, - "rot": 0, - "props": { - "w": 34, - "h": 35, - "fill": "hsl(277 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03792": { - "id": "shape:perf:03792", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 2368, - "rot": 0, - "props": { - "w": 37, - "h": 28, - "fill": "hsl(150 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03793": { - "id": "shape:perf:03793", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 2368, - "rot": 0, - "props": { - "w": 33, - "h": 41, - "fill": "hsl(101 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03794": { - "id": "shape:perf:03794", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 2368, - "rot": 0, - "props": { - "w": 35, - "h": 41, - "fill": "hsl(286 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03795": { - "id": "shape:perf:03795", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 2368, - "rot": 0, - "props": { - "w": 38, - "h": 38, - "fill": "hsl(200 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03796": { - "id": "shape:perf:03796", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 2368, - "rot": 0, - "props": { - "w": 45, - "h": 46, - "fill": "hsl(37 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03797": { - "id": "shape:perf:03797", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 2368, - "rot": 0, - "props": { - "w": 29, - "h": 40, - "fill": "hsl(64 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03798": { - "id": "shape:perf:03798", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 2368, - "rot": 0, - "props": { - "w": 36, - "h": 35, - "fill": "hsl(229 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03799": { - "id": "shape:perf:03799", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 2368, - "rot": 0, - "props": { - "w": 42, - "h": 40, - "fill": "hsl(280 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03800": { - "id": "shape:perf:03800", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 2432, - "rot": 0, - "props": { - "w": 46, - "h": 37, - "fill": "hsl(296 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03801": { - "id": "shape:perf:03801", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 2432, - "rot": 0, - "props": { - "w": 43, - "h": 30, - "fill": "hsl(55 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03802": { - "id": "shape:perf:03802", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 2432, - "rot": 0, - "props": { - "w": 37, - "h": 31, - "fill": "hsl(267 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03803": { - "id": "shape:perf:03803", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 2432, - "rot": 0, - "props": { - "w": 25, - "h": 37, - "fill": "hsl(207 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03804": { - "id": "shape:perf:03804", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 2432, - "rot": 0, - "props": { - "w": 32, - "h": 38, - "fill": "hsl(293 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03805": { - "id": "shape:perf:03805", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 2432, - "rot": 0, - "props": { - "w": 39, - "h": 37, - "fill": "hsl(255 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03806": { - "id": "shape:perf:03806", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 2432, - "rot": 0, - "props": { - "w": 24, - "h": 42, - "fill": "hsl(47 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03807": { - "id": "shape:perf:03807", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 2432, - "rot": 0, - "props": { - "w": 25, - "h": 38, - "fill": "hsl(132 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03808": { - "id": "shape:perf:03808", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 2432, - "rot": 0, - "props": { - "w": 33, - "h": 25, - "fill": "hsl(78 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03809": { - "id": "shape:perf:03809", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 2432, - "rot": 0, - "props": { - "w": 30, - "h": 27, - "fill": "hsl(348 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03810": { - "id": "shape:perf:03810", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 2432, - "rot": 0, - "props": { - "w": 38, - "h": 37, - "fill": "hsl(120 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03811": { - "id": "shape:perf:03811", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 2432, - "rot": 0, - "props": { - "w": 32, - "h": 37, - "fill": "hsl(229 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03812": { - "id": "shape:perf:03812", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 2432, - "rot": 0, - "props": { - "w": 26, - "h": 42, - "fill": "hsl(9 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03813": { - "id": "shape:perf:03813", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 2432, - "rot": 0, - "props": { - "w": 45, - "h": 34, - "fill": "hsl(179 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03814": { - "id": "shape:perf:03814", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 2432, - "rot": 0, - "props": { - "w": 43, - "h": 24, - "fill": "hsl(91 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03815": { - "id": "shape:perf:03815", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 2432, - "rot": 0, - "props": { - "w": 27, - "h": 34, - "fill": "hsl(123 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03816": { - "id": "shape:perf:03816", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 2432, - "rot": 0, - "props": { - "w": 45, - "h": 31, - "fill": "hsl(170 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03817": { - "id": "shape:perf:03817", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 2432, - "rot": 0, - "props": { - "w": 28, - "h": 45, - "fill": "hsl(193 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03818": { - "id": "shape:perf:03818", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 2432, - "rot": 0, - "props": { - "w": 38, - "h": 33, - "fill": "hsl(148 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03819": { - "id": "shape:perf:03819", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 2432, - "rot": 0, - "props": { - "w": 40, - "h": 31, - "fill": "hsl(218 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03820": { - "id": "shape:perf:03820", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 2432, - "rot": 0, - "props": { - "w": 30, - "h": 39, - "fill": "hsl(341 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03821": { - "id": "shape:perf:03821", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 2432, - "rot": 0, - "props": { - "w": 45, - "h": 26, - "fill": "hsl(334 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03822": { - "id": "shape:perf:03822", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 2432, - "rot": 0, - "props": { - "w": 29, - "h": 33, - "fill": "hsl(261 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03823": { - "id": "shape:perf:03823", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 2432, - "rot": 0, - "props": { - "w": 46, - "h": 45, - "fill": "hsl(217 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03824": { - "id": "shape:perf:03824", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 2432, - "rot": 0, - "props": { - "w": 38, - "h": 26, - "fill": "hsl(309 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03825": { - "id": "shape:perf:03825", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 2432, - "rot": 0, - "props": { - "w": 41, - "h": 31, - "fill": "hsl(115 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03826": { - "id": "shape:perf:03826", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 2432, - "rot": 0, - "props": { - "w": 24, - "h": 45, - "fill": "hsl(136 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03827": { - "id": "shape:perf:03827", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 2432, - "rot": 0, - "props": { - "w": 31, - "h": 38, - "fill": "hsl(299 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03828": { - "id": "shape:perf:03828", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 2432, - "rot": 0, - "props": { - "w": 36, - "h": 43, - "fill": "hsl(356 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03829": { - "id": "shape:perf:03829", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 2432, - "rot": 0, - "props": { - "w": 33, - "h": 37, - "fill": "hsl(156 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03830": { - "id": "shape:perf:03830", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 2432, - "rot": 0, - "props": { - "w": 45, - "h": 37, - "fill": "hsl(165 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03831": { - "id": "shape:perf:03831", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 2432, - "rot": 0, - "props": { - "w": 31, - "h": 34, - "fill": "hsl(62 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03832": { - "id": "shape:perf:03832", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 2432, - "rot": 0, - "props": { - "w": 47, - "h": 31, - "fill": "hsl(87 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03833": { - "id": "shape:perf:03833", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 2432, - "rot": 0, - "props": { - "w": 35, - "h": 30, - "fill": "hsl(143 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03834": { - "id": "shape:perf:03834", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 2432, - "rot": 0, - "props": { - "w": 33, - "h": 27, - "fill": "hsl(145 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03835": { - "id": "shape:perf:03835", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 2432, - "rot": 0, - "props": { - "w": 40, - "h": 42, - "fill": "hsl(157 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03836": { - "id": "shape:perf:03836", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 2432, - "rot": 0, - "props": { - "w": 47, - "h": 28, - "fill": "hsl(316 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03837": { - "id": "shape:perf:03837", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 2432, - "rot": 0, - "props": { - "w": 35, - "h": 32, - "fill": "hsl(188 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03838": { - "id": "shape:perf:03838", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 2432, - "rot": 0, - "props": { - "w": 44, - "h": 24, - "fill": "hsl(152 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03839": { - "id": "shape:perf:03839", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 2432, - "rot": 0, - "props": { - "w": 32, - "h": 44, - "fill": "hsl(98 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03840": { - "id": "shape:perf:03840", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 2432, - "rot": 0, - "props": { - "w": 47, - "h": 25, - "fill": "hsl(213 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03841": { - "id": "shape:perf:03841", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 2432, - "rot": 0, - "props": { - "w": 28, - "h": 41, - "fill": "hsl(359 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03842": { - "id": "shape:perf:03842", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 2432, - "rot": 0, - "props": { - "w": 37, - "h": 45, - "fill": "hsl(164 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03843": { - "id": "shape:perf:03843", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 2432, - "rot": 0, - "props": { - "w": 33, - "h": 42, - "fill": "hsl(246 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03844": { - "id": "shape:perf:03844", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 2432, - "rot": 0, - "props": { - "w": 24, - "h": 44, - "fill": "hsl(24 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03845": { - "id": "shape:perf:03845", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 2432, - "rot": 0, - "props": { - "w": 45, - "h": 33, - "fill": "hsl(121 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03846": { - "id": "shape:perf:03846", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 2432, - "rot": 0, - "props": { - "w": 26, - "h": 46, - "fill": "hsl(120 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03847": { - "id": "shape:perf:03847", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 2432, - "rot": 0, - "props": { - "w": 30, - "h": 27, - "fill": "hsl(172 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03848": { - "id": "shape:perf:03848", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 2432, - "rot": 0, - "props": { - "w": 24, - "h": 32, - "fill": "hsl(293 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03849": { - "id": "shape:perf:03849", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 2432, - "rot": 0, - "props": { - "w": 37, - "h": 26, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03850": { - "id": "shape:perf:03850", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 2432, - "rot": 0, - "props": { - "w": 37, - "h": 33, - "fill": "hsl(56 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03851": { - "id": "shape:perf:03851", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 2432, - "rot": 0, - "props": { - "w": 38, - "h": 34, - "fill": "hsl(149 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03852": { - "id": "shape:perf:03852", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 2432, - "rot": 0, - "props": { - "w": 39, - "h": 29, - "fill": "hsl(172 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03853": { - "id": "shape:perf:03853", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 2432, - "rot": 0, - "props": { - "w": 42, - "h": 46, - "fill": "hsl(282 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03854": { - "id": "shape:perf:03854", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 2432, - "rot": 0, - "props": { - "w": 26, - "h": 29, - "fill": "hsl(54 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03855": { - "id": "shape:perf:03855", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 2432, - "rot": 0, - "props": { - "w": 24, - "h": 36, - "fill": "hsl(329 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03856": { - "id": "shape:perf:03856", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 2432, - "rot": 0, - "props": { - "w": 36, - "h": 35, - "fill": "hsl(321 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03857": { - "id": "shape:perf:03857", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 2432, - "rot": 0, - "props": { - "w": 42, - "h": 47, - "fill": "hsl(232 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03858": { - "id": "shape:perf:03858", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 2432, - "rot": 0, - "props": { - "w": 36, - "h": 32, - "fill": "hsl(149 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03859": { - "id": "shape:perf:03859", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 2432, - "rot": 0, - "props": { - "w": 26, - "h": 44, - "fill": "hsl(189 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03860": { - "id": "shape:perf:03860", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 2432, - "rot": 0, - "props": { - "w": 27, - "h": 26, - "fill": "hsl(196 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03861": { - "id": "shape:perf:03861", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 2432, - "rot": 0, - "props": { - "w": 45, - "h": 44, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03862": { - "id": "shape:perf:03862", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 2432, - "rot": 0, - "props": { - "w": 45, - "h": 24, - "fill": "hsl(138 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03863": { - "id": "shape:perf:03863", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 2432, - "rot": 0, - "props": { - "w": 25, - "h": 25, - "fill": "hsl(197 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03864": { - "id": "shape:perf:03864", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 2432, - "rot": 0, - "props": { - "w": 37, - "h": 44, - "fill": "hsl(116 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03865": { - "id": "shape:perf:03865", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 2432, - "rot": 0, - "props": { - "w": 41, - "h": 26, - "fill": "hsl(230 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03866": { - "id": "shape:perf:03866", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 2432, - "rot": 0, - "props": { - "w": 37, - "h": 43, - "fill": "hsl(326 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03867": { - "id": "shape:perf:03867", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 2432, - "rot": 0, - "props": { - "w": 41, - "h": 38, - "fill": "hsl(189 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03868": { - "id": "shape:perf:03868", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 2432, - "rot": 0, - "props": { - "w": 26, - "h": 43, - "fill": "hsl(203 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03869": { - "id": "shape:perf:03869", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 2432, - "rot": 0, - "props": { - "w": 42, - "h": 33, - "fill": "hsl(267 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03870": { - "id": "shape:perf:03870", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 2432, - "rot": 0, - "props": { - "w": 33, - "h": 36, - "fill": "hsl(83 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03871": { - "id": "shape:perf:03871", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 2432, - "rot": 0, - "props": { - "w": 30, - "h": 37, - "fill": "hsl(178 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03872": { - "id": "shape:perf:03872", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 2432, - "rot": 0, - "props": { - "w": 28, - "h": 36, - "fill": "hsl(324 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03873": { - "id": "shape:perf:03873", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 2432, - "rot": 0, - "props": { - "w": 41, - "h": 40, - "fill": "hsl(27 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03874": { - "id": "shape:perf:03874", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 2432, - "rot": 0, - "props": { - "w": 46, - "h": 29, - "fill": "hsl(127 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03875": { - "id": "shape:perf:03875", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 2432, - "rot": 0, - "props": { - "w": 41, - "h": 38, - "fill": "hsl(58 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03876": { - "id": "shape:perf:03876", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 2432, - "rot": 0, - "props": { - "w": 31, - "h": 35, - "fill": "hsl(134 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03877": { - "id": "shape:perf:03877", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 2432, - "rot": 0, - "props": { - "w": 45, - "h": 27, - "fill": "hsl(342 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03878": { - "id": "shape:perf:03878", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 2432, - "rot": 0, - "props": { - "w": 27, - "h": 36, - "fill": "hsl(175 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03879": { - "id": "shape:perf:03879", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 2432, - "rot": 0, - "props": { - "w": 45, - "h": 33, - "fill": "hsl(161 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03880": { - "id": "shape:perf:03880", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 2432, - "rot": 0, - "props": { - "w": 38, - "h": 25, - "fill": "hsl(281 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03881": { - "id": "shape:perf:03881", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 2432, - "rot": 0, - "props": { - "w": 33, - "h": 25, - "fill": "hsl(253 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03882": { - "id": "shape:perf:03882", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 2432, - "rot": 0, - "props": { - "w": 37, - "h": 36, - "fill": "hsl(218 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03883": { - "id": "shape:perf:03883", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 2432, - "rot": 0, - "props": { - "w": 29, - "h": 45, - "fill": "hsl(27 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03884": { - "id": "shape:perf:03884", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 2432, - "rot": 0, - "props": { - "w": 44, - "h": 32, - "fill": "hsl(115 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03885": { - "id": "shape:perf:03885", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 2432, - "rot": 0, - "props": { - "w": 44, - "h": 28, - "fill": "hsl(136 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03886": { - "id": "shape:perf:03886", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 2432, - "rot": 0, - "props": { - "w": 47, - "h": 44, - "fill": "hsl(114 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03887": { - "id": "shape:perf:03887", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 2432, - "rot": 0, - "props": { - "w": 32, - "h": 27, - "fill": "hsl(37 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03888": { - "id": "shape:perf:03888", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 2432, - "rot": 0, - "props": { - "w": 25, - "h": 32, - "fill": "hsl(314 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03889": { - "id": "shape:perf:03889", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 2432, - "rot": 0, - "props": { - "w": 26, - "h": 36, - "fill": "hsl(168 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03890": { - "id": "shape:perf:03890", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 2432, - "rot": 0, - "props": { - "w": 46, - "h": 31, - "fill": "hsl(201 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03891": { - "id": "shape:perf:03891", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 2432, - "rot": 0, - "props": { - "w": 39, - "h": 31, - "fill": "hsl(204 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03892": { - "id": "shape:perf:03892", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 2432, - "rot": 0, - "props": { - "w": 35, - "h": 45, - "fill": "hsl(208 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03893": { - "id": "shape:perf:03893", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 2432, - "rot": 0, - "props": { - "w": 24, - "h": 45, - "fill": "hsl(147 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03894": { - "id": "shape:perf:03894", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 2432, - "rot": 0, - "props": { - "w": 40, - "h": 38, - "fill": "hsl(292 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03895": { - "id": "shape:perf:03895", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 2432, - "rot": 0, - "props": { - "w": 34, - "h": 29, - "fill": "hsl(254 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03896": { - "id": "shape:perf:03896", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 2432, - "rot": 0, - "props": { - "w": 41, - "h": 34, - "fill": "hsl(193 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03897": { - "id": "shape:perf:03897", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 2432, - "rot": 0, - "props": { - "w": 38, - "h": 40, - "fill": "hsl(352 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03898": { - "id": "shape:perf:03898", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 2432, - "rot": 0, - "props": { - "w": 32, - "h": 24, - "fill": "hsl(311 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03899": { - "id": "shape:perf:03899", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 2432, - "rot": 0, - "props": { - "w": 33, - "h": 39, - "fill": "hsl(136 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03900": { - "id": "shape:perf:03900", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 2496, - "rot": 0, - "props": { - "w": 26, - "h": 39, - "fill": "hsl(265 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03901": { - "id": "shape:perf:03901", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 2496, - "rot": 0, - "props": { - "w": 34, - "h": 39, - "fill": "hsl(285 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03902": { - "id": "shape:perf:03902", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 2496, - "rot": 0, - "props": { - "w": 28, - "h": 40, - "fill": "hsl(123 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03903": { - "id": "shape:perf:03903", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 2496, - "rot": 0, - "props": { - "w": 33, - "h": 24, - "fill": "hsl(226 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03904": { - "id": "shape:perf:03904", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 2496, - "rot": 0, - "props": { - "w": 28, - "h": 33, - "fill": "hsl(217 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03905": { - "id": "shape:perf:03905", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 2496, - "rot": 0, - "props": { - "w": 39, - "h": 24, - "fill": "hsl(196 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03906": { - "id": "shape:perf:03906", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 2496, - "rot": 0, - "props": { - "w": 32, - "h": 26, - "fill": "hsl(164 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03907": { - "id": "shape:perf:03907", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 2496, - "rot": 0, - "props": { - "w": 33, - "h": 28, - "fill": "hsl(205 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03908": { - "id": "shape:perf:03908", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 2496, - "rot": 0, - "props": { - "w": 27, - "h": 29, - "fill": "hsl(262 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03909": { - "id": "shape:perf:03909", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 2496, - "rot": 0, - "props": { - "w": 44, - "h": 25, - "fill": "hsl(255 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03910": { - "id": "shape:perf:03910", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 2496, - "rot": 0, - "props": { - "w": 41, - "h": 34, - "fill": "hsl(277 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03911": { - "id": "shape:perf:03911", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 2496, - "rot": 0, - "props": { - "w": 24, - "h": 26, - "fill": "hsl(1 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03912": { - "id": "shape:perf:03912", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 2496, - "rot": 0, - "props": { - "w": 46, - "h": 37, - "fill": "hsl(249 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03913": { - "id": "shape:perf:03913", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 2496, - "rot": 0, - "props": { - "w": 44, - "h": 39, - "fill": "hsl(282 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03914": { - "id": "shape:perf:03914", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 2496, - "rot": 0, - "props": { - "w": 32, - "h": 38, - "fill": "hsl(324 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03915": { - "id": "shape:perf:03915", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 2496, - "rot": 0, - "props": { - "w": 42, - "h": 33, - "fill": "hsl(159 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03916": { - "id": "shape:perf:03916", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 2496, - "rot": 0, - "props": { - "w": 36, - "h": 29, - "fill": "hsl(20 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03917": { - "id": "shape:perf:03917", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 2496, - "rot": 0, - "props": { - "w": 38, - "h": 41, - "fill": "hsl(143 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03918": { - "id": "shape:perf:03918", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 2496, - "rot": 0, - "props": { - "w": 45, - "h": 30, - "fill": "hsl(156 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03919": { - "id": "shape:perf:03919", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 2496, - "rot": 0, - "props": { - "w": 44, - "h": 26, - "fill": "hsl(164 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03920": { - "id": "shape:perf:03920", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 2496, - "rot": 0, - "props": { - "w": 37, - "h": 31, - "fill": "hsl(312 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03921": { - "id": "shape:perf:03921", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 2496, - "rot": 0, - "props": { - "w": 30, - "h": 38, - "fill": "hsl(277 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03922": { - "id": "shape:perf:03922", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 2496, - "rot": 0, - "props": { - "w": 24, - "h": 31, - "fill": "hsl(193 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03923": { - "id": "shape:perf:03923", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 2496, - "rot": 0, - "props": { - "w": 43, - "h": 46, - "fill": "hsl(192 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03924": { - "id": "shape:perf:03924", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 2496, - "rot": 0, - "props": { - "w": 34, - "h": 39, - "fill": "hsl(124 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03925": { - "id": "shape:perf:03925", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 2496, - "rot": 0, - "props": { - "w": 46, - "h": 42, - "fill": "hsl(131 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03926": { - "id": "shape:perf:03926", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 2496, - "rot": 0, - "props": { - "w": 30, - "h": 28, - "fill": "hsl(344 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03927": { - "id": "shape:perf:03927", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 2496, - "rot": 0, - "props": { - "w": 40, - "h": 34, - "fill": "hsl(307 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03928": { - "id": "shape:perf:03928", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 2496, - "rot": 0, - "props": { - "w": 40, - "h": 35, - "fill": "hsl(201 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03929": { - "id": "shape:perf:03929", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 2496, - "rot": 0, - "props": { - "w": 39, - "h": 33, - "fill": "hsl(277 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03930": { - "id": "shape:perf:03930", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 2496, - "rot": 0, - "props": { - "w": 37, - "h": 32, - "fill": "hsl(165 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03931": { - "id": "shape:perf:03931", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 2496, - "rot": 0, - "props": { - "w": 33, - "h": 29, - "fill": "hsl(238 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03932": { - "id": "shape:perf:03932", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 2496, - "rot": 0, - "props": { - "w": 31, - "h": 36, - "fill": "hsl(72 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03933": { - "id": "shape:perf:03933", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 2496, - "rot": 0, - "props": { - "w": 45, - "h": 28, - "fill": "hsl(41 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03934": { - "id": "shape:perf:03934", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 2496, - "rot": 0, - "props": { - "w": 25, - "h": 39, - "fill": "hsl(315 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03935": { - "id": "shape:perf:03935", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 2496, - "rot": 0, - "props": { - "w": 36, - "h": 46, - "fill": "hsl(55 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03936": { - "id": "shape:perf:03936", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 2496, - "rot": 0, - "props": { - "w": 46, - "h": 31, - "fill": "hsl(310 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03937": { - "id": "shape:perf:03937", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 2496, - "rot": 0, - "props": { - "w": 45, - "h": 36, - "fill": "hsl(189 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03938": { - "id": "shape:perf:03938", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 2496, - "rot": 0, - "props": { - "w": 32, - "h": 38, - "fill": "hsl(103 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03939": { - "id": "shape:perf:03939", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 2496, - "rot": 0, - "props": { - "w": 32, - "h": 47, - "fill": "hsl(19 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03940": { - "id": "shape:perf:03940", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 2496, - "rot": 0, - "props": { - "w": 45, - "h": 42, - "fill": "hsl(132 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03941": { - "id": "shape:perf:03941", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 2496, - "rot": 0, - "props": { - "w": 39, - "h": 31, - "fill": "hsl(176 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03942": { - "id": "shape:perf:03942", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 2496, - "rot": 0, - "props": { - "w": 34, - "h": 33, - "fill": "hsl(26 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03943": { - "id": "shape:perf:03943", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 2496, - "rot": 0, - "props": { - "w": 35, - "h": 24, - "fill": "hsl(106 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03944": { - "id": "shape:perf:03944", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 2496, - "rot": 0, - "props": { - "w": 37, - "h": 45, - "fill": "hsl(28 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03945": { - "id": "shape:perf:03945", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 2496, - "rot": 0, - "props": { - "w": 35, - "h": 26, - "fill": "hsl(36 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03946": { - "id": "shape:perf:03946", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 2496, - "rot": 0, - "props": { - "w": 29, - "h": 35, - "fill": "hsl(275 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03947": { - "id": "shape:perf:03947", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 2496, - "rot": 0, - "props": { - "w": 46, - "h": 31, - "fill": "hsl(181 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03948": { - "id": "shape:perf:03948", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 2496, - "rot": 0, - "props": { - "w": 25, - "h": 47, - "fill": "hsl(79 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03949": { - "id": "shape:perf:03949", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 2496, - "rot": 0, - "props": { - "w": 43, - "h": 33, - "fill": "hsl(195 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03950": { - "id": "shape:perf:03950", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 2496, - "rot": 0, - "props": { - "w": 47, - "h": 28, - "fill": "hsl(9 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03951": { - "id": "shape:perf:03951", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 2496, - "rot": 0, - "props": { - "w": 42, - "h": 25, - "fill": "hsl(56 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03952": { - "id": "shape:perf:03952", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 2496, - "rot": 0, - "props": { - "w": 45, - "h": 32, - "fill": "hsl(229 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03953": { - "id": "shape:perf:03953", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 2496, - "rot": 0, - "props": { - "w": 25, - "h": 42, - "fill": "hsl(109 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03954": { - "id": "shape:perf:03954", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 2496, - "rot": 0, - "props": { - "w": 38, - "h": 31, - "fill": "hsl(54 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03955": { - "id": "shape:perf:03955", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 2496, - "rot": 0, - "props": { - "w": 30, - "h": 25, - "fill": "hsl(229 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03956": { - "id": "shape:perf:03956", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 2496, - "rot": 0, - "props": { - "w": 35, - "h": 47, - "fill": "hsl(202 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03957": { - "id": "shape:perf:03957", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 2496, - "rot": 0, - "props": { - "w": 41, - "h": 24, - "fill": "hsl(352 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03958": { - "id": "shape:perf:03958", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 2496, - "rot": 0, - "props": { - "w": 29, - "h": 44, - "fill": "hsl(314 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03959": { - "id": "shape:perf:03959", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 2496, - "rot": 0, - "props": { - "w": 40, - "h": 30, - "fill": "hsl(208 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03960": { - "id": "shape:perf:03960", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 2496, - "rot": 0, - "props": { - "w": 38, - "h": 31, - "fill": "hsl(97 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03961": { - "id": "shape:perf:03961", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 2496, - "rot": 0, - "props": { - "w": 26, - "h": 42, - "fill": "hsl(232 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03962": { - "id": "shape:perf:03962", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 2496, - "rot": 0, - "props": { - "w": 31, - "h": 30, - "fill": "hsl(162 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03963": { - "id": "shape:perf:03963", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 2496, - "rot": 0, - "props": { - "w": 47, - "h": 31, - "fill": "hsl(68 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03964": { - "id": "shape:perf:03964", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 2496, - "rot": 0, - "props": { - "w": 42, - "h": 28, - "fill": "hsl(260 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03965": { - "id": "shape:perf:03965", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 2496, - "rot": 0, - "props": { - "w": 43, - "h": 29, - "fill": "hsl(58 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03966": { - "id": "shape:perf:03966", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 2496, - "rot": 0, - "props": { - "w": 46, - "h": 29, - "fill": "hsl(98 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03967": { - "id": "shape:perf:03967", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 2496, - "rot": 0, - "props": { - "w": 42, - "h": 36, - "fill": "hsl(162 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03968": { - "id": "shape:perf:03968", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 2496, - "rot": 0, - "props": { - "w": 43, - "h": 30, - "fill": "hsl(195 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03969": { - "id": "shape:perf:03969", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 2496, - "rot": 0, - "props": { - "w": 38, - "h": 46, - "fill": "hsl(322 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03970": { - "id": "shape:perf:03970", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 2496, - "rot": 0, - "props": { - "w": 34, - "h": 25, - "fill": "hsl(158 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03971": { - "id": "shape:perf:03971", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 2496, - "rot": 0, - "props": { - "w": 40, - "h": 37, - "fill": "hsl(142 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03972": { - "id": "shape:perf:03972", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 2496, - "rot": 0, - "props": { - "w": 32, - "h": 30, - "fill": "hsl(353 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03973": { - "id": "shape:perf:03973", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 2496, - "rot": 0, - "props": { - "w": 26, - "h": 33, - "fill": "hsl(249 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03974": { - "id": "shape:perf:03974", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 2496, - "rot": 0, - "props": { - "w": 36, - "h": 28, - "fill": "hsl(37 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03975": { - "id": "shape:perf:03975", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 2496, - "rot": 0, - "props": { - "w": 44, - "h": 45, - "fill": "hsl(307 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03976": { - "id": "shape:perf:03976", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 2496, - "rot": 0, - "props": { - "w": 47, - "h": 29, - "fill": "hsl(240 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03977": { - "id": "shape:perf:03977", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 2496, - "rot": 0, - "props": { - "w": 39, - "h": 47, - "fill": "hsl(58 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03978": { - "id": "shape:perf:03978", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 2496, - "rot": 0, - "props": { - "w": 43, - "h": 41, - "fill": "hsl(180 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03979": { - "id": "shape:perf:03979", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 2496, - "rot": 0, - "props": { - "w": 24, - "h": 43, - "fill": "hsl(140 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03980": { - "id": "shape:perf:03980", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 2496, - "rot": 0, - "props": { - "w": 42, - "h": 31, - "fill": "hsl(110 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03981": { - "id": "shape:perf:03981", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 2496, - "rot": 0, - "props": { - "w": 40, - "h": 27, - "fill": "hsl(187 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03982": { - "id": "shape:perf:03982", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 2496, - "rot": 0, - "props": { - "w": 36, - "h": 45, - "fill": "hsl(343 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03983": { - "id": "shape:perf:03983", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 2496, - "rot": 0, - "props": { - "w": 37, - "h": 29, - "fill": "hsl(98 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03984": { - "id": "shape:perf:03984", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 2496, - "rot": 0, - "props": { - "w": 38, - "h": 25, - "fill": "hsl(235 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03985": { - "id": "shape:perf:03985", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 2496, - "rot": 0, - "props": { - "w": 33, - "h": 31, - "fill": "hsl(207 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03986": { - "id": "shape:perf:03986", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 2496, - "rot": 0, - "props": { - "w": 32, - "h": 38, - "fill": "hsl(103 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03987": { - "id": "shape:perf:03987", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 2496, - "rot": 0, - "props": { - "w": 45, - "h": 26, - "fill": "hsl(262 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03988": { - "id": "shape:perf:03988", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 2496, - "rot": 0, - "props": { - "w": 27, - "h": 43, - "fill": "hsl(141 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03989": { - "id": "shape:perf:03989", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 2496, - "rot": 0, - "props": { - "w": 33, - "h": 44, - "fill": "hsl(235 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03990": { - "id": "shape:perf:03990", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 2496, - "rot": 0, - "props": { - "w": 45, - "h": 41, - "fill": "hsl(157 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03991": { - "id": "shape:perf:03991", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 2496, - "rot": 0, - "props": { - "w": 28, - "h": 28, - "fill": "hsl(310 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03992": { - "id": "shape:perf:03992", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 2496, - "rot": 0, - "props": { - "w": 45, - "h": 32, - "fill": "hsl(271 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03993": { - "id": "shape:perf:03993", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 2496, - "rot": 0, - "props": { - "w": 44, - "h": 45, - "fill": "hsl(177 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03994": { - "id": "shape:perf:03994", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 2496, - "rot": 0, - "props": { - "w": 30, - "h": 28, - "fill": "hsl(66 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:03995": { - "id": "shape:perf:03995", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 2496, - "rot": 0, - "props": { - "w": 44, - "h": 39, - "fill": "hsl(328 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:03996": { - "id": "shape:perf:03996", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 2496, - "rot": 0, - "props": { - "w": 35, - "h": 25, - "fill": "hsl(5 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:03997": { - "id": "shape:perf:03997", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 2496, - "rot": 0, - "props": { - "w": 32, - "h": 24, - "fill": "hsl(147 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:03998": { - "id": "shape:perf:03998", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 2496, - "rot": 0, - "props": { - "w": 26, - "h": 41, - "fill": "hsl(110 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:03999": { - "id": "shape:perf:03999", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 2496, - "rot": 0, - "props": { - "w": 34, - "h": 34, - "fill": "hsl(282 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04000": { - "id": "shape:perf:04000", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 2560, - "rot": 0, - "props": { - "w": 44, - "h": 45, - "fill": "hsl(79 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04001": { - "id": "shape:perf:04001", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 2560, - "rot": 0, - "props": { - "w": 46, - "h": 39, - "fill": "hsl(107 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04002": { - "id": "shape:perf:04002", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 2560, - "rot": 0, - "props": { - "w": 26, - "h": 30, - "fill": "hsl(210 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04003": { - "id": "shape:perf:04003", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 2560, - "rot": 0, - "props": { - "w": 35, - "h": 42, - "fill": "hsl(6 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04004": { - "id": "shape:perf:04004", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 2560, - "rot": 0, - "props": { - "w": 37, - "h": 47, - "fill": "hsl(256 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04005": { - "id": "shape:perf:04005", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 2560, - "rot": 0, - "props": { - "w": 43, - "h": 38, - "fill": "hsl(83 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04006": { - "id": "shape:perf:04006", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 2560, - "rot": 0, - "props": { - "w": 44, - "h": 45, - "fill": "hsl(146 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04007": { - "id": "shape:perf:04007", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 2560, - "rot": 0, - "props": { - "w": 37, - "h": 35, - "fill": "hsl(219 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04008": { - "id": "shape:perf:04008", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 2560, - "rot": 0, - "props": { - "w": 41, - "h": 40, - "fill": "hsl(142 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04009": { - "id": "shape:perf:04009", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 2560, - "rot": 0, - "props": { - "w": 30, - "h": 28, - "fill": "hsl(267 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04010": { - "id": "shape:perf:04010", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 2560, - "rot": 0, - "props": { - "w": 30, - "h": 24, - "fill": "hsl(356 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04011": { - "id": "shape:perf:04011", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 2560, - "rot": 0, - "props": { - "w": 40, - "h": 38, - "fill": "hsl(135 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04012": { - "id": "shape:perf:04012", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 2560, - "rot": 0, - "props": { - "w": 40, - "h": 45, - "fill": "hsl(272 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04013": { - "id": "shape:perf:04013", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 2560, - "rot": 0, - "props": { - "w": 41, - "h": 24, - "fill": "hsl(23 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04014": { - "id": "shape:perf:04014", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 2560, - "rot": 0, - "props": { - "w": 27, - "h": 33, - "fill": "hsl(145 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04015": { - "id": "shape:perf:04015", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 2560, - "rot": 0, - "props": { - "w": 47, - "h": 28, - "fill": "hsl(276 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04016": { - "id": "shape:perf:04016", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 2560, - "rot": 0, - "props": { - "w": 40, - "h": 36, - "fill": "hsl(32 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04017": { - "id": "shape:perf:04017", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 2560, - "rot": 0, - "props": { - "w": 30, - "h": 32, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04018": { - "id": "shape:perf:04018", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 2560, - "rot": 0, - "props": { - "w": 24, - "h": 46, - "fill": "hsl(327 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04019": { - "id": "shape:perf:04019", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 2560, - "rot": 0, - "props": { - "w": 36, - "h": 42, - "fill": "hsl(110 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04020": { - "id": "shape:perf:04020", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 2560, - "rot": 0, - "props": { - "w": 35, - "h": 34, - "fill": "hsl(163 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04021": { - "id": "shape:perf:04021", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 2560, - "rot": 0, - "props": { - "w": 41, - "h": 46, - "fill": "hsl(114 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04022": { - "id": "shape:perf:04022", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 2560, - "rot": 0, - "props": { - "w": 32, - "h": 27, - "fill": "hsl(127 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04023": { - "id": "shape:perf:04023", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 2560, - "rot": 0, - "props": { - "w": 41, - "h": 38, - "fill": "hsl(26 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04024": { - "id": "shape:perf:04024", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 2560, - "rot": 0, - "props": { - "w": 44, - "h": 46, - "fill": "hsl(104 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04025": { - "id": "shape:perf:04025", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 2560, - "rot": 0, - "props": { - "w": 34, - "h": 47, - "fill": "hsl(170 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04026": { - "id": "shape:perf:04026", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 2560, - "rot": 0, - "props": { - "w": 39, - "h": 31, - "fill": "hsl(207 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04027": { - "id": "shape:perf:04027", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 2560, - "rot": 0, - "props": { - "w": 31, - "h": 38, - "fill": "hsl(330 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04028": { - "id": "shape:perf:04028", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 2560, - "rot": 0, - "props": { - "w": 28, - "h": 31, - "fill": "hsl(270 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04029": { - "id": "shape:perf:04029", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 2560, - "rot": 0, - "props": { - "w": 25, - "h": 43, - "fill": "hsl(124 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04030": { - "id": "shape:perf:04030", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 2560, - "rot": 0, - "props": { - "w": 45, - "h": 30, - "fill": "hsl(29 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04031": { - "id": "shape:perf:04031", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 2560, - "rot": 0, - "props": { - "w": 29, - "h": 42, - "fill": "hsl(111 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04032": { - "id": "shape:perf:04032", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 2560, - "rot": 0, - "props": { - "w": 40, - "h": 30, - "fill": "hsl(58 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04033": { - "id": "shape:perf:04033", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 2560, - "rot": 0, - "props": { - "w": 32, - "h": 25, - "fill": "hsl(53 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04034": { - "id": "shape:perf:04034", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 2560, - "rot": 0, - "props": { - "w": 41, - "h": 33, - "fill": "hsl(170 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04035": { - "id": "shape:perf:04035", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 2560, - "rot": 0, - "props": { - "w": 42, - "h": 39, - "fill": "hsl(355 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04036": { - "id": "shape:perf:04036", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 2560, - "rot": 0, - "props": { - "w": 45, - "h": 35, - "fill": "hsl(56 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04037": { - "id": "shape:perf:04037", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 2560, - "rot": 0, - "props": { - "w": 33, - "h": 40, - "fill": "hsl(192 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04038": { - "id": "shape:perf:04038", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 2560, - "rot": 0, - "props": { - "w": 27, - "h": 38, - "fill": "hsl(127 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04039": { - "id": "shape:perf:04039", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 2560, - "rot": 0, - "props": { - "w": 39, - "h": 32, - "fill": "hsl(315 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04040": { - "id": "shape:perf:04040", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 2560, - "rot": 0, - "props": { - "w": 37, - "h": 35, - "fill": "hsl(142 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04041": { - "id": "shape:perf:04041", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 2560, - "rot": 0, - "props": { - "w": 46, - "h": 44, - "fill": "hsl(318 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04042": { - "id": "shape:perf:04042", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 2560, - "rot": 0, - "props": { - "w": 28, - "h": 40, - "fill": "hsl(248 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04043": { - "id": "shape:perf:04043", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 2560, - "rot": 0, - "props": { - "w": 30, - "h": 30, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04044": { - "id": "shape:perf:04044", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 2560, - "rot": 0, - "props": { - "w": 43, - "h": 47, - "fill": "hsl(348 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04045": { - "id": "shape:perf:04045", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 2560, - "rot": 0, - "props": { - "w": 46, - "h": 27, - "fill": "hsl(332 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04046": { - "id": "shape:perf:04046", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 2560, - "rot": 0, - "props": { - "w": 37, - "h": 30, - "fill": "hsl(320 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04047": { - "id": "shape:perf:04047", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 2560, - "rot": 0, - "props": { - "w": 47, - "h": 25, - "fill": "hsl(176 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04048": { - "id": "shape:perf:04048", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 2560, - "rot": 0, - "props": { - "w": 44, - "h": 31, - "fill": "hsl(294 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04049": { - "id": "shape:perf:04049", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 2560, - "rot": 0, - "props": { - "w": 46, - "h": 45, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04050": { - "id": "shape:perf:04050", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 2560, - "rot": 0, - "props": { - "w": 29, - "h": 33, - "fill": "hsl(19 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04051": { - "id": "shape:perf:04051", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 2560, - "rot": 0, - "props": { - "w": 45, - "h": 45, - "fill": "hsl(180 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04052": { - "id": "shape:perf:04052", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 2560, - "rot": 0, - "props": { - "w": 43, - "h": 28, - "fill": "hsl(296 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04053": { - "id": "shape:perf:04053", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 2560, - "rot": 0, - "props": { - "w": 37, - "h": 38, - "fill": "hsl(145 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04054": { - "id": "shape:perf:04054", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 2560, - "rot": 0, - "props": { - "w": 31, - "h": 38, - "fill": "hsl(57 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04055": { - "id": "shape:perf:04055", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 2560, - "rot": 0, - "props": { - "w": 36, - "h": 44, - "fill": "hsl(351 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04056": { - "id": "shape:perf:04056", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 2560, - "rot": 0, - "props": { - "w": 24, - "h": 37, - "fill": "hsl(133 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04057": { - "id": "shape:perf:04057", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 2560, - "rot": 0, - "props": { - "w": 47, - "h": 40, - "fill": "hsl(2 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04058": { - "id": "shape:perf:04058", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 2560, - "rot": 0, - "props": { - "w": 45, - "h": 44, - "fill": "hsl(43 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04059": { - "id": "shape:perf:04059", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 2560, - "rot": 0, - "props": { - "w": 26, - "h": 31, - "fill": "hsl(160 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04060": { - "id": "shape:perf:04060", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 2560, - "rot": 0, - "props": { - "w": 34, - "h": 45, - "fill": "hsl(199 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04061": { - "id": "shape:perf:04061", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 2560, - "rot": 0, - "props": { - "w": 43, - "h": 25, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04062": { - "id": "shape:perf:04062", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 2560, - "rot": 0, - "props": { - "w": 46, - "h": 36, - "fill": "hsl(7 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04063": { - "id": "shape:perf:04063", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 2560, - "rot": 0, - "props": { - "w": 46, - "h": 26, - "fill": "hsl(26 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04064": { - "id": "shape:perf:04064", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 2560, - "rot": 0, - "props": { - "w": 35, - "h": 47, - "fill": "hsl(126 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04065": { - "id": "shape:perf:04065", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 2560, - "rot": 0, - "props": { - "w": 29, - "h": 30, - "fill": "hsl(224 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04066": { - "id": "shape:perf:04066", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 2560, - "rot": 0, - "props": { - "w": 40, - "h": 24, - "fill": "hsl(337 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04067": { - "id": "shape:perf:04067", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 2560, - "rot": 0, - "props": { - "w": 39, - "h": 32, - "fill": "hsl(4 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04068": { - "id": "shape:perf:04068", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 2560, - "rot": 0, - "props": { - "w": 27, - "h": 38, - "fill": "hsl(130 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04069": { - "id": "shape:perf:04069", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 2560, - "rot": 0, - "props": { - "w": 29, - "h": 47, - "fill": "hsl(196 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04070": { - "id": "shape:perf:04070", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 2560, - "rot": 0, - "props": { - "w": 39, - "h": 38, - "fill": "hsl(50 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04071": { - "id": "shape:perf:04071", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 2560, - "rot": 0, - "props": { - "w": 24, - "h": 27, - "fill": "hsl(129 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04072": { - "id": "shape:perf:04072", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 2560, - "rot": 0, - "props": { - "w": 28, - "h": 41, - "fill": "hsl(3 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04073": { - "id": "shape:perf:04073", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 2560, - "rot": 0, - "props": { - "w": 46, - "h": 38, - "fill": "hsl(320 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04074": { - "id": "shape:perf:04074", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 2560, - "rot": 0, - "props": { - "w": 37, - "h": 28, - "fill": "hsl(228 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04075": { - "id": "shape:perf:04075", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 2560, - "rot": 0, - "props": { - "w": 36, - "h": 47, - "fill": "hsl(154 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04076": { - "id": "shape:perf:04076", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 2560, - "rot": 0, - "props": { - "w": 44, - "h": 40, - "fill": "hsl(103 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04077": { - "id": "shape:perf:04077", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 2560, - "rot": 0, - "props": { - "w": 40, - "h": 40, - "fill": "hsl(307 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04078": { - "id": "shape:perf:04078", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 2560, - "rot": 0, - "props": { - "w": 41, - "h": 44, - "fill": "hsl(91 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04079": { - "id": "shape:perf:04079", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 2560, - "rot": 0, - "props": { - "w": 44, - "h": 33, - "fill": "hsl(67 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04080": { - "id": "shape:perf:04080", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 2560, - "rot": 0, - "props": { - "w": 29, - "h": 38, - "fill": "hsl(150 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04081": { - "id": "shape:perf:04081", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 2560, - "rot": 0, - "props": { - "w": 39, - "h": 42, - "fill": "hsl(165 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04082": { - "id": "shape:perf:04082", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 2560, - "rot": 0, - "props": { - "w": 37, - "h": 36, - "fill": "hsl(303 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04083": { - "id": "shape:perf:04083", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 2560, - "rot": 0, - "props": { - "w": 47, - "h": 37, - "fill": "hsl(33 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04084": { - "id": "shape:perf:04084", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 2560, - "rot": 0, - "props": { - "w": 42, - "h": 45, - "fill": "hsl(7 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04085": { - "id": "shape:perf:04085", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 2560, - "rot": 0, - "props": { - "w": 34, - "h": 42, - "fill": "hsl(311 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04086": { - "id": "shape:perf:04086", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 2560, - "rot": 0, - "props": { - "w": 28, - "h": 39, - "fill": "hsl(77 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04087": { - "id": "shape:perf:04087", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 2560, - "rot": 0, - "props": { - "w": 37, - "h": 32, - "fill": "hsl(260 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04088": { - "id": "shape:perf:04088", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 2560, - "rot": 0, - "props": { - "w": 45, - "h": 39, - "fill": "hsl(246 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04089": { - "id": "shape:perf:04089", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 2560, - "rot": 0, - "props": { - "w": 30, - "h": 47, - "fill": "hsl(282 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04090": { - "id": "shape:perf:04090", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 2560, - "rot": 0, - "props": { - "w": 26, - "h": 42, - "fill": "hsl(323 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04091": { - "id": "shape:perf:04091", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 2560, - "rot": 0, - "props": { - "w": 36, - "h": 37, - "fill": "hsl(311 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04092": { - "id": "shape:perf:04092", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 2560, - "rot": 0, - "props": { - "w": 40, - "h": 38, - "fill": "hsl(359 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04093": { - "id": "shape:perf:04093", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 2560, - "rot": 0, - "props": { - "w": 45, - "h": 30, - "fill": "hsl(110 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04094": { - "id": "shape:perf:04094", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 2560, - "rot": 0, - "props": { - "w": 25, - "h": 42, - "fill": "hsl(318 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04095": { - "id": "shape:perf:04095", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 2560, - "rot": 0, - "props": { - "w": 42, - "h": 34, - "fill": "hsl(6 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04096": { - "id": "shape:perf:04096", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 2560, - "rot": 0, - "props": { - "w": 46, - "h": 27, - "fill": "hsl(166 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04097": { - "id": "shape:perf:04097", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 2560, - "rot": 0, - "props": { - "w": 32, - "h": 29, - "fill": "hsl(238 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04098": { - "id": "shape:perf:04098", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 2560, - "rot": 0, - "props": { - "w": 30, - "h": 25, - "fill": "hsl(316 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04099": { - "id": "shape:perf:04099", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 2560, - "rot": 0, - "props": { - "w": 29, - "h": 32, - "fill": "hsl(155 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04100": { - "id": "shape:perf:04100", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 2624, - "rot": 0, - "props": { - "w": 33, - "h": 36, - "fill": "hsl(298 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04101": { - "id": "shape:perf:04101", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 2624, - "rot": 0, - "props": { - "w": 41, - "h": 34, - "fill": "hsl(262 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04102": { - "id": "shape:perf:04102", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 2624, - "rot": 0, - "props": { - "w": 36, - "h": 31, - "fill": "hsl(285 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04103": { - "id": "shape:perf:04103", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 2624, - "rot": 0, - "props": { - "w": 32, - "h": 34, - "fill": "hsl(58 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04104": { - "id": "shape:perf:04104", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 2624, - "rot": 0, - "props": { - "w": 35, - "h": 38, - "fill": "hsl(280 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04105": { - "id": "shape:perf:04105", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 2624, - "rot": 0, - "props": { - "w": 25, - "h": 30, - "fill": "hsl(120 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04106": { - "id": "shape:perf:04106", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 2624, - "rot": 0, - "props": { - "w": 47, - "h": 41, - "fill": "hsl(157 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04107": { - "id": "shape:perf:04107", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 2624, - "rot": 0, - "props": { - "w": 40, - "h": 40, - "fill": "hsl(268 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04108": { - "id": "shape:perf:04108", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 2624, - "rot": 0, - "props": { - "w": 33, - "h": 45, - "fill": "hsl(7 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04109": { - "id": "shape:perf:04109", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 2624, - "rot": 0, - "props": { - "w": 40, - "h": 46, - "fill": "hsl(228 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04110": { - "id": "shape:perf:04110", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 2624, - "rot": 0, - "props": { - "w": 43, - "h": 46, - "fill": "hsl(240 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04111": { - "id": "shape:perf:04111", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 2624, - "rot": 0, - "props": { - "w": 27, - "h": 26, - "fill": "hsl(176 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04112": { - "id": "shape:perf:04112", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 2624, - "rot": 0, - "props": { - "w": 39, - "h": 24, - "fill": "hsl(60 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04113": { - "id": "shape:perf:04113", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 2624, - "rot": 0, - "props": { - "w": 46, - "h": 38, - "fill": "hsl(50 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04114": { - "id": "shape:perf:04114", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 2624, - "rot": 0, - "props": { - "w": 36, - "h": 28, - "fill": "hsl(168 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04115": { - "id": "shape:perf:04115", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 2624, - "rot": 0, - "props": { - "w": 36, - "h": 26, - "fill": "hsl(179 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04116": { - "id": "shape:perf:04116", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 2624, - "rot": 0, - "props": { - "w": 32, - "h": 35, - "fill": "hsl(10 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04117": { - "id": "shape:perf:04117", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 2624, - "rot": 0, - "props": { - "w": 47, - "h": 46, - "fill": "hsl(60 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04118": { - "id": "shape:perf:04118", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 2624, - "rot": 0, - "props": { - "w": 29, - "h": 25, - "fill": "hsl(256 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04119": { - "id": "shape:perf:04119", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 2624, - "rot": 0, - "props": { - "w": 40, - "h": 33, - "fill": "hsl(308 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04120": { - "id": "shape:perf:04120", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 2624, - "rot": 0, - "props": { - "w": 26, - "h": 38, - "fill": "hsl(45 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04121": { - "id": "shape:perf:04121", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 2624, - "rot": 0, - "props": { - "w": 42, - "h": 25, - "fill": "hsl(273 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04122": { - "id": "shape:perf:04122", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 2624, - "rot": 0, - "props": { - "w": 40, - "h": 25, - "fill": "hsl(201 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04123": { - "id": "shape:perf:04123", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 2624, - "rot": 0, - "props": { - "w": 32, - "h": 44, - "fill": "hsl(248 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04124": { - "id": "shape:perf:04124", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 2624, - "rot": 0, - "props": { - "w": 28, - "h": 45, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04125": { - "id": "shape:perf:04125", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 2624, - "rot": 0, - "props": { - "w": 24, - "h": 45, - "fill": "hsl(139 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04126": { - "id": "shape:perf:04126", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 2624, - "rot": 0, - "props": { - "w": 29, - "h": 47, - "fill": "hsl(271 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04127": { - "id": "shape:perf:04127", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 2624, - "rot": 0, - "props": { - "w": 26, - "h": 28, - "fill": "hsl(347 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04128": { - "id": "shape:perf:04128", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 2624, - "rot": 0, - "props": { - "w": 34, - "h": 34, - "fill": "hsl(316 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04129": { - "id": "shape:perf:04129", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 2624, - "rot": 0, - "props": { - "w": 33, - "h": 43, - "fill": "hsl(351 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04130": { - "id": "shape:perf:04130", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 2624, - "rot": 0, - "props": { - "w": 42, - "h": 44, - "fill": "hsl(103 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04131": { - "id": "shape:perf:04131", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 2624, - "rot": 0, - "props": { - "w": 39, - "h": 30, - "fill": "hsl(86 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04132": { - "id": "shape:perf:04132", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 2624, - "rot": 0, - "props": { - "w": 46, - "h": 36, - "fill": "hsl(185 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04133": { - "id": "shape:perf:04133", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 2624, - "rot": 0, - "props": { - "w": 26, - "h": 38, - "fill": "hsl(20 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04134": { - "id": "shape:perf:04134", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 2624, - "rot": 0, - "props": { - "w": 34, - "h": 30, - "fill": "hsl(60 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04135": { - "id": "shape:perf:04135", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 2624, - "rot": 0, - "props": { - "w": 25, - "h": 41, - "fill": "hsl(276 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04136": { - "id": "shape:perf:04136", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 2624, - "rot": 0, - "props": { - "w": 32, - "h": 33, - "fill": "hsl(162 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04137": { - "id": "shape:perf:04137", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 2624, - "rot": 0, - "props": { - "w": 44, - "h": 24, - "fill": "hsl(18 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04138": { - "id": "shape:perf:04138", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 2624, - "rot": 0, - "props": { - "w": 30, - "h": 32, - "fill": "hsl(106 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04139": { - "id": "shape:perf:04139", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 2624, - "rot": 0, - "props": { - "w": 40, - "h": 47, - "fill": "hsl(234 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04140": { - "id": "shape:perf:04140", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 2624, - "rot": 0, - "props": { - "w": 44, - "h": 29, - "fill": "hsl(151 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04141": { - "id": "shape:perf:04141", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 2624, - "rot": 0, - "props": { - "w": 27, - "h": 28, - "fill": "hsl(20 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04142": { - "id": "shape:perf:04142", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 2624, - "rot": 0, - "props": { - "w": 28, - "h": 26, - "fill": "hsl(226 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04143": { - "id": "shape:perf:04143", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 2624, - "rot": 0, - "props": { - "w": 38, - "h": 41, - "fill": "hsl(331 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04144": { - "id": "shape:perf:04144", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 2624, - "rot": 0, - "props": { - "w": 35, - "h": 39, - "fill": "hsl(19 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04145": { - "id": "shape:perf:04145", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 2624, - "rot": 0, - "props": { - "w": 33, - "h": 43, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04146": { - "id": "shape:perf:04146", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 2624, - "rot": 0, - "props": { - "w": 40, - "h": 41, - "fill": "hsl(73 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04147": { - "id": "shape:perf:04147", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 2624, - "rot": 0, - "props": { - "w": 34, - "h": 45, - "fill": "hsl(277 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04148": { - "id": "shape:perf:04148", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 2624, - "rot": 0, - "props": { - "w": 44, - "h": 30, - "fill": "hsl(99 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04149": { - "id": "shape:perf:04149", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 2624, - "rot": 0, - "props": { - "w": 38, - "h": 26, - "fill": "hsl(108 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04150": { - "id": "shape:perf:04150", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 2624, - "rot": 0, - "props": { - "w": 28, - "h": 41, - "fill": "hsl(240 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04151": { - "id": "shape:perf:04151", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 2624, - "rot": 0, - "props": { - "w": 34, - "h": 26, - "fill": "hsl(112 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04152": { - "id": "shape:perf:04152", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 2624, - "rot": 0, - "props": { - "w": 33, - "h": 45, - "fill": "hsl(287 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04153": { - "id": "shape:perf:04153", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 2624, - "rot": 0, - "props": { - "w": 37, - "h": 39, - "fill": "hsl(54 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04154": { - "id": "shape:perf:04154", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 2624, - "rot": 0, - "props": { - "w": 39, - "h": 35, - "fill": "hsl(120 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04155": { - "id": "shape:perf:04155", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 2624, - "rot": 0, - "props": { - "w": 46, - "h": 35, - "fill": "hsl(208 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04156": { - "id": "shape:perf:04156", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 2624, - "rot": 0, - "props": { - "w": 46, - "h": 24, - "fill": "hsl(317 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04157": { - "id": "shape:perf:04157", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 2624, - "rot": 0, - "props": { - "w": 30, - "h": 40, - "fill": "hsl(93 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04158": { - "id": "shape:perf:04158", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 2624, - "rot": 0, - "props": { - "w": 41, - "h": 43, - "fill": "hsl(16 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04159": { - "id": "shape:perf:04159", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 2624, - "rot": 0, - "props": { - "w": 39, - "h": 32, - "fill": "hsl(230 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04160": { - "id": "shape:perf:04160", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 2624, - "rot": 0, - "props": { - "w": 45, - "h": 24, - "fill": "hsl(248 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04161": { - "id": "shape:perf:04161", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 2624, - "rot": 0, - "props": { - "w": 31, - "h": 37, - "fill": "hsl(14 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04162": { - "id": "shape:perf:04162", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 2624, - "rot": 0, - "props": { - "w": 35, - "h": 27, - "fill": "hsl(80 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04163": { - "id": "shape:perf:04163", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 2624, - "rot": 0, - "props": { - "w": 47, - "h": 46, - "fill": "hsl(21 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04164": { - "id": "shape:perf:04164", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 2624, - "rot": 0, - "props": { - "w": 37, - "h": 32, - "fill": "hsl(297 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04165": { - "id": "shape:perf:04165", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 2624, - "rot": 0, - "props": { - "w": 33, - "h": 36, - "fill": "hsl(8 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04166": { - "id": "shape:perf:04166", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 2624, - "rot": 0, - "props": { - "w": 44, - "h": 30, - "fill": "hsl(340 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04167": { - "id": "shape:perf:04167", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 2624, - "rot": 0, - "props": { - "w": 31, - "h": 36, - "fill": "hsl(21 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04168": { - "id": "shape:perf:04168", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 2624, - "rot": 0, - "props": { - "w": 42, - "h": 30, - "fill": "hsl(351 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04169": { - "id": "shape:perf:04169", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 2624, - "rot": 0, - "props": { - "w": 35, - "h": 34, - "fill": "hsl(52 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04170": { - "id": "shape:perf:04170", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 2624, - "rot": 0, - "props": { - "w": 46, - "h": 28, - "fill": "hsl(350 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04171": { - "id": "shape:perf:04171", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 2624, - "rot": 0, - "props": { - "w": 42, - "h": 27, - "fill": "hsl(44 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04172": { - "id": "shape:perf:04172", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 2624, - "rot": 0, - "props": { - "w": 35, - "h": 26, - "fill": "hsl(251 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04173": { - "id": "shape:perf:04173", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 2624, - "rot": 0, - "props": { - "w": 35, - "h": 46, - "fill": "hsl(334 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04174": { - "id": "shape:perf:04174", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 2624, - "rot": 0, - "props": { - "w": 33, - "h": 37, - "fill": "hsl(348 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04175": { - "id": "shape:perf:04175", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 2624, - "rot": 0, - "props": { - "w": 32, - "h": 25, - "fill": "hsl(322 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04176": { - "id": "shape:perf:04176", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 2624, - "rot": 0, - "props": { - "w": 41, - "h": 29, - "fill": "hsl(275 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04177": { - "id": "shape:perf:04177", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 2624, - "rot": 0, - "props": { - "w": 42, - "h": 42, - "fill": "hsl(354 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04178": { - "id": "shape:perf:04178", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 2624, - "rot": 0, - "props": { - "w": 34, - "h": 41, - "fill": "hsl(146 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04179": { - "id": "shape:perf:04179", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 2624, - "rot": 0, - "props": { - "w": 40, - "h": 41, - "fill": "hsl(219 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04180": { - "id": "shape:perf:04180", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 2624, - "rot": 0, - "props": { - "w": 45, - "h": 41, - "fill": "hsl(233 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04181": { - "id": "shape:perf:04181", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 2624, - "rot": 0, - "props": { - "w": 37, - "h": 46, - "fill": "hsl(272 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04182": { - "id": "shape:perf:04182", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 2624, - "rot": 0, - "props": { - "w": 39, - "h": 38, - "fill": "hsl(333 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04183": { - "id": "shape:perf:04183", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 2624, - "rot": 0, - "props": { - "w": 26, - "h": 43, - "fill": "hsl(149 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04184": { - "id": "shape:perf:04184", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 2624, - "rot": 0, - "props": { - "w": 36, - "h": 25, - "fill": "hsl(357 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04185": { - "id": "shape:perf:04185", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 2624, - "rot": 0, - "props": { - "w": 32, - "h": 38, - "fill": "hsl(161 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04186": { - "id": "shape:perf:04186", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 2624, - "rot": 0, - "props": { - "w": 30, - "h": 43, - "fill": "hsl(12 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04187": { - "id": "shape:perf:04187", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 2624, - "rot": 0, - "props": { - "w": 27, - "h": 31, - "fill": "hsl(116 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04188": { - "id": "shape:perf:04188", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 2624, - "rot": 0, - "props": { - "w": 46, - "h": 25, - "fill": "hsl(86 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04189": { - "id": "shape:perf:04189", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 2624, - "rot": 0, - "props": { - "w": 27, - "h": 30, - "fill": "hsl(177 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04190": { - "id": "shape:perf:04190", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 2624, - "rot": 0, - "props": { - "w": 45, - "h": 35, - "fill": "hsl(179 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04191": { - "id": "shape:perf:04191", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 2624, - "rot": 0, - "props": { - "w": 32, - "h": 30, - "fill": "hsl(233 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04192": { - "id": "shape:perf:04192", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 2624, - "rot": 0, - "props": { - "w": 43, - "h": 36, - "fill": "hsl(244 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04193": { - "id": "shape:perf:04193", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 2624, - "rot": 0, - "props": { - "w": 29, - "h": 47, - "fill": "hsl(33 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04194": { - "id": "shape:perf:04194", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 2624, - "rot": 0, - "props": { - "w": 34, - "h": 25, - "fill": "hsl(299 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04195": { - "id": "shape:perf:04195", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 2624, - "rot": 0, - "props": { - "w": 35, - "h": 33, - "fill": "hsl(56 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04196": { - "id": "shape:perf:04196", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 2624, - "rot": 0, - "props": { - "w": 30, - "h": 43, - "fill": "hsl(224 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04197": { - "id": "shape:perf:04197", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 2624, - "rot": 0, - "props": { - "w": 41, - "h": 44, - "fill": "hsl(227 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04198": { - "id": "shape:perf:04198", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 2624, - "rot": 0, - "props": { - "w": 46, - "h": 25, - "fill": "hsl(230 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04199": { - "id": "shape:perf:04199", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 2624, - "rot": 0, - "props": { - "w": 26, - "h": 28, - "fill": "hsl(110 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04200": { - "id": "shape:perf:04200", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 2688, - "rot": 0, - "props": { - "w": 44, - "h": 35, - "fill": "hsl(180 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04201": { - "id": "shape:perf:04201", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 2688, - "rot": 0, - "props": { - "w": 40, - "h": 31, - "fill": "hsl(355 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04202": { - "id": "shape:perf:04202", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 2688, - "rot": 0, - "props": { - "w": 43, - "h": 26, - "fill": "hsl(296 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04203": { - "id": "shape:perf:04203", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 2688, - "rot": 0, - "props": { - "w": 42, - "h": 30, - "fill": "hsl(100 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04204": { - "id": "shape:perf:04204", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 2688, - "rot": 0, - "props": { - "w": 31, - "h": 39, - "fill": "hsl(4 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04205": { - "id": "shape:perf:04205", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 2688, - "rot": 0, - "props": { - "w": 41, - "h": 38, - "fill": "hsl(26 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04206": { - "id": "shape:perf:04206", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 2688, - "rot": 0, - "props": { - "w": 30, - "h": 25, - "fill": "hsl(300 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04207": { - "id": "shape:perf:04207", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 2688, - "rot": 0, - "props": { - "w": 41, - "h": 35, - "fill": "hsl(259 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04208": { - "id": "shape:perf:04208", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 2688, - "rot": 0, - "props": { - "w": 43, - "h": 44, - "fill": "hsl(248 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04209": { - "id": "shape:perf:04209", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 2688, - "rot": 0, - "props": { - "w": 46, - "h": 36, - "fill": "hsl(45 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04210": { - "id": "shape:perf:04210", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 2688, - "rot": 0, - "props": { - "w": 29, - "h": 31, - "fill": "hsl(182 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04211": { - "id": "shape:perf:04211", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 2688, - "rot": 0, - "props": { - "w": 26, - "h": 33, - "fill": "hsl(127 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04212": { - "id": "shape:perf:04212", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 2688, - "rot": 0, - "props": { - "w": 34, - "h": 40, - "fill": "hsl(173 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04213": { - "id": "shape:perf:04213", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 2688, - "rot": 0, - "props": { - "w": 25, - "h": 39, - "fill": "hsl(200 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04214": { - "id": "shape:perf:04214", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 2688, - "rot": 0, - "props": { - "w": 44, - "h": 46, - "fill": "hsl(60 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04215": { - "id": "shape:perf:04215", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 2688, - "rot": 0, - "props": { - "w": 42, - "h": 37, - "fill": "hsl(315 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04216": { - "id": "shape:perf:04216", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 2688, - "rot": 0, - "props": { - "w": 31, - "h": 36, - "fill": "hsl(80 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04217": { - "id": "shape:perf:04217", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 2688, - "rot": 0, - "props": { - "w": 36, - "h": 29, - "fill": "hsl(144 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04218": { - "id": "shape:perf:04218", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 2688, - "rot": 0, - "props": { - "w": 34, - "h": 39, - "fill": "hsl(17 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04219": { - "id": "shape:perf:04219", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 2688, - "rot": 0, - "props": { - "w": 29, - "h": 46, - "fill": "hsl(309 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04220": { - "id": "shape:perf:04220", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 2688, - "rot": 0, - "props": { - "w": 45, - "h": 42, - "fill": "hsl(27 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04221": { - "id": "shape:perf:04221", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 2688, - "rot": 0, - "props": { - "w": 35, - "h": 34, - "fill": "hsl(240 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04222": { - "id": "shape:perf:04222", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 2688, - "rot": 0, - "props": { - "w": 34, - "h": 44, - "fill": "hsl(66 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04223": { - "id": "shape:perf:04223", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 2688, - "rot": 0, - "props": { - "w": 33, - "h": 41, - "fill": "hsl(177 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04224": { - "id": "shape:perf:04224", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 2688, - "rot": 0, - "props": { - "w": 28, - "h": 27, - "fill": "hsl(123 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04225": { - "id": "shape:perf:04225", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 2688, - "rot": 0, - "props": { - "w": 31, - "h": 32, - "fill": "hsl(50 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04226": { - "id": "shape:perf:04226", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 2688, - "rot": 0, - "props": { - "w": 45, - "h": 26, - "fill": "hsl(118 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04227": { - "id": "shape:perf:04227", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 2688, - "rot": 0, - "props": { - "w": 29, - "h": 44, - "fill": "hsl(160 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04228": { - "id": "shape:perf:04228", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 2688, - "rot": 0, - "props": { - "w": 35, - "h": 27, - "fill": "hsl(80 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04229": { - "id": "shape:perf:04229", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 2688, - "rot": 0, - "props": { - "w": 45, - "h": 44, - "fill": "hsl(147 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04230": { - "id": "shape:perf:04230", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 2688, - "rot": 0, - "props": { - "w": 37, - "h": 39, - "fill": "hsl(210 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04231": { - "id": "shape:perf:04231", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 2688, - "rot": 0, - "props": { - "w": 25, - "h": 26, - "fill": "hsl(60 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04232": { - "id": "shape:perf:04232", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 2688, - "rot": 0, - "props": { - "w": 40, - "h": 29, - "fill": "hsl(140 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04233": { - "id": "shape:perf:04233", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 2688, - "rot": 0, - "props": { - "w": 47, - "h": 43, - "fill": "hsl(75 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04234": { - "id": "shape:perf:04234", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 2688, - "rot": 0, - "props": { - "w": 27, - "h": 44, - "fill": "hsl(277 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04235": { - "id": "shape:perf:04235", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 2688, - "rot": 0, - "props": { - "w": 26, - "h": 25, - "fill": "hsl(134 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04236": { - "id": "shape:perf:04236", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 2688, - "rot": 0, - "props": { - "w": 30, - "h": 42, - "fill": "hsl(174 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04237": { - "id": "shape:perf:04237", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 2688, - "rot": 0, - "props": { - "w": 26, - "h": 43, - "fill": "hsl(119 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04238": { - "id": "shape:perf:04238", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 2688, - "rot": 0, - "props": { - "w": 40, - "h": 25, - "fill": "hsl(258 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04239": { - "id": "shape:perf:04239", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 2688, - "rot": 0, - "props": { - "w": 30, - "h": 43, - "fill": "hsl(212 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04240": { - "id": "shape:perf:04240", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 2688, - "rot": 0, - "props": { - "w": 46, - "h": 31, - "fill": "hsl(332 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04241": { - "id": "shape:perf:04241", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 2688, - "rot": 0, - "props": { - "w": 45, - "h": 25, - "fill": "hsl(243 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04242": { - "id": "shape:perf:04242", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 2688, - "rot": 0, - "props": { - "w": 33, - "h": 46, - "fill": "hsl(2 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04243": { - "id": "shape:perf:04243", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 2688, - "rot": 0, - "props": { - "w": 38, - "h": 25, - "fill": "hsl(353 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04244": { - "id": "shape:perf:04244", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 2688, - "rot": 0, - "props": { - "w": 42, - "h": 27, - "fill": "hsl(205 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04245": { - "id": "shape:perf:04245", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 2688, - "rot": 0, - "props": { - "w": 30, - "h": 47, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04246": { - "id": "shape:perf:04246", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 2688, - "rot": 0, - "props": { - "w": 43, - "h": 47, - "fill": "hsl(320 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04247": { - "id": "shape:perf:04247", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 2688, - "rot": 0, - "props": { - "w": 32, - "h": 36, - "fill": "hsl(290 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04248": { - "id": "shape:perf:04248", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 2688, - "rot": 0, - "props": { - "w": 42, - "h": 43, - "fill": "hsl(67 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04249": { - "id": "shape:perf:04249", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 2688, - "rot": 0, - "props": { - "w": 25, - "h": 26, - "fill": "hsl(8 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04250": { - "id": "shape:perf:04250", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 2688, - "rot": 0, - "props": { - "w": 34, - "h": 34, - "fill": "hsl(121 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04251": { - "id": "shape:perf:04251", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 2688, - "rot": 0, - "props": { - "w": 27, - "h": 42, - "fill": "hsl(95 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04252": { - "id": "shape:perf:04252", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 2688, - "rot": 0, - "props": { - "w": 31, - "h": 40, - "fill": "hsl(262 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04253": { - "id": "shape:perf:04253", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 2688, - "rot": 0, - "props": { - "w": 36, - "h": 27, - "fill": "hsl(136 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04254": { - "id": "shape:perf:04254", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 2688, - "rot": 0, - "props": { - "w": 26, - "h": 34, - "fill": "hsl(179 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04255": { - "id": "shape:perf:04255", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 2688, - "rot": 0, - "props": { - "w": 31, - "h": 24, - "fill": "hsl(203 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04256": { - "id": "shape:perf:04256", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 2688, - "rot": 0, - "props": { - "w": 41, - "h": 38, - "fill": "hsl(315 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04257": { - "id": "shape:perf:04257", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 2688, - "rot": 0, - "props": { - "w": 45, - "h": 42, - "fill": "hsl(342 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04258": { - "id": "shape:perf:04258", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 2688, - "rot": 0, - "props": { - "w": 45, - "h": 28, - "fill": "hsl(4 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04259": { - "id": "shape:perf:04259", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 2688, - "rot": 0, - "props": { - "w": 33, - "h": 43, - "fill": "hsl(170 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04260": { - "id": "shape:perf:04260", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 2688, - "rot": 0, - "props": { - "w": 45, - "h": 42, - "fill": "hsl(141 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04261": { - "id": "shape:perf:04261", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 2688, - "rot": 0, - "props": { - "w": 42, - "h": 33, - "fill": "hsl(141 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04262": { - "id": "shape:perf:04262", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 2688, - "rot": 0, - "props": { - "w": 31, - "h": 27, - "fill": "hsl(342 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04263": { - "id": "shape:perf:04263", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 2688, - "rot": 0, - "props": { - "w": 42, - "h": 38, - "fill": "hsl(250 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04264": { - "id": "shape:perf:04264", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 2688, - "rot": 0, - "props": { - "w": 36, - "h": 44, - "fill": "hsl(69 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04265": { - "id": "shape:perf:04265", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 2688, - "rot": 0, - "props": { - "w": 32, - "h": 36, - "fill": "hsl(256 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04266": { - "id": "shape:perf:04266", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 2688, - "rot": 0, - "props": { - "w": 41, - "h": 27, - "fill": "hsl(115 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04267": { - "id": "shape:perf:04267", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 2688, - "rot": 0, - "props": { - "w": 38, - "h": 46, - "fill": "hsl(288 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04268": { - "id": "shape:perf:04268", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 2688, - "rot": 0, - "props": { - "w": 25, - "h": 29, - "fill": "hsl(63 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04269": { - "id": "shape:perf:04269", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 2688, - "rot": 0, - "props": { - "w": 33, - "h": 29, - "fill": "hsl(201 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04270": { - "id": "shape:perf:04270", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 2688, - "rot": 0, - "props": { - "w": 45, - "h": 41, - "fill": "hsl(152 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04271": { - "id": "shape:perf:04271", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 2688, - "rot": 0, - "props": { - "w": 44, - "h": 31, - "fill": "hsl(212 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04272": { - "id": "shape:perf:04272", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 2688, - "rot": 0, - "props": { - "w": 42, - "h": 42, - "fill": "hsl(93 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04273": { - "id": "shape:perf:04273", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 2688, - "rot": 0, - "props": { - "w": 45, - "h": 27, - "fill": "hsl(13 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04274": { - "id": "shape:perf:04274", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 2688, - "rot": 0, - "props": { - "w": 29, - "h": 35, - "fill": "hsl(180 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04275": { - "id": "shape:perf:04275", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 2688, - "rot": 0, - "props": { - "w": 28, - "h": 46, - "fill": "hsl(40 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04276": { - "id": "shape:perf:04276", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 2688, - "rot": 0, - "props": { - "w": 36, - "h": 36, - "fill": "hsl(56 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04277": { - "id": "shape:perf:04277", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 2688, - "rot": 0, - "props": { - "w": 26, - "h": 31, - "fill": "hsl(294 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04278": { - "id": "shape:perf:04278", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 2688, - "rot": 0, - "props": { - "w": 27, - "h": 28, - "fill": "hsl(154 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04279": { - "id": "shape:perf:04279", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 2688, - "rot": 0, - "props": { - "w": 33, - "h": 40, - "fill": "hsl(252 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04280": { - "id": "shape:perf:04280", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 2688, - "rot": 0, - "props": { - "w": 44, - "h": 36, - "fill": "hsl(288 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04281": { - "id": "shape:perf:04281", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 2688, - "rot": 0, - "props": { - "w": 39, - "h": 27, - "fill": "hsl(216 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04282": { - "id": "shape:perf:04282", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 2688, - "rot": 0, - "props": { - "w": 47, - "h": 37, - "fill": "hsl(162 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04283": { - "id": "shape:perf:04283", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 2688, - "rot": 0, - "props": { - "w": 30, - "h": 42, - "fill": "hsl(272 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04284": { - "id": "shape:perf:04284", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 2688, - "rot": 0, - "props": { - "w": 38, - "h": 28, - "fill": "hsl(178 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04285": { - "id": "shape:perf:04285", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 2688, - "rot": 0, - "props": { - "w": 46, - "h": 29, - "fill": "hsl(88 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04286": { - "id": "shape:perf:04286", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 2688, - "rot": 0, - "props": { - "w": 46, - "h": 35, - "fill": "hsl(59 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04287": { - "id": "shape:perf:04287", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 2688, - "rot": 0, - "props": { - "w": 42, - "h": 45, - "fill": "hsl(51 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04288": { - "id": "shape:perf:04288", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 2688, - "rot": 0, - "props": { - "w": 39, - "h": 27, - "fill": "hsl(62 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04289": { - "id": "shape:perf:04289", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 2688, - "rot": 0, - "props": { - "w": 36, - "h": 28, - "fill": "hsl(22 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04290": { - "id": "shape:perf:04290", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 2688, - "rot": 0, - "props": { - "w": 34, - "h": 37, - "fill": "hsl(94 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04291": { - "id": "shape:perf:04291", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 2688, - "rot": 0, - "props": { - "w": 30, - "h": 44, - "fill": "hsl(154 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04292": { - "id": "shape:perf:04292", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 2688, - "rot": 0, - "props": { - "w": 35, - "h": 33, - "fill": "hsl(126 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04293": { - "id": "shape:perf:04293", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 2688, - "rot": 0, - "props": { - "w": 47, - "h": 43, - "fill": "hsl(48 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04294": { - "id": "shape:perf:04294", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 2688, - "rot": 0, - "props": { - "w": 33, - "h": 44, - "fill": "hsl(262 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04295": { - "id": "shape:perf:04295", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 2688, - "rot": 0, - "props": { - "w": 33, - "h": 47, - "fill": "hsl(120 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04296": { - "id": "shape:perf:04296", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 2688, - "rot": 0, - "props": { - "w": 40, - "h": 39, - "fill": "hsl(243 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04297": { - "id": "shape:perf:04297", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 2688, - "rot": 0, - "props": { - "w": 37, - "h": 29, - "fill": "hsl(237 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04298": { - "id": "shape:perf:04298", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 2688, - "rot": 0, - "props": { - "w": 43, - "h": 38, - "fill": "hsl(200 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04299": { - "id": "shape:perf:04299", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 2688, - "rot": 0, - "props": { - "w": 40, - "h": 24, - "fill": "hsl(36 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04300": { - "id": "shape:perf:04300", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 2752, - "rot": 0, - "props": { - "w": 29, - "h": 35, - "fill": "hsl(40 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04301": { - "id": "shape:perf:04301", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 2752, - "rot": 0, - "props": { - "w": 38, - "h": 37, - "fill": "hsl(224 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04302": { - "id": "shape:perf:04302", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 2752, - "rot": 0, - "props": { - "w": 29, - "h": 41, - "fill": "hsl(35 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04303": { - "id": "shape:perf:04303", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 2752, - "rot": 0, - "props": { - "w": 38, - "h": 39, - "fill": "hsl(251 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04304": { - "id": "shape:perf:04304", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 2752, - "rot": 0, - "props": { - "w": 36, - "h": 46, - "fill": "hsl(72 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04305": { - "id": "shape:perf:04305", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 2752, - "rot": 0, - "props": { - "w": 28, - "h": 32, - "fill": "hsl(137 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04306": { - "id": "shape:perf:04306", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 2752, - "rot": 0, - "props": { - "w": 24, - "h": 26, - "fill": "hsl(233 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04307": { - "id": "shape:perf:04307", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 2752, - "rot": 0, - "props": { - "w": 43, - "h": 38, - "fill": "hsl(1 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04308": { - "id": "shape:perf:04308", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 2752, - "rot": 0, - "props": { - "w": 38, - "h": 31, - "fill": "hsl(337 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04309": { - "id": "shape:perf:04309", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 2752, - "rot": 0, - "props": { - "w": 35, - "h": 38, - "fill": "hsl(319 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04310": { - "id": "shape:perf:04310", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 2752, - "rot": 0, - "props": { - "w": 30, - "h": 27, - "fill": "hsl(337 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04311": { - "id": "shape:perf:04311", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 2752, - "rot": 0, - "props": { - "w": 30, - "h": 26, - "fill": "hsl(160 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04312": { - "id": "shape:perf:04312", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 2752, - "rot": 0, - "props": { - "w": 41, - "h": 26, - "fill": "hsl(63 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04313": { - "id": "shape:perf:04313", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 2752, - "rot": 0, - "props": { - "w": 35, - "h": 37, - "fill": "hsl(245 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04314": { - "id": "shape:perf:04314", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 2752, - "rot": 0, - "props": { - "w": 30, - "h": 32, - "fill": "hsl(182 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04315": { - "id": "shape:perf:04315", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 2752, - "rot": 0, - "props": { - "w": 34, - "h": 40, - "fill": "hsl(248 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04316": { - "id": "shape:perf:04316", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 2752, - "rot": 0, - "props": { - "w": 24, - "h": 32, - "fill": "hsl(225 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04317": { - "id": "shape:perf:04317", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 2752, - "rot": 0, - "props": { - "w": 41, - "h": 42, - "fill": "hsl(319 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04318": { - "id": "shape:perf:04318", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 2752, - "rot": 0, - "props": { - "w": 28, - "h": 40, - "fill": "hsl(86 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04319": { - "id": "shape:perf:04319", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 2752, - "rot": 0, - "props": { - "w": 44, - "h": 36, - "fill": "hsl(145 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04320": { - "id": "shape:perf:04320", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 2752, - "rot": 0, - "props": { - "w": 41, - "h": 34, - "fill": "hsl(302 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04321": { - "id": "shape:perf:04321", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 2752, - "rot": 0, - "props": { - "w": 42, - "h": 33, - "fill": "hsl(279 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04322": { - "id": "shape:perf:04322", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 2752, - "rot": 0, - "props": { - "w": 37, - "h": 47, - "fill": "hsl(189 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04323": { - "id": "shape:perf:04323", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 2752, - "rot": 0, - "props": { - "w": 24, - "h": 43, - "fill": "hsl(51 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04324": { - "id": "shape:perf:04324", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 2752, - "rot": 0, - "props": { - "w": 40, - "h": 47, - "fill": "hsl(278 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04325": { - "id": "shape:perf:04325", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 2752, - "rot": 0, - "props": { - "w": 26, - "h": 27, - "fill": "hsl(254 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04326": { - "id": "shape:perf:04326", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 2752, - "rot": 0, - "props": { - "w": 43, - "h": 27, - "fill": "hsl(269 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04327": { - "id": "shape:perf:04327", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 2752, - "rot": 0, - "props": { - "w": 24, - "h": 35, - "fill": "hsl(327 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04328": { - "id": "shape:perf:04328", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 2752, - "rot": 0, - "props": { - "w": 36, - "h": 44, - "fill": "hsl(289 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04329": { - "id": "shape:perf:04329", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 2752, - "rot": 0, - "props": { - "w": 47, - "h": 26, - "fill": "hsl(173 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04330": { - "id": "shape:perf:04330", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 2752, - "rot": 0, - "props": { - "w": 24, - "h": 39, - "fill": "hsl(49 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04331": { - "id": "shape:perf:04331", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 2752, - "rot": 0, - "props": { - "w": 29, - "h": 28, - "fill": "hsl(343 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04332": { - "id": "shape:perf:04332", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 2752, - "rot": 0, - "props": { - "w": 27, - "h": 39, - "fill": "hsl(95 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04333": { - "id": "shape:perf:04333", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 2752, - "rot": 0, - "props": { - "w": 29, - "h": 39, - "fill": "hsl(148 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04334": { - "id": "shape:perf:04334", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 2752, - "rot": 0, - "props": { - "w": 31, - "h": 34, - "fill": "hsl(72 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04335": { - "id": "shape:perf:04335", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 2752, - "rot": 0, - "props": { - "w": 47, - "h": 47, - "fill": "hsl(280 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04336": { - "id": "shape:perf:04336", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 2752, - "rot": 0, - "props": { - "w": 25, - "h": 25, - "fill": "hsl(341 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04337": { - "id": "shape:perf:04337", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 2752, - "rot": 0, - "props": { - "w": 29, - "h": 28, - "fill": "hsl(230 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04338": { - "id": "shape:perf:04338", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 2752, - "rot": 0, - "props": { - "w": 24, - "h": 35, - "fill": "hsl(70 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04339": { - "id": "shape:perf:04339", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 2752, - "rot": 0, - "props": { - "w": 33, - "h": 41, - "fill": "hsl(202 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04340": { - "id": "shape:perf:04340", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 2752, - "rot": 0, - "props": { - "w": 32, - "h": 33, - "fill": "hsl(23 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04341": { - "id": "shape:perf:04341", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 2752, - "rot": 0, - "props": { - "w": 27, - "h": 33, - "fill": "hsl(184 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04342": { - "id": "shape:perf:04342", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 2752, - "rot": 0, - "props": { - "w": 28, - "h": 37, - "fill": "hsl(146 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04343": { - "id": "shape:perf:04343", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 2752, - "rot": 0, - "props": { - "w": 28, - "h": 41, - "fill": "hsl(114 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04344": { - "id": "shape:perf:04344", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 2752, - "rot": 0, - "props": { - "w": 35, - "h": 27, - "fill": "hsl(226 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04345": { - "id": "shape:perf:04345", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 2752, - "rot": 0, - "props": { - "w": 37, - "h": 24, - "fill": "hsl(28 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04346": { - "id": "shape:perf:04346", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 2752, - "rot": 0, - "props": { - "w": 46, - "h": 45, - "fill": "hsl(73 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04347": { - "id": "shape:perf:04347", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 2752, - "rot": 0, - "props": { - "w": 26, - "h": 47, - "fill": "hsl(205 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04348": { - "id": "shape:perf:04348", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 2752, - "rot": 0, - "props": { - "w": 37, - "h": 47, - "fill": "hsl(114 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04349": { - "id": "shape:perf:04349", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 2752, - "rot": 0, - "props": { - "w": 32, - "h": 45, - "fill": "hsl(343 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04350": { - "id": "shape:perf:04350", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 2752, - "rot": 0, - "props": { - "w": 31, - "h": 38, - "fill": "hsl(38 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04351": { - "id": "shape:perf:04351", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 2752, - "rot": 0, - "props": { - "w": 42, - "h": 36, - "fill": "hsl(145 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04352": { - "id": "shape:perf:04352", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 2752, - "rot": 0, - "props": { - "w": 32, - "h": 41, - "fill": "hsl(64 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04353": { - "id": "shape:perf:04353", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 2752, - "rot": 0, - "props": { - "w": 34, - "h": 46, - "fill": "hsl(58 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04354": { - "id": "shape:perf:04354", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 2752, - "rot": 0, - "props": { - "w": 28, - "h": 35, - "fill": "hsl(123 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04355": { - "id": "shape:perf:04355", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 2752, - "rot": 0, - "props": { - "w": 44, - "h": 44, - "fill": "hsl(31 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04356": { - "id": "shape:perf:04356", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 2752, - "rot": 0, - "props": { - "w": 27, - "h": 42, - "fill": "hsl(283 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04357": { - "id": "shape:perf:04357", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 2752, - "rot": 0, - "props": { - "w": 38, - "h": 45, - "fill": "hsl(249 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04358": { - "id": "shape:perf:04358", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 2752, - "rot": 0, - "props": { - "w": 29, - "h": 38, - "fill": "hsl(235 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04359": { - "id": "shape:perf:04359", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 2752, - "rot": 0, - "props": { - "w": 32, - "h": 29, - "fill": "hsl(234 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04360": { - "id": "shape:perf:04360", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 2752, - "rot": 0, - "props": { - "w": 37, - "h": 43, - "fill": "hsl(266 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04361": { - "id": "shape:perf:04361", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 2752, - "rot": 0, - "props": { - "w": 36, - "h": 39, - "fill": "hsl(316 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04362": { - "id": "shape:perf:04362", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 2752, - "rot": 0, - "props": { - "w": 35, - "h": 39, - "fill": "hsl(110 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04363": { - "id": "shape:perf:04363", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 2752, - "rot": 0, - "props": { - "w": 40, - "h": 46, - "fill": "hsl(62 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04364": { - "id": "shape:perf:04364", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 2752, - "rot": 0, - "props": { - "w": 24, - "h": 44, - "fill": "hsl(203 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04365": { - "id": "shape:perf:04365", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 2752, - "rot": 0, - "props": { - "w": 28, - "h": 32, - "fill": "hsl(298 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04366": { - "id": "shape:perf:04366", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 2752, - "rot": 0, - "props": { - "w": 45, - "h": 46, - "fill": "hsl(192 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04367": { - "id": "shape:perf:04367", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 2752, - "rot": 0, - "props": { - "w": 37, - "h": 47, - "fill": "hsl(214 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04368": { - "id": "shape:perf:04368", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 2752, - "rot": 0, - "props": { - "w": 43, - "h": 46, - "fill": "hsl(147 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04369": { - "id": "shape:perf:04369", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 2752, - "rot": 0, - "props": { - "w": 39, - "h": 44, - "fill": "hsl(185 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04370": { - "id": "shape:perf:04370", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 2752, - "rot": 0, - "props": { - "w": 31, - "h": 38, - "fill": "hsl(347 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04371": { - "id": "shape:perf:04371", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 2752, - "rot": 0, - "props": { - "w": 46, - "h": 29, - "fill": "hsl(117 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04372": { - "id": "shape:perf:04372", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 2752, - "rot": 0, - "props": { - "w": 31, - "h": 45, - "fill": "hsl(49 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04373": { - "id": "shape:perf:04373", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 2752, - "rot": 0, - "props": { - "w": 41, - "h": 41, - "fill": "hsl(105 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04374": { - "id": "shape:perf:04374", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 2752, - "rot": 0, - "props": { - "w": 41, - "h": 32, - "fill": "hsl(235 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04375": { - "id": "shape:perf:04375", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 2752, - "rot": 0, - "props": { - "w": 24, - "h": 35, - "fill": "hsl(355 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04376": { - "id": "shape:perf:04376", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 2752, - "rot": 0, - "props": { - "w": 33, - "h": 30, - "fill": "hsl(243 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04377": { - "id": "shape:perf:04377", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 2752, - "rot": 0, - "props": { - "w": 34, - "h": 33, - "fill": "hsl(314 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04378": { - "id": "shape:perf:04378", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 2752, - "rot": 0, - "props": { - "w": 26, - "h": 31, - "fill": "hsl(297 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04379": { - "id": "shape:perf:04379", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 2752, - "rot": 0, - "props": { - "w": 29, - "h": 42, - "fill": "hsl(10 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04380": { - "id": "shape:perf:04380", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 2752, - "rot": 0, - "props": { - "w": 26, - "h": 42, - "fill": "hsl(262 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04381": { - "id": "shape:perf:04381", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 2752, - "rot": 0, - "props": { - "w": 38, - "h": 41, - "fill": "hsl(37 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04382": { - "id": "shape:perf:04382", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 2752, - "rot": 0, - "props": { - "w": 45, - "h": 29, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04383": { - "id": "shape:perf:04383", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 2752, - "rot": 0, - "props": { - "w": 27, - "h": 24, - "fill": "hsl(37 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04384": { - "id": "shape:perf:04384", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 2752, - "rot": 0, - "props": { - "w": 36, - "h": 44, - "fill": "hsl(70 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04385": { - "id": "shape:perf:04385", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 2752, - "rot": 0, - "props": { - "w": 34, - "h": 30, - "fill": "hsl(18 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04386": { - "id": "shape:perf:04386", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 2752, - "rot": 0, - "props": { - "w": 29, - "h": 37, - "fill": "hsl(114 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04387": { - "id": "shape:perf:04387", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 2752, - "rot": 0, - "props": { - "w": 24, - "h": 26, - "fill": "hsl(133 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04388": { - "id": "shape:perf:04388", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 2752, - "rot": 0, - "props": { - "w": 44, - "h": 30, - "fill": "hsl(348 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04389": { - "id": "shape:perf:04389", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 2752, - "rot": 0, - "props": { - "w": 43, - "h": 30, - "fill": "hsl(70 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04390": { - "id": "shape:perf:04390", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 2752, - "rot": 0, - "props": { - "w": 24, - "h": 44, - "fill": "hsl(335 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04391": { - "id": "shape:perf:04391", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 2752, - "rot": 0, - "props": { - "w": 47, - "h": 34, - "fill": "hsl(61 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04392": { - "id": "shape:perf:04392", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 2752, - "rot": 0, - "props": { - "w": 30, - "h": 44, - "fill": "hsl(310 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04393": { - "id": "shape:perf:04393", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 2752, - "rot": 0, - "props": { - "w": 46, - "h": 39, - "fill": "hsl(292 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04394": { - "id": "shape:perf:04394", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 2752, - "rot": 0, - "props": { - "w": 41, - "h": 45, - "fill": "hsl(315 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04395": { - "id": "shape:perf:04395", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 2752, - "rot": 0, - "props": { - "w": 46, - "h": 36, - "fill": "hsl(260 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04396": { - "id": "shape:perf:04396", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 2752, - "rot": 0, - "props": { - "w": 46, - "h": 41, - "fill": "hsl(321 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04397": { - "id": "shape:perf:04397", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 2752, - "rot": 0, - "props": { - "w": 41, - "h": 39, - "fill": "hsl(283 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04398": { - "id": "shape:perf:04398", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 2752, - "rot": 0, - "props": { - "w": 47, - "h": 43, - "fill": "hsl(79 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04399": { - "id": "shape:perf:04399", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 2752, - "rot": 0, - "props": { - "w": 30, - "h": 38, - "fill": "hsl(286 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04400": { - "id": "shape:perf:04400", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 2816, - "rot": 0, - "props": { - "w": 42, - "h": 43, - "fill": "hsl(70 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04401": { - "id": "shape:perf:04401", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 2816, - "rot": 0, - "props": { - "w": 27, - "h": 34, - "fill": "hsl(171 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04402": { - "id": "shape:perf:04402", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 2816, - "rot": 0, - "props": { - "w": 25, - "h": 46, - "fill": "hsl(306 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04403": { - "id": "shape:perf:04403", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 2816, - "rot": 0, - "props": { - "w": 35, - "h": 27, - "fill": "hsl(171 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04404": { - "id": "shape:perf:04404", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 2816, - "rot": 0, - "props": { - "w": 33, - "h": 29, - "fill": "hsl(78 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04405": { - "id": "shape:perf:04405", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 2816, - "rot": 0, - "props": { - "w": 43, - "h": 31, - "fill": "hsl(118 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04406": { - "id": "shape:perf:04406", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 2816, - "rot": 0, - "props": { - "w": 31, - "h": 35, - "fill": "hsl(114 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04407": { - "id": "shape:perf:04407", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 2816, - "rot": 0, - "props": { - "w": 34, - "h": 28, - "fill": "hsl(183 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04408": { - "id": "shape:perf:04408", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 2816, - "rot": 0, - "props": { - "w": 44, - "h": 47, - "fill": "hsl(16 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04409": { - "id": "shape:perf:04409", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 2816, - "rot": 0, - "props": { - "w": 31, - "h": 44, - "fill": "hsl(146 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04410": { - "id": "shape:perf:04410", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 2816, - "rot": 0, - "props": { - "w": 30, - "h": 37, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04411": { - "id": "shape:perf:04411", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 2816, - "rot": 0, - "props": { - "w": 28, - "h": 46, - "fill": "hsl(305 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04412": { - "id": "shape:perf:04412", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 2816, - "rot": 0, - "props": { - "w": 32, - "h": 26, - "fill": "hsl(346 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04413": { - "id": "shape:perf:04413", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 2816, - "rot": 0, - "props": { - "w": 41, - "h": 37, - "fill": "hsl(4 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04414": { - "id": "shape:perf:04414", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 2816, - "rot": 0, - "props": { - "w": 43, - "h": 32, - "fill": "hsl(133 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04415": { - "id": "shape:perf:04415", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 2816, - "rot": 0, - "props": { - "w": 40, - "h": 36, - "fill": "hsl(123 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04416": { - "id": "shape:perf:04416", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 2816, - "rot": 0, - "props": { - "w": 41, - "h": 25, - "fill": "hsl(218 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04417": { - "id": "shape:perf:04417", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 2816, - "rot": 0, - "props": { - "w": 43, - "h": 39, - "fill": "hsl(16 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04418": { - "id": "shape:perf:04418", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 2816, - "rot": 0, - "props": { - "w": 36, - "h": 24, - "fill": "hsl(50 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04419": { - "id": "shape:perf:04419", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 2816, - "rot": 0, - "props": { - "w": 43, - "h": 25, - "fill": "hsl(269 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04420": { - "id": "shape:perf:04420", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 2816, - "rot": 0, - "props": { - "w": 28, - "h": 29, - "fill": "hsl(127 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04421": { - "id": "shape:perf:04421", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 2816, - "rot": 0, - "props": { - "w": 25, - "h": 46, - "fill": "hsl(299 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04422": { - "id": "shape:perf:04422", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 2816, - "rot": 0, - "props": { - "w": 29, - "h": 42, - "fill": "hsl(317 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04423": { - "id": "shape:perf:04423", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 2816, - "rot": 0, - "props": { - "w": 29, - "h": 27, - "fill": "hsl(168 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04424": { - "id": "shape:perf:04424", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 2816, - "rot": 0, - "props": { - "w": 31, - "h": 31, - "fill": "hsl(266 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04425": { - "id": "shape:perf:04425", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 2816, - "rot": 0, - "props": { - "w": 33, - "h": 30, - "fill": "hsl(182 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04426": { - "id": "shape:perf:04426", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 2816, - "rot": 0, - "props": { - "w": 44, - "h": 35, - "fill": "hsl(87 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04427": { - "id": "shape:perf:04427", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 2816, - "rot": 0, - "props": { - "w": 36, - "h": 45, - "fill": "hsl(252 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04428": { - "id": "shape:perf:04428", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 2816, - "rot": 0, - "props": { - "w": 40, - "h": 45, - "fill": "hsl(28 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04429": { - "id": "shape:perf:04429", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 2816, - "rot": 0, - "props": { - "w": 35, - "h": 38, - "fill": "hsl(80 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04430": { - "id": "shape:perf:04430", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 2816, - "rot": 0, - "props": { - "w": 41, - "h": 34, - "fill": "hsl(255 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04431": { - "id": "shape:perf:04431", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 2816, - "rot": 0, - "props": { - "w": 32, - "h": 35, - "fill": "hsl(329 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04432": { - "id": "shape:perf:04432", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 2816, - "rot": 0, - "props": { - "w": 36, - "h": 34, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04433": { - "id": "shape:perf:04433", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 2816, - "rot": 0, - "props": { - "w": 38, - "h": 45, - "fill": "hsl(270 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04434": { - "id": "shape:perf:04434", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 2816, - "rot": 0, - "props": { - "w": 32, - "h": 29, - "fill": "hsl(300 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04435": { - "id": "shape:perf:04435", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 2816, - "rot": 0, - "props": { - "w": 47, - "h": 45, - "fill": "hsl(301 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04436": { - "id": "shape:perf:04436", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 2816, - "rot": 0, - "props": { - "w": 46, - "h": 24, - "fill": "hsl(292 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04437": { - "id": "shape:perf:04437", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 2816, - "rot": 0, - "props": { - "w": 44, - "h": 33, - "fill": "hsl(90 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04438": { - "id": "shape:perf:04438", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 2816, - "rot": 0, - "props": { - "w": 28, - "h": 26, - "fill": "hsl(314 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04439": { - "id": "shape:perf:04439", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 2816, - "rot": 0, - "props": { - "w": 46, - "h": 40, - "fill": "hsl(122 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04440": { - "id": "shape:perf:04440", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 2816, - "rot": 0, - "props": { - "w": 28, - "h": 46, - "fill": "hsl(237 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04441": { - "id": "shape:perf:04441", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 2816, - "rot": 0, - "props": { - "w": 24, - "h": 24, - "fill": "hsl(105 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04442": { - "id": "shape:perf:04442", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 2816, - "rot": 0, - "props": { - "w": 35, - "h": 33, - "fill": "hsl(301 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04443": { - "id": "shape:perf:04443", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 2816, - "rot": 0, - "props": { - "w": 47, - "h": 47, - "fill": "hsl(342 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04444": { - "id": "shape:perf:04444", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 2816, - "rot": 0, - "props": { - "w": 43, - "h": 25, - "fill": "hsl(28 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04445": { - "id": "shape:perf:04445", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 2816, - "rot": 0, - "props": { - "w": 30, - "h": 41, - "fill": "hsl(132 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04446": { - "id": "shape:perf:04446", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 2816, - "rot": 0, - "props": { - "w": 25, - "h": 31, - "fill": "hsl(63 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04447": { - "id": "shape:perf:04447", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 2816, - "rot": 0, - "props": { - "w": 36, - "h": 24, - "fill": "hsl(309 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04448": { - "id": "shape:perf:04448", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 2816, - "rot": 0, - "props": { - "w": 25, - "h": 27, - "fill": "hsl(295 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04449": { - "id": "shape:perf:04449", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 2816, - "rot": 0, - "props": { - "w": 41, - "h": 27, - "fill": "hsl(182 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04450": { - "id": "shape:perf:04450", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 2816, - "rot": 0, - "props": { - "w": 45, - "h": 26, - "fill": "hsl(208 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04451": { - "id": "shape:perf:04451", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 2816, - "rot": 0, - "props": { - "w": 35, - "h": 34, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04452": { - "id": "shape:perf:04452", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 2816, - "rot": 0, - "props": { - "w": 43, - "h": 40, - "fill": "hsl(154 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04453": { - "id": "shape:perf:04453", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 2816, - "rot": 0, - "props": { - "w": 33, - "h": 28, - "fill": "hsl(263 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04454": { - "id": "shape:perf:04454", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 2816, - "rot": 0, - "props": { - "w": 41, - "h": 31, - "fill": "hsl(232 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04455": { - "id": "shape:perf:04455", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 2816, - "rot": 0, - "props": { - "w": 27, - "h": 34, - "fill": "hsl(340 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04456": { - "id": "shape:perf:04456", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 2816, - "rot": 0, - "props": { - "w": 32, - "h": 38, - "fill": "hsl(54 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04457": { - "id": "shape:perf:04457", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 2816, - "rot": 0, - "props": { - "w": 44, - "h": 24, - "fill": "hsl(165 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04458": { - "id": "shape:perf:04458", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 2816, - "rot": 0, - "props": { - "w": 31, - "h": 34, - "fill": "hsl(138 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04459": { - "id": "shape:perf:04459", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 2816, - "rot": 0, - "props": { - "w": 31, - "h": 41, - "fill": "hsl(125 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04460": { - "id": "shape:perf:04460", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 2816, - "rot": 0, - "props": { - "w": 24, - "h": 38, - "fill": "hsl(328 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04461": { - "id": "shape:perf:04461", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 2816, - "rot": 0, - "props": { - "w": 36, - "h": 32, - "fill": "hsl(30 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04462": { - "id": "shape:perf:04462", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 2816, - "rot": 0, - "props": { - "w": 38, - "h": 40, - "fill": "hsl(282 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04463": { - "id": "shape:perf:04463", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 2816, - "rot": 0, - "props": { - "w": 28, - "h": 36, - "fill": "hsl(139 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04464": { - "id": "shape:perf:04464", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 2816, - "rot": 0, - "props": { - "w": 28, - "h": 28, - "fill": "hsl(246 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04465": { - "id": "shape:perf:04465", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 2816, - "rot": 0, - "props": { - "w": 24, - "h": 46, - "fill": "hsl(121 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04466": { - "id": "shape:perf:04466", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 2816, - "rot": 0, - "props": { - "w": 29, - "h": 41, - "fill": "hsl(349 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04467": { - "id": "shape:perf:04467", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 2816, - "rot": 0, - "props": { - "w": 36, - "h": 44, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04468": { - "id": "shape:perf:04468", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 2816, - "rot": 0, - "props": { - "w": 34, - "h": 27, - "fill": "hsl(318 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04469": { - "id": "shape:perf:04469", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 2816, - "rot": 0, - "props": { - "w": 27, - "h": 44, - "fill": "hsl(71 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04470": { - "id": "shape:perf:04470", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 2816, - "rot": 0, - "props": { - "w": 28, - "h": 35, - "fill": "hsl(222 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04471": { - "id": "shape:perf:04471", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 2816, - "rot": 0, - "props": { - "w": 39, - "h": 41, - "fill": "hsl(113 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04472": { - "id": "shape:perf:04472", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 2816, - "rot": 0, - "props": { - "w": 46, - "h": 42, - "fill": "hsl(232 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04473": { - "id": "shape:perf:04473", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 2816, - "rot": 0, - "props": { - "w": 25, - "h": 42, - "fill": "hsl(146 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04474": { - "id": "shape:perf:04474", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 2816, - "rot": 0, - "props": { - "w": 28, - "h": 38, - "fill": "hsl(242 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04475": { - "id": "shape:perf:04475", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 2816, - "rot": 0, - "props": { - "w": 26, - "h": 28, - "fill": "hsl(142 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04476": { - "id": "shape:perf:04476", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 2816, - "rot": 0, - "props": { - "w": 45, - "h": 39, - "fill": "hsl(34 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04477": { - "id": "shape:perf:04477", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 2816, - "rot": 0, - "props": { - "w": 30, - "h": 38, - "fill": "hsl(316 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04478": { - "id": "shape:perf:04478", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 2816, - "rot": 0, - "props": { - "w": 46, - "h": 27, - "fill": "hsl(207 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04479": { - "id": "shape:perf:04479", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 2816, - "rot": 0, - "props": { - "w": 24, - "h": 46, - "fill": "hsl(99 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04480": { - "id": "shape:perf:04480", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 2816, - "rot": 0, - "props": { - "w": 30, - "h": 33, - "fill": "hsl(345 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04481": { - "id": "shape:perf:04481", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 2816, - "rot": 0, - "props": { - "w": 38, - "h": 39, - "fill": "hsl(203 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04482": { - "id": "shape:perf:04482", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 2816, - "rot": 0, - "props": { - "w": 24, - "h": 36, - "fill": "hsl(171 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04483": { - "id": "shape:perf:04483", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 2816, - "rot": 0, - "props": { - "w": 32, - "h": 24, - "fill": "hsl(359 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04484": { - "id": "shape:perf:04484", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 2816, - "rot": 0, - "props": { - "w": 41, - "h": 47, - "fill": "hsl(47 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04485": { - "id": "shape:perf:04485", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 2816, - "rot": 0, - "props": { - "w": 44, - "h": 46, - "fill": "hsl(195 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04486": { - "id": "shape:perf:04486", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 2816, - "rot": 0, - "props": { - "w": 45, - "h": 37, - "fill": "hsl(66 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04487": { - "id": "shape:perf:04487", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 2816, - "rot": 0, - "props": { - "w": 37, - "h": 29, - "fill": "hsl(138 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04488": { - "id": "shape:perf:04488", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 2816, - "rot": 0, - "props": { - "w": 28, - "h": 24, - "fill": "hsl(28 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04489": { - "id": "shape:perf:04489", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 2816, - "rot": 0, - "props": { - "w": 45, - "h": 39, - "fill": "hsl(153 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04490": { - "id": "shape:perf:04490", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 2816, - "rot": 0, - "props": { - "w": 25, - "h": 40, - "fill": "hsl(304 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04491": { - "id": "shape:perf:04491", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 2816, - "rot": 0, - "props": { - "w": 45, - "h": 31, - "fill": "hsl(16 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04492": { - "id": "shape:perf:04492", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 2816, - "rot": 0, - "props": { - "w": 33, - "h": 45, - "fill": "hsl(48 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04493": { - "id": "shape:perf:04493", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 2816, - "rot": 0, - "props": { - "w": 29, - "h": 25, - "fill": "hsl(120 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04494": { - "id": "shape:perf:04494", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 2816, - "rot": 0, - "props": { - "w": 27, - "h": 27, - "fill": "hsl(198 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04495": { - "id": "shape:perf:04495", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 2816, - "rot": 0, - "props": { - "w": 37, - "h": 27, - "fill": "hsl(192 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04496": { - "id": "shape:perf:04496", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 2816, - "rot": 0, - "props": { - "w": 36, - "h": 43, - "fill": "hsl(45 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04497": { - "id": "shape:perf:04497", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 2816, - "rot": 0, - "props": { - "w": 37, - "h": 27, - "fill": "hsl(359 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04498": { - "id": "shape:perf:04498", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 2816, - "rot": 0, - "props": { - "w": 39, - "h": 47, - "fill": "hsl(140 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04499": { - "id": "shape:perf:04499", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 2816, - "rot": 0, - "props": { - "w": 28, - "h": 44, - "fill": "hsl(245 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04500": { - "id": "shape:perf:04500", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 2880, - "rot": 0, - "props": { - "w": 44, - "h": 44, - "fill": "hsl(305 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04501": { - "id": "shape:perf:04501", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 2880, - "rot": 0, - "props": { - "w": 45, - "h": 24, - "fill": "hsl(296 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04502": { - "id": "shape:perf:04502", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 2880, - "rot": 0, - "props": { - "w": 45, - "h": 25, - "fill": "hsl(244 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04503": { - "id": "shape:perf:04503", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 2880, - "rot": 0, - "props": { - "w": 37, - "h": 26, - "fill": "hsl(240 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04504": { - "id": "shape:perf:04504", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 2880, - "rot": 0, - "props": { - "w": 38, - "h": 26, - "fill": "hsl(121 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04505": { - "id": "shape:perf:04505", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 2880, - "rot": 0, - "props": { - "w": 36, - "h": 32, - "fill": "hsl(321 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04506": { - "id": "shape:perf:04506", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 2880, - "rot": 0, - "props": { - "w": 31, - "h": 42, - "fill": "hsl(117 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04507": { - "id": "shape:perf:04507", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 2880, - "rot": 0, - "props": { - "w": 36, - "h": 34, - "fill": "hsl(138 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04508": { - "id": "shape:perf:04508", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 2880, - "rot": 0, - "props": { - "w": 41, - "h": 36, - "fill": "hsl(351 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04509": { - "id": "shape:perf:04509", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 2880, - "rot": 0, - "props": { - "w": 26, - "h": 42, - "fill": "hsl(96 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04510": { - "id": "shape:perf:04510", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 2880, - "rot": 0, - "props": { - "w": 45, - "h": 35, - "fill": "hsl(215 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04511": { - "id": "shape:perf:04511", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 2880, - "rot": 0, - "props": { - "w": 40, - "h": 30, - "fill": "hsl(38 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04512": { - "id": "shape:perf:04512", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 2880, - "rot": 0, - "props": { - "w": 38, - "h": 40, - "fill": "hsl(301 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04513": { - "id": "shape:perf:04513", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 2880, - "rot": 0, - "props": { - "w": 43, - "h": 46, - "fill": "hsl(42 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04514": { - "id": "shape:perf:04514", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 2880, - "rot": 0, - "props": { - "w": 41, - "h": 29, - "fill": "hsl(272 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04515": { - "id": "shape:perf:04515", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 2880, - "rot": 0, - "props": { - "w": 40, - "h": 46, - "fill": "hsl(208 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04516": { - "id": "shape:perf:04516", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 2880, - "rot": 0, - "props": { - "w": 29, - "h": 38, - "fill": "hsl(308 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04517": { - "id": "shape:perf:04517", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 2880, - "rot": 0, - "props": { - "w": 32, - "h": 37, - "fill": "hsl(155 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04518": { - "id": "shape:perf:04518", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 2880, - "rot": 0, - "props": { - "w": 24, - "h": 43, - "fill": "hsl(105 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04519": { - "id": "shape:perf:04519", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 2880, - "rot": 0, - "props": { - "w": 26, - "h": 38, - "fill": "hsl(345 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04520": { - "id": "shape:perf:04520", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 2880, - "rot": 0, - "props": { - "w": 40, - "h": 24, - "fill": "hsl(252 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04521": { - "id": "shape:perf:04521", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 2880, - "rot": 0, - "props": { - "w": 40, - "h": 30, - "fill": "hsl(157 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04522": { - "id": "shape:perf:04522", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 2880, - "rot": 0, - "props": { - "w": 33, - "h": 25, - "fill": "hsl(274 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04523": { - "id": "shape:perf:04523", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 2880, - "rot": 0, - "props": { - "w": 28, - "h": 41, - "fill": "hsl(114 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04524": { - "id": "shape:perf:04524", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 2880, - "rot": 0, - "props": { - "w": 28, - "h": 37, - "fill": "hsl(157 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04525": { - "id": "shape:perf:04525", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 2880, - "rot": 0, - "props": { - "w": 35, - "h": 25, - "fill": "hsl(342 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04526": { - "id": "shape:perf:04526", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 2880, - "rot": 0, - "props": { - "w": 28, - "h": 25, - "fill": "hsl(160 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04527": { - "id": "shape:perf:04527", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 2880, - "rot": 0, - "props": { - "w": 35, - "h": 30, - "fill": "hsl(202 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04528": { - "id": "shape:perf:04528", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 2880, - "rot": 0, - "props": { - "w": 44, - "h": 41, - "fill": "hsl(128 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04529": { - "id": "shape:perf:04529", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 2880, - "rot": 0, - "props": { - "w": 37, - "h": 46, - "fill": "hsl(95 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04530": { - "id": "shape:perf:04530", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 2880, - "rot": 0, - "props": { - "w": 37, - "h": 46, - "fill": "hsl(111 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04531": { - "id": "shape:perf:04531", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 2880, - "rot": 0, - "props": { - "w": 46, - "h": 42, - "fill": "hsl(5 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04532": { - "id": "shape:perf:04532", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 2880, - "rot": 0, - "props": { - "w": 34, - "h": 36, - "fill": "hsl(207 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04533": { - "id": "shape:perf:04533", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 2880, - "rot": 0, - "props": { - "w": 30, - "h": 46, - "fill": "hsl(107 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04534": { - "id": "shape:perf:04534", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 2880, - "rot": 0, - "props": { - "w": 38, - "h": 35, - "fill": "hsl(5 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04535": { - "id": "shape:perf:04535", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 2880, - "rot": 0, - "props": { - "w": 34, - "h": 34, - "fill": "hsl(5 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04536": { - "id": "shape:perf:04536", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 2880, - "rot": 0, - "props": { - "w": 45, - "h": 36, - "fill": "hsl(97 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04537": { - "id": "shape:perf:04537", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 2880, - "rot": 0, - "props": { - "w": 29, - "h": 30, - "fill": "hsl(55 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04538": { - "id": "shape:perf:04538", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 2880, - "rot": 0, - "props": { - "w": 27, - "h": 35, - "fill": "hsl(347 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04539": { - "id": "shape:perf:04539", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 2880, - "rot": 0, - "props": { - "w": 41, - "h": 35, - "fill": "hsl(93 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04540": { - "id": "shape:perf:04540", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 2880, - "rot": 0, - "props": { - "w": 31, - "h": 26, - "fill": "hsl(231 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04541": { - "id": "shape:perf:04541", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 2880, - "rot": 0, - "props": { - "w": 35, - "h": 41, - "fill": "hsl(98 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04542": { - "id": "shape:perf:04542", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 2880, - "rot": 0, - "props": { - "w": 37, - "h": 39, - "fill": "hsl(212 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04543": { - "id": "shape:perf:04543", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 2880, - "rot": 0, - "props": { - "w": 35, - "h": 30, - "fill": "hsl(275 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04544": { - "id": "shape:perf:04544", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 2880, - "rot": 0, - "props": { - "w": 46, - "h": 31, - "fill": "hsl(353 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04545": { - "id": "shape:perf:04545", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 2880, - "rot": 0, - "props": { - "w": 25, - "h": 37, - "fill": "hsl(297 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04546": { - "id": "shape:perf:04546", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 2880, - "rot": 0, - "props": { - "w": 38, - "h": 40, - "fill": "hsl(150 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04547": { - "id": "shape:perf:04547", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 2880, - "rot": 0, - "props": { - "w": 43, - "h": 33, - "fill": "hsl(240 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04548": { - "id": "shape:perf:04548", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 2880, - "rot": 0, - "props": { - "w": 24, - "h": 34, - "fill": "hsl(161 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04549": { - "id": "shape:perf:04549", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 2880, - "rot": 0, - "props": { - "w": 40, - "h": 28, - "fill": "hsl(26 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04550": { - "id": "shape:perf:04550", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 2880, - "rot": 0, - "props": { - "w": 45, - "h": 33, - "fill": "hsl(210 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04551": { - "id": "shape:perf:04551", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 2880, - "rot": 0, - "props": { - "w": 26, - "h": 32, - "fill": "hsl(86 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04552": { - "id": "shape:perf:04552", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 2880, - "rot": 0, - "props": { - "w": 41, - "h": 24, - "fill": "hsl(147 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04553": { - "id": "shape:perf:04553", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 2880, - "rot": 0, - "props": { - "w": 25, - "h": 34, - "fill": "hsl(279 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04554": { - "id": "shape:perf:04554", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 2880, - "rot": 0, - "props": { - "w": 29, - "h": 30, - "fill": "hsl(302 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04555": { - "id": "shape:perf:04555", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 2880, - "rot": 0, - "props": { - "w": 41, - "h": 42, - "fill": "hsl(295 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04556": { - "id": "shape:perf:04556", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 2880, - "rot": 0, - "props": { - "w": 38, - "h": 30, - "fill": "hsl(168 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04557": { - "id": "shape:perf:04557", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 2880, - "rot": 0, - "props": { - "w": 34, - "h": 40, - "fill": "hsl(336 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04558": { - "id": "shape:perf:04558", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 2880, - "rot": 0, - "props": { - "w": 40, - "h": 31, - "fill": "hsl(85 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04559": { - "id": "shape:perf:04559", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 2880, - "rot": 0, - "props": { - "w": 26, - "h": 28, - "fill": "hsl(207 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04560": { - "id": "shape:perf:04560", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 2880, - "rot": 0, - "props": { - "w": 24, - "h": 40, - "fill": "hsl(180 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04561": { - "id": "shape:perf:04561", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 2880, - "rot": 0, - "props": { - "w": 33, - "h": 36, - "fill": "hsl(154 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04562": { - "id": "shape:perf:04562", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 2880, - "rot": 0, - "props": { - "w": 43, - "h": 47, - "fill": "hsl(6 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04563": { - "id": "shape:perf:04563", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 2880, - "rot": 0, - "props": { - "w": 46, - "h": 41, - "fill": "hsl(91 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04564": { - "id": "shape:perf:04564", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 2880, - "rot": 0, - "props": { - "w": 41, - "h": 46, - "fill": "hsl(139 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04565": { - "id": "shape:perf:04565", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 2880, - "rot": 0, - "props": { - "w": 29, - "h": 27, - "fill": "hsl(112 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04566": { - "id": "shape:perf:04566", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 2880, - "rot": 0, - "props": { - "w": 32, - "h": 31, - "fill": "hsl(147 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04567": { - "id": "shape:perf:04567", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 2880, - "rot": 0, - "props": { - "w": 43, - "h": 32, - "fill": "hsl(134 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04568": { - "id": "shape:perf:04568", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 2880, - "rot": 0, - "props": { - "w": 35, - "h": 43, - "fill": "hsl(66 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04569": { - "id": "shape:perf:04569", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 2880, - "rot": 0, - "props": { - "w": 38, - "h": 33, - "fill": "hsl(312 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04570": { - "id": "shape:perf:04570", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 2880, - "rot": 0, - "props": { - "w": 38, - "h": 24, - "fill": "hsl(120 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04571": { - "id": "shape:perf:04571", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 2880, - "rot": 0, - "props": { - "w": 42, - "h": 39, - "fill": "hsl(180 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04572": { - "id": "shape:perf:04572", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 2880, - "rot": 0, - "props": { - "w": 36, - "h": 38, - "fill": "hsl(348 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04573": { - "id": "shape:perf:04573", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 2880, - "rot": 0, - "props": { - "w": 38, - "h": 26, - "fill": "hsl(232 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04574": { - "id": "shape:perf:04574", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 2880, - "rot": 0, - "props": { - "w": 42, - "h": 36, - "fill": "hsl(83 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04575": { - "id": "shape:perf:04575", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 2880, - "rot": 0, - "props": { - "w": 35, - "h": 43, - "fill": "hsl(194 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04576": { - "id": "shape:perf:04576", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 2880, - "rot": 0, - "props": { - "w": 38, - "h": 27, - "fill": "hsl(222 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04577": { - "id": "shape:perf:04577", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 2880, - "rot": 0, - "props": { - "w": 25, - "h": 45, - "fill": "hsl(42 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04578": { - "id": "shape:perf:04578", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 2880, - "rot": 0, - "props": { - "w": 30, - "h": 40, - "fill": "hsl(195 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04579": { - "id": "shape:perf:04579", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 2880, - "rot": 0, - "props": { - "w": 26, - "h": 46, - "fill": "hsl(79 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04580": { - "id": "shape:perf:04580", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 2880, - "rot": 0, - "props": { - "w": 25, - "h": 37, - "fill": "hsl(73 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04581": { - "id": "shape:perf:04581", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 2880, - "rot": 0, - "props": { - "w": 38, - "h": 31, - "fill": "hsl(240 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04582": { - "id": "shape:perf:04582", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 2880, - "rot": 0, - "props": { - "w": 28, - "h": 45, - "fill": "hsl(185 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04583": { - "id": "shape:perf:04583", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 2880, - "rot": 0, - "props": { - "w": 42, - "h": 32, - "fill": "hsl(66 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04584": { - "id": "shape:perf:04584", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 2880, - "rot": 0, - "props": { - "w": 32, - "h": 33, - "fill": "hsl(285 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04585": { - "id": "shape:perf:04585", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 2880, - "rot": 0, - "props": { - "w": 36, - "h": 45, - "fill": "hsl(1 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04586": { - "id": "shape:perf:04586", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 2880, - "rot": 0, - "props": { - "w": 44, - "h": 46, - "fill": "hsl(130 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04587": { - "id": "shape:perf:04587", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 2880, - "rot": 0, - "props": { - "w": 36, - "h": 44, - "fill": "hsl(131 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04588": { - "id": "shape:perf:04588", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 2880, - "rot": 0, - "props": { - "w": 38, - "h": 30, - "fill": "hsl(296 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04589": { - "id": "shape:perf:04589", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 2880, - "rot": 0, - "props": { - "w": 42, - "h": 32, - "fill": "hsl(106 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04590": { - "id": "shape:perf:04590", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 2880, - "rot": 0, - "props": { - "w": 45, - "h": 33, - "fill": "hsl(4 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04591": { - "id": "shape:perf:04591", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 2880, - "rot": 0, - "props": { - "w": 47, - "h": 40, - "fill": "hsl(204 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04592": { - "id": "shape:perf:04592", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 2880, - "rot": 0, - "props": { - "w": 36, - "h": 27, - "fill": "hsl(141 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04593": { - "id": "shape:perf:04593", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 2880, - "rot": 0, - "props": { - "w": 39, - "h": 47, - "fill": "hsl(198 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04594": { - "id": "shape:perf:04594", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 2880, - "rot": 0, - "props": { - "w": 31, - "h": 45, - "fill": "hsl(316 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04595": { - "id": "shape:perf:04595", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 2880, - "rot": 0, - "props": { - "w": 30, - "h": 24, - "fill": "hsl(153 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04596": { - "id": "shape:perf:04596", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 2880, - "rot": 0, - "props": { - "w": 39, - "h": 24, - "fill": "hsl(20 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04597": { - "id": "shape:perf:04597", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 2880, - "rot": 0, - "props": { - "w": 39, - "h": 43, - "fill": "hsl(24 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04598": { - "id": "shape:perf:04598", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 2880, - "rot": 0, - "props": { - "w": 43, - "h": 36, - "fill": "hsl(170 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04599": { - "id": "shape:perf:04599", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 2880, - "rot": 0, - "props": { - "w": 45, - "h": 35, - "fill": "hsl(52 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04600": { - "id": "shape:perf:04600", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 2944, - "rot": 0, - "props": { - "w": 28, - "h": 37, - "fill": "hsl(5 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04601": { - "id": "shape:perf:04601", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 2944, - "rot": 0, - "props": { - "w": 38, - "h": 46, - "fill": "hsl(349 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04602": { - "id": "shape:perf:04602", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 2944, - "rot": 0, - "props": { - "w": 44, - "h": 42, - "fill": "hsl(273 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04603": { - "id": "shape:perf:04603", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 2944, - "rot": 0, - "props": { - "w": 27, - "h": 47, - "fill": "hsl(265 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04604": { - "id": "shape:perf:04604", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 2944, - "rot": 0, - "props": { - "w": 25, - "h": 25, - "fill": "hsl(278 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04605": { - "id": "shape:perf:04605", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 2944, - "rot": 0, - "props": { - "w": 25, - "h": 40, - "fill": "hsl(55 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04606": { - "id": "shape:perf:04606", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 2944, - "rot": 0, - "props": { - "w": 38, - "h": 40, - "fill": "hsl(190 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04607": { - "id": "shape:perf:04607", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 2944, - "rot": 0, - "props": { - "w": 27, - "h": 26, - "fill": "hsl(225 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04608": { - "id": "shape:perf:04608", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 2944, - "rot": 0, - "props": { - "w": 41, - "h": 37, - "fill": "hsl(243 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04609": { - "id": "shape:perf:04609", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 2944, - "rot": 0, - "props": { - "w": 40, - "h": 29, - "fill": "hsl(66 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04610": { - "id": "shape:perf:04610", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 2944, - "rot": 0, - "props": { - "w": 30, - "h": 34, - "fill": "hsl(103 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04611": { - "id": "shape:perf:04611", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 2944, - "rot": 0, - "props": { - "w": 45, - "h": 28, - "fill": "hsl(300 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04612": { - "id": "shape:perf:04612", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 2944, - "rot": 0, - "props": { - "w": 40, - "h": 32, - "fill": "hsl(316 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04613": { - "id": "shape:perf:04613", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 2944, - "rot": 0, - "props": { - "w": 39, - "h": 29, - "fill": "hsl(331 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04614": { - "id": "shape:perf:04614", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 2944, - "rot": 0, - "props": { - "w": 27, - "h": 47, - "fill": "hsl(127 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04615": { - "id": "shape:perf:04615", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 2944, - "rot": 0, - "props": { - "w": 47, - "h": 35, - "fill": "hsl(49 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04616": { - "id": "shape:perf:04616", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 2944, - "rot": 0, - "props": { - "w": 39, - "h": 38, - "fill": "hsl(231 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04617": { - "id": "shape:perf:04617", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 2944, - "rot": 0, - "props": { - "w": 28, - "h": 41, - "fill": "hsl(338 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04618": { - "id": "shape:perf:04618", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 2944, - "rot": 0, - "props": { - "w": 47, - "h": 34, - "fill": "hsl(71 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04619": { - "id": "shape:perf:04619", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 2944, - "rot": 0, - "props": { - "w": 28, - "h": 27, - "fill": "hsl(320 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04620": { - "id": "shape:perf:04620", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 2944, - "rot": 0, - "props": { - "w": 24, - "h": 41, - "fill": "hsl(20 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04621": { - "id": "shape:perf:04621", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 2944, - "rot": 0, - "props": { - "w": 34, - "h": 37, - "fill": "hsl(20 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04622": { - "id": "shape:perf:04622", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 2944, - "rot": 0, - "props": { - "w": 29, - "h": 33, - "fill": "hsl(69 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04623": { - "id": "shape:perf:04623", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 2944, - "rot": 0, - "props": { - "w": 46, - "h": 47, - "fill": "hsl(152 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04624": { - "id": "shape:perf:04624", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 2944, - "rot": 0, - "props": { - "w": 33, - "h": 46, - "fill": "hsl(200 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04625": { - "id": "shape:perf:04625", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 2944, - "rot": 0, - "props": { - "w": 26, - "h": 28, - "fill": "hsl(165 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04626": { - "id": "shape:perf:04626", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 2944, - "rot": 0, - "props": { - "w": 43, - "h": 42, - "fill": "hsl(123 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04627": { - "id": "shape:perf:04627", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 2944, - "rot": 0, - "props": { - "w": 25, - "h": 29, - "fill": "hsl(71 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04628": { - "id": "shape:perf:04628", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 2944, - "rot": 0, - "props": { - "w": 33, - "h": 25, - "fill": "hsl(294 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04629": { - "id": "shape:perf:04629", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 2944, - "rot": 0, - "props": { - "w": 31, - "h": 39, - "fill": "hsl(101 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04630": { - "id": "shape:perf:04630", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 2944, - "rot": 0, - "props": { - "w": 31, - "h": 25, - "fill": "hsl(233 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04631": { - "id": "shape:perf:04631", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 2944, - "rot": 0, - "props": { - "w": 42, - "h": 31, - "fill": "hsl(44 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04632": { - "id": "shape:perf:04632", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 2944, - "rot": 0, - "props": { - "w": 45, - "h": 36, - "fill": "hsl(328 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04633": { - "id": "shape:perf:04633", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 2944, - "rot": 0, - "props": { - "w": 47, - "h": 34, - "fill": "hsl(240 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04634": { - "id": "shape:perf:04634", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 2944, - "rot": 0, - "props": { - "w": 40, - "h": 44, - "fill": "hsl(52 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04635": { - "id": "shape:perf:04635", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 2944, - "rot": 0, - "props": { - "w": 47, - "h": 30, - "fill": "hsl(262 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04636": { - "id": "shape:perf:04636", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 2944, - "rot": 0, - "props": { - "w": 31, - "h": 28, - "fill": "hsl(304 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04637": { - "id": "shape:perf:04637", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 2944, - "rot": 0, - "props": { - "w": 41, - "h": 30, - "fill": "hsl(210 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04638": { - "id": "shape:perf:04638", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 2944, - "rot": 0, - "props": { - "w": 31, - "h": 33, - "fill": "hsl(293 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04639": { - "id": "shape:perf:04639", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 2944, - "rot": 0, - "props": { - "w": 25, - "h": 46, - "fill": "hsl(35 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04640": { - "id": "shape:perf:04640", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 2944, - "rot": 0, - "props": { - "w": 43, - "h": 35, - "fill": "hsl(284 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04641": { - "id": "shape:perf:04641", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 2944, - "rot": 0, - "props": { - "w": 24, - "h": 36, - "fill": "hsl(354 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04642": { - "id": "shape:perf:04642", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 2944, - "rot": 0, - "props": { - "w": 28, - "h": 36, - "fill": "hsl(318 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04643": { - "id": "shape:perf:04643", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 2944, - "rot": 0, - "props": { - "w": 37, - "h": 24, - "fill": "hsl(268 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04644": { - "id": "shape:perf:04644", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 2944, - "rot": 0, - "props": { - "w": 36, - "h": 33, - "fill": "hsl(243 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04645": { - "id": "shape:perf:04645", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 2944, - "rot": 0, - "props": { - "w": 31, - "h": 38, - "fill": "hsl(21 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04646": { - "id": "shape:perf:04646", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 2944, - "rot": 0, - "props": { - "w": 43, - "h": 33, - "fill": "hsl(76 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04647": { - "id": "shape:perf:04647", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 2944, - "rot": 0, - "props": { - "w": 33, - "h": 34, - "fill": "hsl(302 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04648": { - "id": "shape:perf:04648", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 2944, - "rot": 0, - "props": { - "w": 42, - "h": 27, - "fill": "hsl(343 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04649": { - "id": "shape:perf:04649", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 2944, - "rot": 0, - "props": { - "w": 43, - "h": 33, - "fill": "hsl(242 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04650": { - "id": "shape:perf:04650", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 2944, - "rot": 0, - "props": { - "w": 44, - "h": 30, - "fill": "hsl(283 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04651": { - "id": "shape:perf:04651", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 2944, - "rot": 0, - "props": { - "w": 41, - "h": 37, - "fill": "hsl(173 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04652": { - "id": "shape:perf:04652", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 2944, - "rot": 0, - "props": { - "w": 36, - "h": 37, - "fill": "hsl(243 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04653": { - "id": "shape:perf:04653", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 2944, - "rot": 0, - "props": { - "w": 44, - "h": 47, - "fill": "hsl(94 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04654": { - "id": "shape:perf:04654", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 2944, - "rot": 0, - "props": { - "w": 29, - "h": 27, - "fill": "hsl(191 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04655": { - "id": "shape:perf:04655", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 2944, - "rot": 0, - "props": { - "w": 24, - "h": 43, - "fill": "hsl(328 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04656": { - "id": "shape:perf:04656", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 2944, - "rot": 0, - "props": { - "w": 30, - "h": 35, - "fill": "hsl(83 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04657": { - "id": "shape:perf:04657", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 2944, - "rot": 0, - "props": { - "w": 36, - "h": 43, - "fill": "hsl(266 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04658": { - "id": "shape:perf:04658", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 2944, - "rot": 0, - "props": { - "w": 25, - "h": 28, - "fill": "hsl(336 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04659": { - "id": "shape:perf:04659", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 2944, - "rot": 0, - "props": { - "w": 33, - "h": 24, - "fill": "hsl(314 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04660": { - "id": "shape:perf:04660", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 2944, - "rot": 0, - "props": { - "w": 36, - "h": 36, - "fill": "hsl(124 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04661": { - "id": "shape:perf:04661", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 2944, - "rot": 0, - "props": { - "w": 46, - "h": 46, - "fill": "hsl(67 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04662": { - "id": "shape:perf:04662", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 2944, - "rot": 0, - "props": { - "w": 25, - "h": 25, - "fill": "hsl(72 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04663": { - "id": "shape:perf:04663", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 2944, - "rot": 0, - "props": { - "w": 29, - "h": 32, - "fill": "hsl(176 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04664": { - "id": "shape:perf:04664", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 2944, - "rot": 0, - "props": { - "w": 37, - "h": 33, - "fill": "hsl(79 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04665": { - "id": "shape:perf:04665", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 2944, - "rot": 0, - "props": { - "w": 25, - "h": 42, - "fill": "hsl(154 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04666": { - "id": "shape:perf:04666", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 2944, - "rot": 0, - "props": { - "w": 30, - "h": 32, - "fill": "hsl(350 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04667": { - "id": "shape:perf:04667", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 2944, - "rot": 0, - "props": { - "w": 42, - "h": 46, - "fill": "hsl(137 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04668": { - "id": "shape:perf:04668", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 2944, - "rot": 0, - "props": { - "w": 41, - "h": 36, - "fill": "hsl(327 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04669": { - "id": "shape:perf:04669", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 2944, - "rot": 0, - "props": { - "w": 46, - "h": 41, - "fill": "hsl(266 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04670": { - "id": "shape:perf:04670", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 2944, - "rot": 0, - "props": { - "w": 33, - "h": 34, - "fill": "hsl(272 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04671": { - "id": "shape:perf:04671", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 2944, - "rot": 0, - "props": { - "w": 29, - "h": 32, - "fill": "hsl(334 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04672": { - "id": "shape:perf:04672", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 2944, - "rot": 0, - "props": { - "w": 25, - "h": 30, - "fill": "hsl(105 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04673": { - "id": "shape:perf:04673", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 2944, - "rot": 0, - "props": { - "w": 29, - "h": 40, - "fill": "hsl(87 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04674": { - "id": "shape:perf:04674", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 2944, - "rot": 0, - "props": { - "w": 35, - "h": 45, - "fill": "hsl(233 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04675": { - "id": "shape:perf:04675", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 2944, - "rot": 0, - "props": { - "w": 36, - "h": 37, - "fill": "hsl(299 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04676": { - "id": "shape:perf:04676", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 2944, - "rot": 0, - "props": { - "w": 35, - "h": 38, - "fill": "hsl(90 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04677": { - "id": "shape:perf:04677", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 2944, - "rot": 0, - "props": { - "w": 46, - "h": 44, - "fill": "hsl(296 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04678": { - "id": "shape:perf:04678", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 2944, - "rot": 0, - "props": { - "w": 44, - "h": 28, - "fill": "hsl(6 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04679": { - "id": "shape:perf:04679", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 2944, - "rot": 0, - "props": { - "w": 34, - "h": 46, - "fill": "hsl(151 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04680": { - "id": "shape:perf:04680", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 2944, - "rot": 0, - "props": { - "w": 47, - "h": 34, - "fill": "hsl(334 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04681": { - "id": "shape:perf:04681", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 2944, - "rot": 0, - "props": { - "w": 42, - "h": 40, - "fill": "hsl(199 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04682": { - "id": "shape:perf:04682", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 2944, - "rot": 0, - "props": { - "w": 25, - "h": 38, - "fill": "hsl(53 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04683": { - "id": "shape:perf:04683", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 2944, - "rot": 0, - "props": { - "w": 41, - "h": 38, - "fill": "hsl(130 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04684": { - "id": "shape:perf:04684", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 2944, - "rot": 0, - "props": { - "w": 38, - "h": 32, - "fill": "hsl(50 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04685": { - "id": "shape:perf:04685", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 2944, - "rot": 0, - "props": { - "w": 42, - "h": 30, - "fill": "hsl(350 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04686": { - "id": "shape:perf:04686", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 2944, - "rot": 0, - "props": { - "w": 43, - "h": 25, - "fill": "hsl(37 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04687": { - "id": "shape:perf:04687", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 2944, - "rot": 0, - "props": { - "w": 35, - "h": 31, - "fill": "hsl(252 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04688": { - "id": "shape:perf:04688", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 2944, - "rot": 0, - "props": { - "w": 32, - "h": 40, - "fill": "hsl(127 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04689": { - "id": "shape:perf:04689", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 2944, - "rot": 0, - "props": { - "w": 47, - "h": 35, - "fill": "hsl(271 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04690": { - "id": "shape:perf:04690", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 2944, - "rot": 0, - "props": { - "w": 41, - "h": 25, - "fill": "hsl(90 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04691": { - "id": "shape:perf:04691", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 2944, - "rot": 0, - "props": { - "w": 33, - "h": 33, - "fill": "hsl(145 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04692": { - "id": "shape:perf:04692", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 2944, - "rot": 0, - "props": { - "w": 46, - "h": 28, - "fill": "hsl(280 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04693": { - "id": "shape:perf:04693", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 2944, - "rot": 0, - "props": { - "w": 25, - "h": 38, - "fill": "hsl(192 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04694": { - "id": "shape:perf:04694", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 2944, - "rot": 0, - "props": { - "w": 43, - "h": 42, - "fill": "hsl(83 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04695": { - "id": "shape:perf:04695", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 2944, - "rot": 0, - "props": { - "w": 43, - "h": 24, - "fill": "hsl(295 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04696": { - "id": "shape:perf:04696", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 2944, - "rot": 0, - "props": { - "w": 27, - "h": 45, - "fill": "hsl(177 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04697": { - "id": "shape:perf:04697", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 2944, - "rot": 0, - "props": { - "w": 44, - "h": 25, - "fill": "hsl(356 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04698": { - "id": "shape:perf:04698", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 2944, - "rot": 0, - "props": { - "w": 28, - "h": 29, - "fill": "hsl(108 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04699": { - "id": "shape:perf:04699", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 2944, - "rot": 0, - "props": { - "w": 40, - "h": 29, - "fill": "hsl(266 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04700": { - "id": "shape:perf:04700", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 3008, - "rot": 0, - "props": { - "w": 32, - "h": 30, - "fill": "hsl(236 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04701": { - "id": "shape:perf:04701", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 3008, - "rot": 0, - "props": { - "w": 35, - "h": 24, - "fill": "hsl(154 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04702": { - "id": "shape:perf:04702", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 3008, - "rot": 0, - "props": { - "w": 35, - "h": 33, - "fill": "hsl(122 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04703": { - "id": "shape:perf:04703", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 3008, - "rot": 0, - "props": { - "w": 43, - "h": 26, - "fill": "hsl(350 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04704": { - "id": "shape:perf:04704", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 3008, - "rot": 0, - "props": { - "w": 28, - "h": 45, - "fill": "hsl(80 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04705": { - "id": "shape:perf:04705", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 3008, - "rot": 0, - "props": { - "w": 38, - "h": 33, - "fill": "hsl(161 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04706": { - "id": "shape:perf:04706", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 3008, - "rot": 0, - "props": { - "w": 37, - "h": 47, - "fill": "hsl(350 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04707": { - "id": "shape:perf:04707", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 3008, - "rot": 0, - "props": { - "w": 26, - "h": 25, - "fill": "hsl(219 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04708": { - "id": "shape:perf:04708", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 3008, - "rot": 0, - "props": { - "w": 46, - "h": 27, - "fill": "hsl(259 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04709": { - "id": "shape:perf:04709", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 3008, - "rot": 0, - "props": { - "w": 43, - "h": 43, - "fill": "hsl(171 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04710": { - "id": "shape:perf:04710", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 3008, - "rot": 0, - "props": { - "w": 41, - "h": 32, - "fill": "hsl(191 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04711": { - "id": "shape:perf:04711", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 3008, - "rot": 0, - "props": { - "w": 31, - "h": 40, - "fill": "hsl(143 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04712": { - "id": "shape:perf:04712", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 3008, - "rot": 0, - "props": { - "w": 37, - "h": 47, - "fill": "hsl(347 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04713": { - "id": "shape:perf:04713", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 3008, - "rot": 0, - "props": { - "w": 26, - "h": 40, - "fill": "hsl(72 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04714": { - "id": "shape:perf:04714", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 3008, - "rot": 0, - "props": { - "w": 41, - "h": 40, - "fill": "hsl(317 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04715": { - "id": "shape:perf:04715", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 3008, - "rot": 0, - "props": { - "w": 31, - "h": 37, - "fill": "hsl(324 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04716": { - "id": "shape:perf:04716", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 3008, - "rot": 0, - "props": { - "w": 37, - "h": 36, - "fill": "hsl(309 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04717": { - "id": "shape:perf:04717", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 3008, - "rot": 0, - "props": { - "w": 32, - "h": 26, - "fill": "hsl(93 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04718": { - "id": "shape:perf:04718", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 3008, - "rot": 0, - "props": { - "w": 46, - "h": 29, - "fill": "hsl(112 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04719": { - "id": "shape:perf:04719", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 3008, - "rot": 0, - "props": { - "w": 46, - "h": 25, - "fill": "hsl(124 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04720": { - "id": "shape:perf:04720", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 3008, - "rot": 0, - "props": { - "w": 33, - "h": 46, - "fill": "hsl(202 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04721": { - "id": "shape:perf:04721", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 3008, - "rot": 0, - "props": { - "w": 37, - "h": 35, - "fill": "hsl(223 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04722": { - "id": "shape:perf:04722", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 3008, - "rot": 0, - "props": { - "w": 37, - "h": 40, - "fill": "hsl(352 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04723": { - "id": "shape:perf:04723", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 3008, - "rot": 0, - "props": { - "w": 31, - "h": 34, - "fill": "hsl(135 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04724": { - "id": "shape:perf:04724", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 3008, - "rot": 0, - "props": { - "w": 44, - "h": 26, - "fill": "hsl(253 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04725": { - "id": "shape:perf:04725", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 3008, - "rot": 0, - "props": { - "w": 27, - "h": 26, - "fill": "hsl(211 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04726": { - "id": "shape:perf:04726", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 3008, - "rot": 0, - "props": { - "w": 25, - "h": 39, - "fill": "hsl(237 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04727": { - "id": "shape:perf:04727", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 3008, - "rot": 0, - "props": { - "w": 45, - "h": 42, - "fill": "hsl(29 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04728": { - "id": "shape:perf:04728", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 3008, - "rot": 0, - "props": { - "w": 44, - "h": 42, - "fill": "hsl(172 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04729": { - "id": "shape:perf:04729", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 3008, - "rot": 0, - "props": { - "w": 45, - "h": 45, - "fill": "hsl(127 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04730": { - "id": "shape:perf:04730", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 3008, - "rot": 0, - "props": { - "w": 36, - "h": 32, - "fill": "hsl(275 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04731": { - "id": "shape:perf:04731", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 3008, - "rot": 0, - "props": { - "w": 29, - "h": 46, - "fill": "hsl(356 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04732": { - "id": "shape:perf:04732", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 3008, - "rot": 0, - "props": { - "w": 29, - "h": 37, - "fill": "hsl(259 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04733": { - "id": "shape:perf:04733", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 3008, - "rot": 0, - "props": { - "w": 33, - "h": 28, - "fill": "hsl(176 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04734": { - "id": "shape:perf:04734", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 3008, - "rot": 0, - "props": { - "w": 35, - "h": 32, - "fill": "hsl(320 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04735": { - "id": "shape:perf:04735", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 3008, - "rot": 0, - "props": { - "w": 30, - "h": 27, - "fill": "hsl(354 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04736": { - "id": "shape:perf:04736", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 3008, - "rot": 0, - "props": { - "w": 36, - "h": 41, - "fill": "hsl(117 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04737": { - "id": "shape:perf:04737", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 3008, - "rot": 0, - "props": { - "w": 38, - "h": 30, - "fill": "hsl(308 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04738": { - "id": "shape:perf:04738", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 3008, - "rot": 0, - "props": { - "w": 43, - "h": 36, - "fill": "hsl(117 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04739": { - "id": "shape:perf:04739", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 3008, - "rot": 0, - "props": { - "w": 42, - "h": 24, - "fill": "hsl(86 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04740": { - "id": "shape:perf:04740", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 3008, - "rot": 0, - "props": { - "w": 35, - "h": 34, - "fill": "hsl(231 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04741": { - "id": "shape:perf:04741", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 3008, - "rot": 0, - "props": { - "w": 25, - "h": 25, - "fill": "hsl(281 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04742": { - "id": "shape:perf:04742", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 3008, - "rot": 0, - "props": { - "w": 35, - "h": 28, - "fill": "hsl(123 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04743": { - "id": "shape:perf:04743", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 3008, - "rot": 0, - "props": { - "w": 47, - "h": 30, - "fill": "hsl(247 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04744": { - "id": "shape:perf:04744", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 3008, - "rot": 0, - "props": { - "w": 47, - "h": 30, - "fill": "hsl(242 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04745": { - "id": "shape:perf:04745", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 3008, - "rot": 0, - "props": { - "w": 37, - "h": 43, - "fill": "hsl(181 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04746": { - "id": "shape:perf:04746", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 3008, - "rot": 0, - "props": { - "w": 34, - "h": 35, - "fill": "hsl(59 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04747": { - "id": "shape:perf:04747", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 3008, - "rot": 0, - "props": { - "w": 25, - "h": 35, - "fill": "hsl(216 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04748": { - "id": "shape:perf:04748", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 3008, - "rot": 0, - "props": { - "w": 37, - "h": 30, - "fill": "hsl(72 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04749": { - "id": "shape:perf:04749", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 3008, - "rot": 0, - "props": { - "w": 28, - "h": 33, - "fill": "hsl(75 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04750": { - "id": "shape:perf:04750", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 3008, - "rot": 0, - "props": { - "w": 43, - "h": 31, - "fill": "hsl(321 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04751": { - "id": "shape:perf:04751", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 3008, - "rot": 0, - "props": { - "w": 29, - "h": 26, - "fill": "hsl(104 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04752": { - "id": "shape:perf:04752", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 3008, - "rot": 0, - "props": { - "w": 42, - "h": 30, - "fill": "hsl(72 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04753": { - "id": "shape:perf:04753", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 3008, - "rot": 0, - "props": { - "w": 37, - "h": 25, - "fill": "hsl(83 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04754": { - "id": "shape:perf:04754", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 3008, - "rot": 0, - "props": { - "w": 26, - "h": 43, - "fill": "hsl(315 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04755": { - "id": "shape:perf:04755", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 3008, - "rot": 0, - "props": { - "w": 30, - "h": 36, - "fill": "hsl(7 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04756": { - "id": "shape:perf:04756", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 3008, - "rot": 0, - "props": { - "w": 43, - "h": 38, - "fill": "hsl(58 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04757": { - "id": "shape:perf:04757", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 3008, - "rot": 0, - "props": { - "w": 35, - "h": 33, - "fill": "hsl(46 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04758": { - "id": "shape:perf:04758", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 3008, - "rot": 0, - "props": { - "w": 24, - "h": 28, - "fill": "hsl(86 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04759": { - "id": "shape:perf:04759", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 3008, - "rot": 0, - "props": { - "w": 36, - "h": 45, - "fill": "hsl(225 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04760": { - "id": "shape:perf:04760", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 3008, - "rot": 0, - "props": { - "w": 44, - "h": 42, - "fill": "hsl(50 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04761": { - "id": "shape:perf:04761", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 3008, - "rot": 0, - "props": { - "w": 35, - "h": 26, - "fill": "hsl(282 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04762": { - "id": "shape:perf:04762", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 3008, - "rot": 0, - "props": { - "w": 44, - "h": 35, - "fill": "hsl(211 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04763": { - "id": "shape:perf:04763", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 3008, - "rot": 0, - "props": { - "w": 38, - "h": 40, - "fill": "hsl(165 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04764": { - "id": "shape:perf:04764", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 3008, - "rot": 0, - "props": { - "w": 26, - "h": 28, - "fill": "hsl(250 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04765": { - "id": "shape:perf:04765", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 3008, - "rot": 0, - "props": { - "w": 30, - "h": 32, - "fill": "hsl(275 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04766": { - "id": "shape:perf:04766", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 3008, - "rot": 0, - "props": { - "w": 34, - "h": 25, - "fill": "hsl(17 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04767": { - "id": "shape:perf:04767", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 3008, - "rot": 0, - "props": { - "w": 32, - "h": 25, - "fill": "hsl(216 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04768": { - "id": "shape:perf:04768", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 3008, - "rot": 0, - "props": { - "w": 46, - "h": 42, - "fill": "hsl(16 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04769": { - "id": "shape:perf:04769", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 3008, - "rot": 0, - "props": { - "w": 45, - "h": 38, - "fill": "hsl(176 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04770": { - "id": "shape:perf:04770", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 3008, - "rot": 0, - "props": { - "w": 37, - "h": 39, - "fill": "hsl(91 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04771": { - "id": "shape:perf:04771", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 3008, - "rot": 0, - "props": { - "w": 46, - "h": 27, - "fill": "hsl(187 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04772": { - "id": "shape:perf:04772", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 3008, - "rot": 0, - "props": { - "w": 25, - "h": 28, - "fill": "hsl(14 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04773": { - "id": "shape:perf:04773", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 3008, - "rot": 0, - "props": { - "w": 42, - "h": 39, - "fill": "hsl(13 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04774": { - "id": "shape:perf:04774", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 3008, - "rot": 0, - "props": { - "w": 46, - "h": 25, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04775": { - "id": "shape:perf:04775", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 3008, - "rot": 0, - "props": { - "w": 29, - "h": 31, - "fill": "hsl(210 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04776": { - "id": "shape:perf:04776", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 3008, - "rot": 0, - "props": { - "w": 39, - "h": 44, - "fill": "hsl(309 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04777": { - "id": "shape:perf:04777", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 3008, - "rot": 0, - "props": { - "w": 33, - "h": 44, - "fill": "hsl(217 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04778": { - "id": "shape:perf:04778", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 3008, - "rot": 0, - "props": { - "w": 28, - "h": 47, - "fill": "hsl(271 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04779": { - "id": "shape:perf:04779", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 3008, - "rot": 0, - "props": { - "w": 26, - "h": 46, - "fill": "hsl(40 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04780": { - "id": "shape:perf:04780", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 3008, - "rot": 0, - "props": { - "w": 37, - "h": 37, - "fill": "hsl(172 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04781": { - "id": "shape:perf:04781", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 3008, - "rot": 0, - "props": { - "w": 28, - "h": 24, - "fill": "hsl(335 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04782": { - "id": "shape:perf:04782", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 3008, - "rot": 0, - "props": { - "w": 46, - "h": 39, - "fill": "hsl(326 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04783": { - "id": "shape:perf:04783", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 3008, - "rot": 0, - "props": { - "w": 35, - "h": 47, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04784": { - "id": "shape:perf:04784", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 3008, - "rot": 0, - "props": { - "w": 33, - "h": 25, - "fill": "hsl(114 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04785": { - "id": "shape:perf:04785", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 3008, - "rot": 0, - "props": { - "w": 34, - "h": 29, - "fill": "hsl(85 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04786": { - "id": "shape:perf:04786", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 3008, - "rot": 0, - "props": { - "w": 45, - "h": 36, - "fill": "hsl(279 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04787": { - "id": "shape:perf:04787", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 3008, - "rot": 0, - "props": { - "w": 34, - "h": 27, - "fill": "hsl(73 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04788": { - "id": "shape:perf:04788", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 3008, - "rot": 0, - "props": { - "w": 39, - "h": 29, - "fill": "hsl(233 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04789": { - "id": "shape:perf:04789", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 3008, - "rot": 0, - "props": { - "w": 33, - "h": 28, - "fill": "hsl(163 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04790": { - "id": "shape:perf:04790", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 3008, - "rot": 0, - "props": { - "w": 39, - "h": 27, - "fill": "hsl(200 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04791": { - "id": "shape:perf:04791", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 3008, - "rot": 0, - "props": { - "w": 38, - "h": 41, - "fill": "hsl(73 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04792": { - "id": "shape:perf:04792", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 3008, - "rot": 0, - "props": { - "w": 32, - "h": 41, - "fill": "hsl(228 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04793": { - "id": "shape:perf:04793", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 3008, - "rot": 0, - "props": { - "w": 35, - "h": 43, - "fill": "hsl(294 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04794": { - "id": "shape:perf:04794", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 3008, - "rot": 0, - "props": { - "w": 27, - "h": 28, - "fill": "hsl(199 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04795": { - "id": "shape:perf:04795", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 3008, - "rot": 0, - "props": { - "w": 33, - "h": 42, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04796": { - "id": "shape:perf:04796", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 3008, - "rot": 0, - "props": { - "w": 40, - "h": 40, - "fill": "hsl(46 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04797": { - "id": "shape:perf:04797", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 3008, - "rot": 0, - "props": { - "w": 45, - "h": 40, - "fill": "hsl(43 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04798": { - "id": "shape:perf:04798", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 3008, - "rot": 0, - "props": { - "w": 38, - "h": 47, - "fill": "hsl(286 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04799": { - "id": "shape:perf:04799", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 3008, - "rot": 0, - "props": { - "w": 24, - "h": 44, - "fill": "hsl(129 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04800": { - "id": "shape:perf:04800", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 3072, - "rot": 0, - "props": { - "w": 46, - "h": 35, - "fill": "hsl(190 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04801": { - "id": "shape:perf:04801", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 3072, - "rot": 0, - "props": { - "w": 27, - "h": 38, - "fill": "hsl(47 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04802": { - "id": "shape:perf:04802", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 3072, - "rot": 0, - "props": { - "w": 26, - "h": 46, - "fill": "hsl(138 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04803": { - "id": "shape:perf:04803", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 3072, - "rot": 0, - "props": { - "w": 26, - "h": 30, - "fill": "hsl(320 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04804": { - "id": "shape:perf:04804", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 3072, - "rot": 0, - "props": { - "w": 47, - "h": 31, - "fill": "hsl(137 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04805": { - "id": "shape:perf:04805", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 3072, - "rot": 0, - "props": { - "w": 43, - "h": 29, - "fill": "hsl(15 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04806": { - "id": "shape:perf:04806", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 3072, - "rot": 0, - "props": { - "w": 38, - "h": 34, - "fill": "hsl(128 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04807": { - "id": "shape:perf:04807", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 3072, - "rot": 0, - "props": { - "w": 35, - "h": 31, - "fill": "hsl(281 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04808": { - "id": "shape:perf:04808", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 3072, - "rot": 0, - "props": { - "w": 26, - "h": 30, - "fill": "hsl(192 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04809": { - "id": "shape:perf:04809", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 3072, - "rot": 0, - "props": { - "w": 38, - "h": 45, - "fill": "hsl(332 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04810": { - "id": "shape:perf:04810", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 3072, - "rot": 0, - "props": { - "w": 34, - "h": 47, - "fill": "hsl(351 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04811": { - "id": "shape:perf:04811", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 3072, - "rot": 0, - "props": { - "w": 25, - "h": 33, - "fill": "hsl(79 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04812": { - "id": "shape:perf:04812", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 3072, - "rot": 0, - "props": { - "w": 33, - "h": 24, - "fill": "hsl(349 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04813": { - "id": "shape:perf:04813", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 3072, - "rot": 0, - "props": { - "w": 40, - "h": 46, - "fill": "hsl(196 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04814": { - "id": "shape:perf:04814", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 3072, - "rot": 0, - "props": { - "w": 44, - "h": 31, - "fill": "hsl(267 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04815": { - "id": "shape:perf:04815", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 3072, - "rot": 0, - "props": { - "w": 25, - "h": 37, - "fill": "hsl(113 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04816": { - "id": "shape:perf:04816", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 3072, - "rot": 0, - "props": { - "w": 43, - "h": 31, - "fill": "hsl(238 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04817": { - "id": "shape:perf:04817", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 3072, - "rot": 0, - "props": { - "w": 41, - "h": 44, - "fill": "hsl(21 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04818": { - "id": "shape:perf:04818", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 3072, - "rot": 0, - "props": { - "w": 36, - "h": 30, - "fill": "hsl(214 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04819": { - "id": "shape:perf:04819", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 3072, - "rot": 0, - "props": { - "w": 25, - "h": 26, - "fill": "hsl(157 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04820": { - "id": "shape:perf:04820", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 3072, - "rot": 0, - "props": { - "w": 37, - "h": 43, - "fill": "hsl(38 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04821": { - "id": "shape:perf:04821", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 3072, - "rot": 0, - "props": { - "w": 46, - "h": 39, - "fill": "hsl(134 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04822": { - "id": "shape:perf:04822", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 3072, - "rot": 0, - "props": { - "w": 36, - "h": 31, - "fill": "hsl(5 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04823": { - "id": "shape:perf:04823", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 3072, - "rot": 0, - "props": { - "w": 42, - "h": 36, - "fill": "hsl(342 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04824": { - "id": "shape:perf:04824", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 3072, - "rot": 0, - "props": { - "w": 42, - "h": 33, - "fill": "hsl(117 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04825": { - "id": "shape:perf:04825", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 3072, - "rot": 0, - "props": { - "w": 34, - "h": 36, - "fill": "hsl(90 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04826": { - "id": "shape:perf:04826", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 3072, - "rot": 0, - "props": { - "w": 44, - "h": 25, - "fill": "hsl(14 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04827": { - "id": "shape:perf:04827", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 3072, - "rot": 0, - "props": { - "w": 41, - "h": 27, - "fill": "hsl(23 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04828": { - "id": "shape:perf:04828", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 3072, - "rot": 0, - "props": { - "w": 34, - "h": 34, - "fill": "hsl(184 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04829": { - "id": "shape:perf:04829", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 3072, - "rot": 0, - "props": { - "w": 39, - "h": 36, - "fill": "hsl(155 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04830": { - "id": "shape:perf:04830", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 3072, - "rot": 0, - "props": { - "w": 36, - "h": 27, - "fill": "hsl(155 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04831": { - "id": "shape:perf:04831", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 3072, - "rot": 0, - "props": { - "w": 37, - "h": 46, - "fill": "hsl(243 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04832": { - "id": "shape:perf:04832", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 3072, - "rot": 0, - "props": { - "w": 37, - "h": 43, - "fill": "hsl(225 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04833": { - "id": "shape:perf:04833", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 3072, - "rot": 0, - "props": { - "w": 30, - "h": 31, - "fill": "hsl(120 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04834": { - "id": "shape:perf:04834", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 3072, - "rot": 0, - "props": { - "w": 39, - "h": 31, - "fill": "hsl(152 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04835": { - "id": "shape:perf:04835", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 3072, - "rot": 0, - "props": { - "w": 39, - "h": 37, - "fill": "hsl(155 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04836": { - "id": "shape:perf:04836", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 3072, - "rot": 0, - "props": { - "w": 43, - "h": 24, - "fill": "hsl(212 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04837": { - "id": "shape:perf:04837", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 3072, - "rot": 0, - "props": { - "w": 24, - "h": 24, - "fill": "hsl(41 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04838": { - "id": "shape:perf:04838", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 3072, - "rot": 0, - "props": { - "w": 42, - "h": 25, - "fill": "hsl(316 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04839": { - "id": "shape:perf:04839", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 3072, - "rot": 0, - "props": { - "w": 24, - "h": 41, - "fill": "hsl(131 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04840": { - "id": "shape:perf:04840", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 3072, - "rot": 0, - "props": { - "w": 25, - "h": 25, - "fill": "hsl(329 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04841": { - "id": "shape:perf:04841", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 3072, - "rot": 0, - "props": { - "w": 42, - "h": 31, - "fill": "hsl(50 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04842": { - "id": "shape:perf:04842", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 3072, - "rot": 0, - "props": { - "w": 25, - "h": 28, - "fill": "hsl(268 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04843": { - "id": "shape:perf:04843", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 3072, - "rot": 0, - "props": { - "w": 26, - "h": 45, - "fill": "hsl(307 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04844": { - "id": "shape:perf:04844", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 3072, - "rot": 0, - "props": { - "w": 38, - "h": 28, - "fill": "hsl(321 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04845": { - "id": "shape:perf:04845", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 3072, - "rot": 0, - "props": { - "w": 35, - "h": 30, - "fill": "hsl(67 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04846": { - "id": "shape:perf:04846", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 3072, - "rot": 0, - "props": { - "w": 34, - "h": 43, - "fill": "hsl(42 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04847": { - "id": "shape:perf:04847", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 3072, - "rot": 0, - "props": { - "w": 38, - "h": 31, - "fill": "hsl(267 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04848": { - "id": "shape:perf:04848", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 3072, - "rot": 0, - "props": { - "w": 25, - "h": 36, - "fill": "hsl(247 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04849": { - "id": "shape:perf:04849", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 3072, - "rot": 0, - "props": { - "w": 26, - "h": 38, - "fill": "hsl(317 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04850": { - "id": "shape:perf:04850", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 3072, - "rot": 0, - "props": { - "w": 33, - "h": 47, - "fill": "hsl(117 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04851": { - "id": "shape:perf:04851", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 3072, - "rot": 0, - "props": { - "w": 32, - "h": 32, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04852": { - "id": "shape:perf:04852", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 3072, - "rot": 0, - "props": { - "w": 25, - "h": 35, - "fill": "hsl(338 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04853": { - "id": "shape:perf:04853", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 3072, - "rot": 0, - "props": { - "w": 27, - "h": 35, - "fill": "hsl(77 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04854": { - "id": "shape:perf:04854", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 3072, - "rot": 0, - "props": { - "w": 47, - "h": 40, - "fill": "hsl(306 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04855": { - "id": "shape:perf:04855", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 3072, - "rot": 0, - "props": { - "w": 33, - "h": 36, - "fill": "hsl(142 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04856": { - "id": "shape:perf:04856", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 3072, - "rot": 0, - "props": { - "w": 35, - "h": 37, - "fill": "hsl(281 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04857": { - "id": "shape:perf:04857", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 3072, - "rot": 0, - "props": { - "w": 36, - "h": 26, - "fill": "hsl(52 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04858": { - "id": "shape:perf:04858", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 3072, - "rot": 0, - "props": { - "w": 43, - "h": 35, - "fill": "hsl(359 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04859": { - "id": "shape:perf:04859", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 3072, - "rot": 0, - "props": { - "w": 31, - "h": 36, - "fill": "hsl(199 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04860": { - "id": "shape:perf:04860", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 3072, - "rot": 0, - "props": { - "w": 37, - "h": 36, - "fill": "hsl(109 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04861": { - "id": "shape:perf:04861", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 3072, - "rot": 0, - "props": { - "w": 27, - "h": 27, - "fill": "hsl(214 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04862": { - "id": "shape:perf:04862", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 3072, - "rot": 0, - "props": { - "w": 44, - "h": 30, - "fill": "hsl(211 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04863": { - "id": "shape:perf:04863", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 3072, - "rot": 0, - "props": { - "w": 35, - "h": 27, - "fill": "hsl(312 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04864": { - "id": "shape:perf:04864", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 3072, - "rot": 0, - "props": { - "w": 34, - "h": 31, - "fill": "hsl(323 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04865": { - "id": "shape:perf:04865", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 3072, - "rot": 0, - "props": { - "w": 30, - "h": 36, - "fill": "hsl(151 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04866": { - "id": "shape:perf:04866", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 3072, - "rot": 0, - "props": { - "w": 35, - "h": 25, - "fill": "hsl(53 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04867": { - "id": "shape:perf:04867", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 3072, - "rot": 0, - "props": { - "w": 27, - "h": 31, - "fill": "hsl(310 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04868": { - "id": "shape:perf:04868", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 3072, - "rot": 0, - "props": { - "w": 36, - "h": 45, - "fill": "hsl(15 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04869": { - "id": "shape:perf:04869", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 3072, - "rot": 0, - "props": { - "w": 26, - "h": 43, - "fill": "hsl(34 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04870": { - "id": "shape:perf:04870", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 3072, - "rot": 0, - "props": { - "w": 30, - "h": 39, - "fill": "hsl(119 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04871": { - "id": "shape:perf:04871", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 3072, - "rot": 0, - "props": { - "w": 45, - "h": 25, - "fill": "hsl(290 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04872": { - "id": "shape:perf:04872", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 3072, - "rot": 0, - "props": { - "w": 28, - "h": 41, - "fill": "hsl(150 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04873": { - "id": "shape:perf:04873", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 3072, - "rot": 0, - "props": { - "w": 28, - "h": 45, - "fill": "hsl(72 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04874": { - "id": "shape:perf:04874", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 3072, - "rot": 0, - "props": { - "w": 35, - "h": 30, - "fill": "hsl(199 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04875": { - "id": "shape:perf:04875", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 3072, - "rot": 0, - "props": { - "w": 46, - "h": 29, - "fill": "hsl(29 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04876": { - "id": "shape:perf:04876", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 3072, - "rot": 0, - "props": { - "w": 41, - "h": 31, - "fill": "hsl(155 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04877": { - "id": "shape:perf:04877", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 3072, - "rot": 0, - "props": { - "w": 39, - "h": 26, - "fill": "hsl(2 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04878": { - "id": "shape:perf:04878", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 3072, - "rot": 0, - "props": { - "w": 41, - "h": 36, - "fill": "hsl(28 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04879": { - "id": "shape:perf:04879", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 3072, - "rot": 0, - "props": { - "w": 24, - "h": 27, - "fill": "hsl(56 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04880": { - "id": "shape:perf:04880", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 3072, - "rot": 0, - "props": { - "w": 45, - "h": 41, - "fill": "hsl(197 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04881": { - "id": "shape:perf:04881", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 3072, - "rot": 0, - "props": { - "w": 34, - "h": 47, - "fill": "hsl(235 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04882": { - "id": "shape:perf:04882", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 3072, - "rot": 0, - "props": { - "w": 46, - "h": 45, - "fill": "hsl(15 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04883": { - "id": "shape:perf:04883", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 3072, - "rot": 0, - "props": { - "w": 37, - "h": 47, - "fill": "hsl(107 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04884": { - "id": "shape:perf:04884", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 3072, - "rot": 0, - "props": { - "w": 25, - "h": 37, - "fill": "hsl(0 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04885": { - "id": "shape:perf:04885", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 3072, - "rot": 0, - "props": { - "w": 46, - "h": 27, - "fill": "hsl(297 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04886": { - "id": "shape:perf:04886", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 3072, - "rot": 0, - "props": { - "w": 47, - "h": 32, - "fill": "hsl(48 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04887": { - "id": "shape:perf:04887", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 3072, - "rot": 0, - "props": { - "w": 39, - "h": 43, - "fill": "hsl(163 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04888": { - "id": "shape:perf:04888", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 3072, - "rot": 0, - "props": { - "w": 24, - "h": 25, - "fill": "hsl(276 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04889": { - "id": "shape:perf:04889", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 3072, - "rot": 0, - "props": { - "w": 38, - "h": 41, - "fill": "hsl(299 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04890": { - "id": "shape:perf:04890", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 3072, - "rot": 0, - "props": { - "w": 34, - "h": 42, - "fill": "hsl(343 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04891": { - "id": "shape:perf:04891", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 3072, - "rot": 0, - "props": { - "w": 31, - "h": 29, - "fill": "hsl(351 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04892": { - "id": "shape:perf:04892", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 3072, - "rot": 0, - "props": { - "w": 30, - "h": 43, - "fill": "hsl(324 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04893": { - "id": "shape:perf:04893", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 3072, - "rot": 0, - "props": { - "w": 36, - "h": 24, - "fill": "hsl(186 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04894": { - "id": "shape:perf:04894", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 3072, - "rot": 0, - "props": { - "w": 34, - "h": 39, - "fill": "hsl(82 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04895": { - "id": "shape:perf:04895", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 3072, - "rot": 0, - "props": { - "w": 38, - "h": 44, - "fill": "hsl(49 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04896": { - "id": "shape:perf:04896", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 3072, - "rot": 0, - "props": { - "w": 42, - "h": 47, - "fill": "hsl(214 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04897": { - "id": "shape:perf:04897", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 3072, - "rot": 0, - "props": { - "w": 32, - "h": 47, - "fill": "hsl(168 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04898": { - "id": "shape:perf:04898", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 3072, - "rot": 0, - "props": { - "w": 39, - "h": 46, - "fill": "hsl(152 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04899": { - "id": "shape:perf:04899", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 3072, - "rot": 0, - "props": { - "w": 47, - "h": 47, - "fill": "hsl(197 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04900": { - "id": "shape:perf:04900", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 3136, - "rot": 0, - "props": { - "w": 32, - "h": 37, - "fill": "hsl(205 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04901": { - "id": "shape:perf:04901", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 3136, - "rot": 0, - "props": { - "w": 41, - "h": 24, - "fill": "hsl(118 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04902": { - "id": "shape:perf:04902", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 3136, - "rot": 0, - "props": { - "w": 43, - "h": 27, - "fill": "hsl(161 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04903": { - "id": "shape:perf:04903", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 3136, - "rot": 0, - "props": { - "w": 45, - "h": 39, - "fill": "hsl(347 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04904": { - "id": "shape:perf:04904", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 3136, - "rot": 0, - "props": { - "w": 31, - "h": 46, - "fill": "hsl(238 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04905": { - "id": "shape:perf:04905", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 3136, - "rot": 0, - "props": { - "w": 39, - "h": 39, - "fill": "hsl(115 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04906": { - "id": "shape:perf:04906", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 3136, - "rot": 0, - "props": { - "w": 36, - "h": 40, - "fill": "hsl(167 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04907": { - "id": "shape:perf:04907", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 3136, - "rot": 0, - "props": { - "w": 41, - "h": 46, - "fill": "hsl(40 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04908": { - "id": "shape:perf:04908", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 3136, - "rot": 0, - "props": { - "w": 24, - "h": 32, - "fill": "hsl(256 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04909": { - "id": "shape:perf:04909", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 3136, - "rot": 0, - "props": { - "w": 40, - "h": 40, - "fill": "hsl(61 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04910": { - "id": "shape:perf:04910", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 3136, - "rot": 0, - "props": { - "w": 47, - "h": 30, - "fill": "hsl(0 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04911": { - "id": "shape:perf:04911", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 3136, - "rot": 0, - "props": { - "w": 35, - "h": 30, - "fill": "hsl(165 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04912": { - "id": "shape:perf:04912", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 3136, - "rot": 0, - "props": { - "w": 35, - "h": 33, - "fill": "hsl(37 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04913": { - "id": "shape:perf:04913", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 3136, - "rot": 0, - "props": { - "w": 41, - "h": 32, - "fill": "hsl(34 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04914": { - "id": "shape:perf:04914", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 3136, - "rot": 0, - "props": { - "w": 36, - "h": 39, - "fill": "hsl(320 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04915": { - "id": "shape:perf:04915", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 3136, - "rot": 0, - "props": { - "w": 45, - "h": 33, - "fill": "hsl(54 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04916": { - "id": "shape:perf:04916", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 3136, - "rot": 0, - "props": { - "w": 40, - "h": 42, - "fill": "hsl(214 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04917": { - "id": "shape:perf:04917", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 3136, - "rot": 0, - "props": { - "w": 26, - "h": 35, - "fill": "hsl(201 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04918": { - "id": "shape:perf:04918", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 3136, - "rot": 0, - "props": { - "w": 32, - "h": 39, - "fill": "hsl(272 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04919": { - "id": "shape:perf:04919", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 3136, - "rot": 0, - "props": { - "w": 34, - "h": 36, - "fill": "hsl(156 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04920": { - "id": "shape:perf:04920", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 3136, - "rot": 0, - "props": { - "w": 46, - "h": 42, - "fill": "hsl(93 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04921": { - "id": "shape:perf:04921", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 3136, - "rot": 0, - "props": { - "w": 25, - "h": 43, - "fill": "hsl(326 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04922": { - "id": "shape:perf:04922", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 3136, - "rot": 0, - "props": { - "w": 35, - "h": 25, - "fill": "hsl(5 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04923": { - "id": "shape:perf:04923", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 3136, - "rot": 0, - "props": { - "w": 34, - "h": 35, - "fill": "hsl(129 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04924": { - "id": "shape:perf:04924", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 3136, - "rot": 0, - "props": { - "w": 35, - "h": 46, - "fill": "hsl(239 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04925": { - "id": "shape:perf:04925", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 3136, - "rot": 0, - "props": { - "w": 27, - "h": 39, - "fill": "hsl(45 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04926": { - "id": "shape:perf:04926", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 3136, - "rot": 0, - "props": { - "w": 34, - "h": 31, - "fill": "hsl(229 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04927": { - "id": "shape:perf:04927", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 3136, - "rot": 0, - "props": { - "w": 46, - "h": 45, - "fill": "hsl(208 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04928": { - "id": "shape:perf:04928", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 3136, - "rot": 0, - "props": { - "w": 32, - "h": 32, - "fill": "hsl(245 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04929": { - "id": "shape:perf:04929", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 3136, - "rot": 0, - "props": { - "w": 42, - "h": 26, - "fill": "hsl(117 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04930": { - "id": "shape:perf:04930", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 3136, - "rot": 0, - "props": { - "w": 30, - "h": 25, - "fill": "hsl(66 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04931": { - "id": "shape:perf:04931", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 3136, - "rot": 0, - "props": { - "w": 42, - "h": 31, - "fill": "hsl(177 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04932": { - "id": "shape:perf:04932", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 3136, - "rot": 0, - "props": { - "w": 45, - "h": 26, - "fill": "hsl(163 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04933": { - "id": "shape:perf:04933", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 3136, - "rot": 0, - "props": { - "w": 30, - "h": 39, - "fill": "hsl(247 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04934": { - "id": "shape:perf:04934", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 3136, - "rot": 0, - "props": { - "w": 39, - "h": 39, - "fill": "hsl(283 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04935": { - "id": "shape:perf:04935", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 3136, - "rot": 0, - "props": { - "w": 38, - "h": 43, - "fill": "hsl(36 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04936": { - "id": "shape:perf:04936", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 3136, - "rot": 0, - "props": { - "w": 29, - "h": 30, - "fill": "hsl(171 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04937": { - "id": "shape:perf:04937", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 3136, - "rot": 0, - "props": { - "w": 42, - "h": 25, - "fill": "hsl(350 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04938": { - "id": "shape:perf:04938", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 3136, - "rot": 0, - "props": { - "w": 34, - "h": 44, - "fill": "hsl(45 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04939": { - "id": "shape:perf:04939", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 3136, - "rot": 0, - "props": { - "w": 27, - "h": 27, - "fill": "hsl(106 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04940": { - "id": "shape:perf:04940", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 3136, - "rot": 0, - "props": { - "w": 38, - "h": 27, - "fill": "hsl(294 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04941": { - "id": "shape:perf:04941", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 3136, - "rot": 0, - "props": { - "w": 36, - "h": 30, - "fill": "hsl(311 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04942": { - "id": "shape:perf:04942", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 3136, - "rot": 0, - "props": { - "w": 37, - "h": 40, - "fill": "hsl(210 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04943": { - "id": "shape:perf:04943", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 3136, - "rot": 0, - "props": { - "w": 34, - "h": 36, - "fill": "hsl(159 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04944": { - "id": "shape:perf:04944", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 3136, - "rot": 0, - "props": { - "w": 40, - "h": 38, - "fill": "hsl(331 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04945": { - "id": "shape:perf:04945", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 3136, - "rot": 0, - "props": { - "w": 25, - "h": 45, - "fill": "hsl(246 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04946": { - "id": "shape:perf:04946", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 3136, - "rot": 0, - "props": { - "w": 36, - "h": 32, - "fill": "hsl(36 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04947": { - "id": "shape:perf:04947", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 3136, - "rot": 0, - "props": { - "w": 39, - "h": 27, - "fill": "hsl(180 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04948": { - "id": "shape:perf:04948", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 3136, - "rot": 0, - "props": { - "w": 34, - "h": 45, - "fill": "hsl(174 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04949": { - "id": "shape:perf:04949", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 3136, - "rot": 0, - "props": { - "w": 32, - "h": 47, - "fill": "hsl(105 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04950": { - "id": "shape:perf:04950", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 3136, - "rot": 0, - "props": { - "w": 35, - "h": 44, - "fill": "hsl(158 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04951": { - "id": "shape:perf:04951", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 3136, - "rot": 0, - "props": { - "w": 36, - "h": 42, - "fill": "hsl(14 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04952": { - "id": "shape:perf:04952", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 3136, - "rot": 0, - "props": { - "w": 45, - "h": 36, - "fill": "hsl(155 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04953": { - "id": "shape:perf:04953", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 3136, - "rot": 0, - "props": { - "w": 24, - "h": 28, - "fill": "hsl(82 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04954": { - "id": "shape:perf:04954", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 3136, - "rot": 0, - "props": { - "w": 29, - "h": 37, - "fill": "hsl(310 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04955": { - "id": "shape:perf:04955", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 3136, - "rot": 0, - "props": { - "w": 45, - "h": 46, - "fill": "hsl(314 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04956": { - "id": "shape:perf:04956", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 3136, - "rot": 0, - "props": { - "w": 46, - "h": 32, - "fill": "hsl(326 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04957": { - "id": "shape:perf:04957", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 3136, - "rot": 0, - "props": { - "w": 45, - "h": 38, - "fill": "hsl(130 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04958": { - "id": "shape:perf:04958", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 3136, - "rot": 0, - "props": { - "w": 26, - "h": 45, - "fill": "hsl(155 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04959": { - "id": "shape:perf:04959", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 3136, - "rot": 0, - "props": { - "w": 44, - "h": 34, - "fill": "hsl(63 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04960": { - "id": "shape:perf:04960", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 3136, - "rot": 0, - "props": { - "w": 37, - "h": 34, - "fill": "hsl(296 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04961": { - "id": "shape:perf:04961", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 3136, - "rot": 0, - "props": { - "w": 47, - "h": 30, - "fill": "hsl(220 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04962": { - "id": "shape:perf:04962", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 3136, - "rot": 0, - "props": { - "w": 34, - "h": 44, - "fill": "hsl(161 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04963": { - "id": "shape:perf:04963", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 3136, - "rot": 0, - "props": { - "w": 47, - "h": 29, - "fill": "hsl(119 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04964": { - "id": "shape:perf:04964", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 3136, - "rot": 0, - "props": { - "w": 26, - "h": 43, - "fill": "hsl(156 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04965": { - "id": "shape:perf:04965", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 3136, - "rot": 0, - "props": { - "w": 29, - "h": 27, - "fill": "hsl(198 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04966": { - "id": "shape:perf:04966", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 3136, - "rot": 0, - "props": { - "w": 44, - "h": 33, - "fill": "hsl(263 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04967": { - "id": "shape:perf:04967", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 3136, - "rot": 0, - "props": { - "w": 30, - "h": 46, - "fill": "hsl(308 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04968": { - "id": "shape:perf:04968", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 3136, - "rot": 0, - "props": { - "w": 45, - "h": 31, - "fill": "hsl(317 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04969": { - "id": "shape:perf:04969", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 3136, - "rot": 0, - "props": { - "w": 40, - "h": 42, - "fill": "hsl(325 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04970": { - "id": "shape:perf:04970", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 3136, - "rot": 0, - "props": { - "w": 47, - "h": 24, - "fill": "hsl(273 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04971": { - "id": "shape:perf:04971", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 3136, - "rot": 0, - "props": { - "w": 34, - "h": 43, - "fill": "hsl(44 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04972": { - "id": "shape:perf:04972", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 3136, - "rot": 0, - "props": { - "w": 34, - "h": 27, - "fill": "hsl(284 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04973": { - "id": "shape:perf:04973", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 3136, - "rot": 0, - "props": { - "w": 34, - "h": 31, - "fill": "hsl(103 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04974": { - "id": "shape:perf:04974", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 3136, - "rot": 0, - "props": { - "w": 28, - "h": 44, - "fill": "hsl(308 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04975": { - "id": "shape:perf:04975", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 3136, - "rot": 0, - "props": { - "w": 38, - "h": 25, - "fill": "hsl(281 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04976": { - "id": "shape:perf:04976", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 3136, - "rot": 0, - "props": { - "w": 45, - "h": 44, - "fill": "hsl(92 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04977": { - "id": "shape:perf:04977", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 3136, - "rot": 0, - "props": { - "w": 40, - "h": 37, - "fill": "hsl(240 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04978": { - "id": "shape:perf:04978", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 3136, - "rot": 0, - "props": { - "w": 27, - "h": 34, - "fill": "hsl(350 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04979": { - "id": "shape:perf:04979", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 3136, - "rot": 0, - "props": { - "w": 26, - "h": 24, - "fill": "hsl(21 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04980": { - "id": "shape:perf:04980", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 3136, - "rot": 0, - "props": { - "w": 28, - "h": 28, - "fill": "hsl(317 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04981": { - "id": "shape:perf:04981", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 3136, - "rot": 0, - "props": { - "w": 29, - "h": 43, - "fill": "hsl(149 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04982": { - "id": "shape:perf:04982", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 3136, - "rot": 0, - "props": { - "w": 35, - "h": 38, - "fill": "hsl(263 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04983": { - "id": "shape:perf:04983", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 3136, - "rot": 0, - "props": { - "w": 30, - "h": 37, - "fill": "hsl(129 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04984": { - "id": "shape:perf:04984", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 3136, - "rot": 0, - "props": { - "w": 38, - "h": 28, - "fill": "hsl(238 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04985": { - "id": "shape:perf:04985", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 3136, - "rot": 0, - "props": { - "w": 28, - "h": 24, - "fill": "hsl(334 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04986": { - "id": "shape:perf:04986", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 3136, - "rot": 0, - "props": { - "w": 32, - "h": 26, - "fill": "hsl(274 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04987": { - "id": "shape:perf:04987", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 3136, - "rot": 0, - "props": { - "w": 32, - "h": 28, - "fill": "hsl(298 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04988": { - "id": "shape:perf:04988", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 3136, - "rot": 0, - "props": { - "w": 31, - "h": 28, - "fill": "hsl(319 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04989": { - "id": "shape:perf:04989", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 3136, - "rot": 0, - "props": { - "w": 25, - "h": 38, - "fill": "hsl(65 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04990": { - "id": "shape:perf:04990", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 3136, - "rot": 0, - "props": { - "w": 46, - "h": 37, - "fill": "hsl(200 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04991": { - "id": "shape:perf:04991", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 3136, - "rot": 0, - "props": { - "w": 45, - "h": 29, - "fill": "hsl(290 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04992": { - "id": "shape:perf:04992", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 3136, - "rot": 0, - "props": { - "w": 31, - "h": 43, - "fill": "hsl(137 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04993": { - "id": "shape:perf:04993", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 3136, - "rot": 0, - "props": { - "w": 38, - "h": 39, - "fill": "hsl(254 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04994": { - "id": "shape:perf:04994", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 3136, - "rot": 0, - "props": { - "w": 27, - "h": 31, - "fill": "hsl(111 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:04995": { - "id": "shape:perf:04995", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 3136, - "rot": 0, - "props": { - "w": 28, - "h": 42, - "fill": "hsl(127 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:04996": { - "id": "shape:perf:04996", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 3136, - "rot": 0, - "props": { - "w": 28, - "h": 29, - "fill": "hsl(250 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:04997": { - "id": "shape:perf:04997", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 3136, - "rot": 0, - "props": { - "w": 43, - "h": 41, - "fill": "hsl(293 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:04998": { - "id": "shape:perf:04998", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 3136, - "rot": 0, - "props": { - "w": 27, - "h": 40, - "fill": "hsl(179 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:04999": { - "id": "shape:perf:04999", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 3136, - "rot": 0, - "props": { - "w": 25, - "h": 27, - "fill": "hsl(96 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05000": { - "id": "shape:perf:05000", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 3200, - "rot": 0, - "props": { - "w": 34, - "h": 40, - "fill": "hsl(41 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05001": { - "id": "shape:perf:05001", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 3200, - "rot": 0, - "props": { - "w": 28, - "h": 44, - "fill": "hsl(44 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05002": { - "id": "shape:perf:05002", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 3200, - "rot": 0, - "props": { - "w": 30, - "h": 33, - "fill": "hsl(60 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05003": { - "id": "shape:perf:05003", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 3200, - "rot": 0, - "props": { - "w": 31, - "h": 35, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05004": { - "id": "shape:perf:05004", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 3200, - "rot": 0, - "props": { - "w": 29, - "h": 40, - "fill": "hsl(222 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05005": { - "id": "shape:perf:05005", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 3200, - "rot": 0, - "props": { - "w": 27, - "h": 29, - "fill": "hsl(234 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05006": { - "id": "shape:perf:05006", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 3200, - "rot": 0, - "props": { - "w": 40, - "h": 40, - "fill": "hsl(65 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05007": { - "id": "shape:perf:05007", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 3200, - "rot": 0, - "props": { - "w": 45, - "h": 39, - "fill": "hsl(17 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05008": { - "id": "shape:perf:05008", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 3200, - "rot": 0, - "props": { - "w": 26, - "h": 31, - "fill": "hsl(31 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05009": { - "id": "shape:perf:05009", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 3200, - "rot": 0, - "props": { - "w": 25, - "h": 28, - "fill": "hsl(22 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05010": { - "id": "shape:perf:05010", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 3200, - "rot": 0, - "props": { - "w": 40, - "h": 41, - "fill": "hsl(323 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05011": { - "id": "shape:perf:05011", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 3200, - "rot": 0, - "props": { - "w": 38, - "h": 45, - "fill": "hsl(65 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05012": { - "id": "shape:perf:05012", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 3200, - "rot": 0, - "props": { - "w": 25, - "h": 25, - "fill": "hsl(162 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05013": { - "id": "shape:perf:05013", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 3200, - "rot": 0, - "props": { - "w": 29, - "h": 38, - "fill": "hsl(299 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05014": { - "id": "shape:perf:05014", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 3200, - "rot": 0, - "props": { - "w": 28, - "h": 35, - "fill": "hsl(4 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05015": { - "id": "shape:perf:05015", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 3200, - "rot": 0, - "props": { - "w": 46, - "h": 44, - "fill": "hsl(315 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05016": { - "id": "shape:perf:05016", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 3200, - "rot": 0, - "props": { - "w": 46, - "h": 38, - "fill": "hsl(192 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05017": { - "id": "shape:perf:05017", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 3200, - "rot": 0, - "props": { - "w": 24, - "h": 41, - "fill": "hsl(141 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05018": { - "id": "shape:perf:05018", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 3200, - "rot": 0, - "props": { - "w": 25, - "h": 40, - "fill": "hsl(199 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05019": { - "id": "shape:perf:05019", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 3200, - "rot": 0, - "props": { - "w": 27, - "h": 33, - "fill": "hsl(244 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05020": { - "id": "shape:perf:05020", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 3200, - "rot": 0, - "props": { - "w": 47, - "h": 33, - "fill": "hsl(297 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05021": { - "id": "shape:perf:05021", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 3200, - "rot": 0, - "props": { - "w": 29, - "h": 31, - "fill": "hsl(200 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05022": { - "id": "shape:perf:05022", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 3200, - "rot": 0, - "props": { - "w": 39, - "h": 31, - "fill": "hsl(102 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05023": { - "id": "shape:perf:05023", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 3200, - "rot": 0, - "props": { - "w": 46, - "h": 33, - "fill": "hsl(83 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05024": { - "id": "shape:perf:05024", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 3200, - "rot": 0, - "props": { - "w": 27, - "h": 38, - "fill": "hsl(156 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05025": { - "id": "shape:perf:05025", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 3200, - "rot": 0, - "props": { - "w": 30, - "h": 29, - "fill": "hsl(270 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05026": { - "id": "shape:perf:05026", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 3200, - "rot": 0, - "props": { - "w": 31, - "h": 39, - "fill": "hsl(339 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05027": { - "id": "shape:perf:05027", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 3200, - "rot": 0, - "props": { - "w": 46, - "h": 32, - "fill": "hsl(174 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05028": { - "id": "shape:perf:05028", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 3200, - "rot": 0, - "props": { - "w": 42, - "h": 27, - "fill": "hsl(317 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05029": { - "id": "shape:perf:05029", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 3200, - "rot": 0, - "props": { - "w": 28, - "h": 24, - "fill": "hsl(322 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05030": { - "id": "shape:perf:05030", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 3200, - "rot": 0, - "props": { - "w": 47, - "h": 25, - "fill": "hsl(45 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05031": { - "id": "shape:perf:05031", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 3200, - "rot": 0, - "props": { - "w": 43, - "h": 42, - "fill": "hsl(273 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05032": { - "id": "shape:perf:05032", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 3200, - "rot": 0, - "props": { - "w": 43, - "h": 25, - "fill": "hsl(217 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05033": { - "id": "shape:perf:05033", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 3200, - "rot": 0, - "props": { - "w": 41, - "h": 40, - "fill": "hsl(325 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05034": { - "id": "shape:perf:05034", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 3200, - "rot": 0, - "props": { - "w": 24, - "h": 47, - "fill": "hsl(262 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05035": { - "id": "shape:perf:05035", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 3200, - "rot": 0, - "props": { - "w": 25, - "h": 36, - "fill": "hsl(135 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05036": { - "id": "shape:perf:05036", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 3200, - "rot": 0, - "props": { - "w": 38, - "h": 44, - "fill": "hsl(86 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05037": { - "id": "shape:perf:05037", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 3200, - "rot": 0, - "props": { - "w": 40, - "h": 36, - "fill": "hsl(67 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05038": { - "id": "shape:perf:05038", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 3200, - "rot": 0, - "props": { - "w": 26, - "h": 39, - "fill": "hsl(87 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05039": { - "id": "shape:perf:05039", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 3200, - "rot": 0, - "props": { - "w": 38, - "h": 32, - "fill": "hsl(253 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05040": { - "id": "shape:perf:05040", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 3200, - "rot": 0, - "props": { - "w": 44, - "h": 35, - "fill": "hsl(30 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05041": { - "id": "shape:perf:05041", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 3200, - "rot": 0, - "props": { - "w": 41, - "h": 33, - "fill": "hsl(232 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05042": { - "id": "shape:perf:05042", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 3200, - "rot": 0, - "props": { - "w": 30, - "h": 33, - "fill": "hsl(120 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05043": { - "id": "shape:perf:05043", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 3200, - "rot": 0, - "props": { - "w": 33, - "h": 24, - "fill": "hsl(311 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05044": { - "id": "shape:perf:05044", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 3200, - "rot": 0, - "props": { - "w": 37, - "h": 29, - "fill": "hsl(111 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05045": { - "id": "shape:perf:05045", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 3200, - "rot": 0, - "props": { - "w": 40, - "h": 37, - "fill": "hsl(347 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05046": { - "id": "shape:perf:05046", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 3200, - "rot": 0, - "props": { - "w": 28, - "h": 33, - "fill": "hsl(174 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05047": { - "id": "shape:perf:05047", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 3200, - "rot": 0, - "props": { - "w": 37, - "h": 37, - "fill": "hsl(163 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05048": { - "id": "shape:perf:05048", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 3200, - "rot": 0, - "props": { - "w": 41, - "h": 42, - "fill": "hsl(299 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05049": { - "id": "shape:perf:05049", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 3200, - "rot": 0, - "props": { - "w": 35, - "h": 28, - "fill": "hsl(101 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05050": { - "id": "shape:perf:05050", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 3200, - "rot": 0, - "props": { - "w": 45, - "h": 47, - "fill": "hsl(236 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05051": { - "id": "shape:perf:05051", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 3200, - "rot": 0, - "props": { - "w": 46, - "h": 36, - "fill": "hsl(4 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05052": { - "id": "shape:perf:05052", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 3200, - "rot": 0, - "props": { - "w": 29, - "h": 39, - "fill": "hsl(320 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05053": { - "id": "shape:perf:05053", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 3200, - "rot": 0, - "props": { - "w": 33, - "h": 39, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05054": { - "id": "shape:perf:05054", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 3200, - "rot": 0, - "props": { - "w": 26, - "h": 39, - "fill": "hsl(76 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05055": { - "id": "shape:perf:05055", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 3200, - "rot": 0, - "props": { - "w": 26, - "h": 37, - "fill": "hsl(41 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05056": { - "id": "shape:perf:05056", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 3200, - "rot": 0, - "props": { - "w": 27, - "h": 31, - "fill": "hsl(269 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05057": { - "id": "shape:perf:05057", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 3200, - "rot": 0, - "props": { - "w": 47, - "h": 42, - "fill": "hsl(238 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05058": { - "id": "shape:perf:05058", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 3200, - "rot": 0, - "props": { - "w": 45, - "h": 36, - "fill": "hsl(215 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05059": { - "id": "shape:perf:05059", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 3200, - "rot": 0, - "props": { - "w": 42, - "h": 33, - "fill": "hsl(102 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05060": { - "id": "shape:perf:05060", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 3200, - "rot": 0, - "props": { - "w": 41, - "h": 39, - "fill": "hsl(32 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05061": { - "id": "shape:perf:05061", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 3200, - "rot": 0, - "props": { - "w": 34, - "h": 33, - "fill": "hsl(260 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05062": { - "id": "shape:perf:05062", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 3200, - "rot": 0, - "props": { - "w": 35, - "h": 28, - "fill": "hsl(174 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05063": { - "id": "shape:perf:05063", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 3200, - "rot": 0, - "props": { - "w": 27, - "h": 44, - "fill": "hsl(53 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05064": { - "id": "shape:perf:05064", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 3200, - "rot": 0, - "props": { - "w": 31, - "h": 26, - "fill": "hsl(356 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05065": { - "id": "shape:perf:05065", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 3200, - "rot": 0, - "props": { - "w": 33, - "h": 24, - "fill": "hsl(283 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05066": { - "id": "shape:perf:05066", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 3200, - "rot": 0, - "props": { - "w": 30, - "h": 43, - "fill": "hsl(145 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05067": { - "id": "shape:perf:05067", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 3200, - "rot": 0, - "props": { - "w": 33, - "h": 44, - "fill": "hsl(174 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05068": { - "id": "shape:perf:05068", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 3200, - "rot": 0, - "props": { - "w": 47, - "h": 35, - "fill": "hsl(200 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05069": { - "id": "shape:perf:05069", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 3200, - "rot": 0, - "props": { - "w": 36, - "h": 43, - "fill": "hsl(51 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05070": { - "id": "shape:perf:05070", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 3200, - "rot": 0, - "props": { - "w": 40, - "h": 43, - "fill": "hsl(19 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05071": { - "id": "shape:perf:05071", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 3200, - "rot": 0, - "props": { - "w": 29, - "h": 42, - "fill": "hsl(37 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05072": { - "id": "shape:perf:05072", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 3200, - "rot": 0, - "props": { - "w": 31, - "h": 35, - "fill": "hsl(222 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05073": { - "id": "shape:perf:05073", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 3200, - "rot": 0, - "props": { - "w": 32, - "h": 41, - "fill": "hsl(346 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05074": { - "id": "shape:perf:05074", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 3200, - "rot": 0, - "props": { - "w": 25, - "h": 27, - "fill": "hsl(295 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05075": { - "id": "shape:perf:05075", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 3200, - "rot": 0, - "props": { - "w": 44, - "h": 42, - "fill": "hsl(266 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05076": { - "id": "shape:perf:05076", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 3200, - "rot": 0, - "props": { - "w": 36, - "h": 37, - "fill": "hsl(12 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05077": { - "id": "shape:perf:05077", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 3200, - "rot": 0, - "props": { - "w": 44, - "h": 36, - "fill": "hsl(271 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05078": { - "id": "shape:perf:05078", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 3200, - "rot": 0, - "props": { - "w": 40, - "h": 31, - "fill": "hsl(67 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05079": { - "id": "shape:perf:05079", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 3200, - "rot": 0, - "props": { - "w": 44, - "h": 38, - "fill": "hsl(130 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05080": { - "id": "shape:perf:05080", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 3200, - "rot": 0, - "props": { - "w": 24, - "h": 36, - "fill": "hsl(196 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05081": { - "id": "shape:perf:05081", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 3200, - "rot": 0, - "props": { - "w": 29, - "h": 34, - "fill": "hsl(186 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05082": { - "id": "shape:perf:05082", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 3200, - "rot": 0, - "props": { - "w": 46, - "h": 40, - "fill": "hsl(24 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05083": { - "id": "shape:perf:05083", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 3200, - "rot": 0, - "props": { - "w": 25, - "h": 26, - "fill": "hsl(203 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05084": { - "id": "shape:perf:05084", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 3200, - "rot": 0, - "props": { - "w": 26, - "h": 34, - "fill": "hsl(73 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05085": { - "id": "shape:perf:05085", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 3200, - "rot": 0, - "props": { - "w": 24, - "h": 33, - "fill": "hsl(336 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05086": { - "id": "shape:perf:05086", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 3200, - "rot": 0, - "props": { - "w": 35, - "h": 42, - "fill": "hsl(98 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05087": { - "id": "shape:perf:05087", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 3200, - "rot": 0, - "props": { - "w": 41, - "h": 42, - "fill": "hsl(358 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05088": { - "id": "shape:perf:05088", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 3200, - "rot": 0, - "props": { - "w": 47, - "h": 27, - "fill": "hsl(288 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05089": { - "id": "shape:perf:05089", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 3200, - "rot": 0, - "props": { - "w": 39, - "h": 24, - "fill": "hsl(41 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05090": { - "id": "shape:perf:05090", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 3200, - "rot": 0, - "props": { - "w": 41, - "h": 47, - "fill": "hsl(216 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05091": { - "id": "shape:perf:05091", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 3200, - "rot": 0, - "props": { - "w": 31, - "h": 41, - "fill": "hsl(346 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05092": { - "id": "shape:perf:05092", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 3200, - "rot": 0, - "props": { - "w": 30, - "h": 26, - "fill": "hsl(312 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05093": { - "id": "shape:perf:05093", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 3200, - "rot": 0, - "props": { - "w": 35, - "h": 38, - "fill": "hsl(266 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05094": { - "id": "shape:perf:05094", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 3200, - "rot": 0, - "props": { - "w": 35, - "h": 42, - "fill": "hsl(98 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05095": { - "id": "shape:perf:05095", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 3200, - "rot": 0, - "props": { - "w": 34, - "h": 37, - "fill": "hsl(232 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05096": { - "id": "shape:perf:05096", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 3200, - "rot": 0, - "props": { - "w": 27, - "h": 35, - "fill": "hsl(39 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05097": { - "id": "shape:perf:05097", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 3200, - "rot": 0, - "props": { - "w": 46, - "h": 45, - "fill": "hsl(209 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05098": { - "id": "shape:perf:05098", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 3200, - "rot": 0, - "props": { - "w": 37, - "h": 39, - "fill": "hsl(261 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05099": { - "id": "shape:perf:05099", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 3200, - "rot": 0, - "props": { - "w": 40, - "h": 30, - "fill": "hsl(218 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05100": { - "id": "shape:perf:05100", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 3264, - "rot": 0, - "props": { - "w": 39, - "h": 27, - "fill": "hsl(150 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05101": { - "id": "shape:perf:05101", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 3264, - "rot": 0, - "props": { - "w": 36, - "h": 43, - "fill": "hsl(278 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05102": { - "id": "shape:perf:05102", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 3264, - "rot": 0, - "props": { - "w": 46, - "h": 47, - "fill": "hsl(345 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05103": { - "id": "shape:perf:05103", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 3264, - "rot": 0, - "props": { - "w": 35, - "h": 46, - "fill": "hsl(174 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05104": { - "id": "shape:perf:05104", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 3264, - "rot": 0, - "props": { - "w": 27, - "h": 45, - "fill": "hsl(276 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05105": { - "id": "shape:perf:05105", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 3264, - "rot": 0, - "props": { - "w": 41, - "h": 35, - "fill": "hsl(114 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05106": { - "id": "shape:perf:05106", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 3264, - "rot": 0, - "props": { - "w": 28, - "h": 45, - "fill": "hsl(352 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05107": { - "id": "shape:perf:05107", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 3264, - "rot": 0, - "props": { - "w": 30, - "h": 39, - "fill": "hsl(31 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05108": { - "id": "shape:perf:05108", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 3264, - "rot": 0, - "props": { - "w": 26, - "h": 33, - "fill": "hsl(233 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05109": { - "id": "shape:perf:05109", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 3264, - "rot": 0, - "props": { - "w": 45, - "h": 44, - "fill": "hsl(232 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05110": { - "id": "shape:perf:05110", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 3264, - "rot": 0, - "props": { - "w": 38, - "h": 29, - "fill": "hsl(352 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05111": { - "id": "shape:perf:05111", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 3264, - "rot": 0, - "props": { - "w": 31, - "h": 42, - "fill": "hsl(90 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05112": { - "id": "shape:perf:05112", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 3264, - "rot": 0, - "props": { - "w": 42, - "h": 43, - "fill": "hsl(311 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05113": { - "id": "shape:perf:05113", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 3264, - "rot": 0, - "props": { - "w": 37, - "h": 24, - "fill": "hsl(104 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05114": { - "id": "shape:perf:05114", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 3264, - "rot": 0, - "props": { - "w": 42, - "h": 31, - "fill": "hsl(130 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05115": { - "id": "shape:perf:05115", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 3264, - "rot": 0, - "props": { - "w": 31, - "h": 35, - "fill": "hsl(75 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05116": { - "id": "shape:perf:05116", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 3264, - "rot": 0, - "props": { - "w": 38, - "h": 47, - "fill": "hsl(303 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05117": { - "id": "shape:perf:05117", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 3264, - "rot": 0, - "props": { - "w": 45, - "h": 39, - "fill": "hsl(346 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05118": { - "id": "shape:perf:05118", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 3264, - "rot": 0, - "props": { - "w": 47, - "h": 35, - "fill": "hsl(260 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05119": { - "id": "shape:perf:05119", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 3264, - "rot": 0, - "props": { - "w": 37, - "h": 36, - "fill": "hsl(114 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05120": { - "id": "shape:perf:05120", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 3264, - "rot": 0, - "props": { - "w": 46, - "h": 40, - "fill": "hsl(279 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05121": { - "id": "shape:perf:05121", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 3264, - "rot": 0, - "props": { - "w": 33, - "h": 31, - "fill": "hsl(199 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05122": { - "id": "shape:perf:05122", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 3264, - "rot": 0, - "props": { - "w": 40, - "h": 37, - "fill": "hsl(131 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05123": { - "id": "shape:perf:05123", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 3264, - "rot": 0, - "props": { - "w": 28, - "h": 28, - "fill": "hsl(130 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05124": { - "id": "shape:perf:05124", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 3264, - "rot": 0, - "props": { - "w": 24, - "h": 25, - "fill": "hsl(77 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05125": { - "id": "shape:perf:05125", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 3264, - "rot": 0, - "props": { - "w": 28, - "h": 27, - "fill": "hsl(326 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05126": { - "id": "shape:perf:05126", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 3264, - "rot": 0, - "props": { - "w": 36, - "h": 42, - "fill": "hsl(7 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05127": { - "id": "shape:perf:05127", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 3264, - "rot": 0, - "props": { - "w": 44, - "h": 46, - "fill": "hsl(304 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05128": { - "id": "shape:perf:05128", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 3264, - "rot": 0, - "props": { - "w": 40, - "h": 44, - "fill": "hsl(2 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05129": { - "id": "shape:perf:05129", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 3264, - "rot": 0, - "props": { - "w": 40, - "h": 38, - "fill": "hsl(127 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05130": { - "id": "shape:perf:05130", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 3264, - "rot": 0, - "props": { - "w": 45, - "h": 31, - "fill": "hsl(291 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05131": { - "id": "shape:perf:05131", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 3264, - "rot": 0, - "props": { - "w": 38, - "h": 27, - "fill": "hsl(336 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05132": { - "id": "shape:perf:05132", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 3264, - "rot": 0, - "props": { - "w": 40, - "h": 29, - "fill": "hsl(224 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05133": { - "id": "shape:perf:05133", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 3264, - "rot": 0, - "props": { - "w": 46, - "h": 31, - "fill": "hsl(130 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05134": { - "id": "shape:perf:05134", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 3264, - "rot": 0, - "props": { - "w": 34, - "h": 35, - "fill": "hsl(227 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05135": { - "id": "shape:perf:05135", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 3264, - "rot": 0, - "props": { - "w": 35, - "h": 31, - "fill": "hsl(354 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05136": { - "id": "shape:perf:05136", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 3264, - "rot": 0, - "props": { - "w": 41, - "h": 46, - "fill": "hsl(114 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05137": { - "id": "shape:perf:05137", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 3264, - "rot": 0, - "props": { - "w": 45, - "h": 42, - "fill": "hsl(285 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05138": { - "id": "shape:perf:05138", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 3264, - "rot": 0, - "props": { - "w": 39, - "h": 26, - "fill": "hsl(179 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05139": { - "id": "shape:perf:05139", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 3264, - "rot": 0, - "props": { - "w": 26, - "h": 35, - "fill": "hsl(294 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05140": { - "id": "shape:perf:05140", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 3264, - "rot": 0, - "props": { - "w": 41, - "h": 28, - "fill": "hsl(225 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05141": { - "id": "shape:perf:05141", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 3264, - "rot": 0, - "props": { - "w": 43, - "h": 38, - "fill": "hsl(220 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05142": { - "id": "shape:perf:05142", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 3264, - "rot": 0, - "props": { - "w": 39, - "h": 35, - "fill": "hsl(198 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05143": { - "id": "shape:perf:05143", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 3264, - "rot": 0, - "props": { - "w": 31, - "h": 45, - "fill": "hsl(59 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05144": { - "id": "shape:perf:05144", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 3264, - "rot": 0, - "props": { - "w": 28, - "h": 38, - "fill": "hsl(65 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05145": { - "id": "shape:perf:05145", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 3264, - "rot": 0, - "props": { - "w": 33, - "h": 38, - "fill": "hsl(19 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05146": { - "id": "shape:perf:05146", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 3264, - "rot": 0, - "props": { - "w": 30, - "h": 30, - "fill": "hsl(248 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05147": { - "id": "shape:perf:05147", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 3264, - "rot": 0, - "props": { - "w": 46, - "h": 40, - "fill": "hsl(346 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05148": { - "id": "shape:perf:05148", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 3264, - "rot": 0, - "props": { - "w": 33, - "h": 30, - "fill": "hsl(301 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05149": { - "id": "shape:perf:05149", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 3264, - "rot": 0, - "props": { - "w": 28, - "h": 32, - "fill": "hsl(211 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05150": { - "id": "shape:perf:05150", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 3264, - "rot": 0, - "props": { - "w": 29, - "h": 29, - "fill": "hsl(52 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05151": { - "id": "shape:perf:05151", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 3264, - "rot": 0, - "props": { - "w": 34, - "h": 43, - "fill": "hsl(147 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05152": { - "id": "shape:perf:05152", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 3264, - "rot": 0, - "props": { - "w": 44, - "h": 25, - "fill": "hsl(198 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05153": { - "id": "shape:perf:05153", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 3264, - "rot": 0, - "props": { - "w": 38, - "h": 25, - "fill": "hsl(65 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05154": { - "id": "shape:perf:05154", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 3264, - "rot": 0, - "props": { - "w": 34, - "h": 24, - "fill": "hsl(133 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05155": { - "id": "shape:perf:05155", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 3264, - "rot": 0, - "props": { - "w": 47, - "h": 46, - "fill": "hsl(349 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05156": { - "id": "shape:perf:05156", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 3264, - "rot": 0, - "props": { - "w": 43, - "h": 35, - "fill": "hsl(212 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05157": { - "id": "shape:perf:05157", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 3264, - "rot": 0, - "props": { - "w": 29, - "h": 47, - "fill": "hsl(251 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05158": { - "id": "shape:perf:05158", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 3264, - "rot": 0, - "props": { - "w": 45, - "h": 29, - "fill": "hsl(28 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05159": { - "id": "shape:perf:05159", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 3264, - "rot": 0, - "props": { - "w": 30, - "h": 24, - "fill": "hsl(265 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05160": { - "id": "shape:perf:05160", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 3264, - "rot": 0, - "props": { - "w": 30, - "h": 47, - "fill": "hsl(333 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05161": { - "id": "shape:perf:05161", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 3264, - "rot": 0, - "props": { - "w": 41, - "h": 46, - "fill": "hsl(159 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05162": { - "id": "shape:perf:05162", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 3264, - "rot": 0, - "props": { - "w": 41, - "h": 32, - "fill": "hsl(125 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05163": { - "id": "shape:perf:05163", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 3264, - "rot": 0, - "props": { - "w": 37, - "h": 39, - "fill": "hsl(288 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05164": { - "id": "shape:perf:05164", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 3264, - "rot": 0, - "props": { - "w": 46, - "h": 44, - "fill": "hsl(335 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05165": { - "id": "shape:perf:05165", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 3264, - "rot": 0, - "props": { - "w": 34, - "h": 26, - "fill": "hsl(70 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05166": { - "id": "shape:perf:05166", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 3264, - "rot": 0, - "props": { - "w": 26, - "h": 34, - "fill": "hsl(23 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05167": { - "id": "shape:perf:05167", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 3264, - "rot": 0, - "props": { - "w": 34, - "h": 44, - "fill": "hsl(225 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05168": { - "id": "shape:perf:05168", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 3264, - "rot": 0, - "props": { - "w": 43, - "h": 29, - "fill": "hsl(269 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05169": { - "id": "shape:perf:05169", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 3264, - "rot": 0, - "props": { - "w": 45, - "h": 36, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05170": { - "id": "shape:perf:05170", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 3264, - "rot": 0, - "props": { - "w": 35, - "h": 36, - "fill": "hsl(58 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05171": { - "id": "shape:perf:05171", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 3264, - "rot": 0, - "props": { - "w": 39, - "h": 30, - "fill": "hsl(177 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05172": { - "id": "shape:perf:05172", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 3264, - "rot": 0, - "props": { - "w": 30, - "h": 40, - "fill": "hsl(326 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05173": { - "id": "shape:perf:05173", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 3264, - "rot": 0, - "props": { - "w": 37, - "h": 30, - "fill": "hsl(48 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05174": { - "id": "shape:perf:05174", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 3264, - "rot": 0, - "props": { - "w": 27, - "h": 33, - "fill": "hsl(151 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05175": { - "id": "shape:perf:05175", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 3264, - "rot": 0, - "props": { - "w": 43, - "h": 40, - "fill": "hsl(193 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05176": { - "id": "shape:perf:05176", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 3264, - "rot": 0, - "props": { - "w": 33, - "h": 44, - "fill": "hsl(35 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05177": { - "id": "shape:perf:05177", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 3264, - "rot": 0, - "props": { - "w": 33, - "h": 33, - "fill": "hsl(190 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05178": { - "id": "shape:perf:05178", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 3264, - "rot": 0, - "props": { - "w": 46, - "h": 46, - "fill": "hsl(283 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05179": { - "id": "shape:perf:05179", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 3264, - "rot": 0, - "props": { - "w": 43, - "h": 33, - "fill": "hsl(350 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05180": { - "id": "shape:perf:05180", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 3264, - "rot": 0, - "props": { - "w": 26, - "h": 26, - "fill": "hsl(60 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05181": { - "id": "shape:perf:05181", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 3264, - "rot": 0, - "props": { - "w": 35, - "h": 41, - "fill": "hsl(311 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05182": { - "id": "shape:perf:05182", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 3264, - "rot": 0, - "props": { - "w": 44, - "h": 27, - "fill": "hsl(163 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05183": { - "id": "shape:perf:05183", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 3264, - "rot": 0, - "props": { - "w": 36, - "h": 24, - "fill": "hsl(174 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05184": { - "id": "shape:perf:05184", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 3264, - "rot": 0, - "props": { - "w": 26, - "h": 45, - "fill": "hsl(257 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05185": { - "id": "shape:perf:05185", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 3264, - "rot": 0, - "props": { - "w": 39, - "h": 32, - "fill": "hsl(352 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05186": { - "id": "shape:perf:05186", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 3264, - "rot": 0, - "props": { - "w": 43, - "h": 38, - "fill": "hsl(65 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05187": { - "id": "shape:perf:05187", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 3264, - "rot": 0, - "props": { - "w": 31, - "h": 30, - "fill": "hsl(330 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05188": { - "id": "shape:perf:05188", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 3264, - "rot": 0, - "props": { - "w": 44, - "h": 35, - "fill": "hsl(324 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05189": { - "id": "shape:perf:05189", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 3264, - "rot": 0, - "props": { - "w": 30, - "h": 42, - "fill": "hsl(39 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05190": { - "id": "shape:perf:05190", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 3264, - "rot": 0, - "props": { - "w": 36, - "h": 33, - "fill": "hsl(226 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05191": { - "id": "shape:perf:05191", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 3264, - "rot": 0, - "props": { - "w": 34, - "h": 42, - "fill": "hsl(251 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05192": { - "id": "shape:perf:05192", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 3264, - "rot": 0, - "props": { - "w": 35, - "h": 36, - "fill": "hsl(115 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05193": { - "id": "shape:perf:05193", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 3264, - "rot": 0, - "props": { - "w": 38, - "h": 43, - "fill": "hsl(163 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05194": { - "id": "shape:perf:05194", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 3264, - "rot": 0, - "props": { - "w": 47, - "h": 32, - "fill": "hsl(220 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05195": { - "id": "shape:perf:05195", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 3264, - "rot": 0, - "props": { - "w": 32, - "h": 36, - "fill": "hsl(247 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05196": { - "id": "shape:perf:05196", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 3264, - "rot": 0, - "props": { - "w": 28, - "h": 46, - "fill": "hsl(18 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05197": { - "id": "shape:perf:05197", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 3264, - "rot": 0, - "props": { - "w": 47, - "h": 26, - "fill": "hsl(211 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05198": { - "id": "shape:perf:05198", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 3264, - "rot": 0, - "props": { - "w": 47, - "h": 34, - "fill": "hsl(211 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05199": { - "id": "shape:perf:05199", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 3264, - "rot": 0, - "props": { - "w": 46, - "h": 47, - "fill": "hsl(116 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05200": { - "id": "shape:perf:05200", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 3328, - "rot": 0, - "props": { - "w": 47, - "h": 45, - "fill": "hsl(89 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05201": { - "id": "shape:perf:05201", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 3328, - "rot": 0, - "props": { - "w": 24, - "h": 38, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05202": { - "id": "shape:perf:05202", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 3328, - "rot": 0, - "props": { - "w": 38, - "h": 32, - "fill": "hsl(293 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05203": { - "id": "shape:perf:05203", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 3328, - "rot": 0, - "props": { - "w": 32, - "h": 27, - "fill": "hsl(111 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05204": { - "id": "shape:perf:05204", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 3328, - "rot": 0, - "props": { - "w": 43, - "h": 45, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05205": { - "id": "shape:perf:05205", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 3328, - "rot": 0, - "props": { - "w": 46, - "h": 47, - "fill": "hsl(77 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05206": { - "id": "shape:perf:05206", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 3328, - "rot": 0, - "props": { - "w": 26, - "h": 36, - "fill": "hsl(337 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05207": { - "id": "shape:perf:05207", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 3328, - "rot": 0, - "props": { - "w": 39, - "h": 44, - "fill": "hsl(68 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05208": { - "id": "shape:perf:05208", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 3328, - "rot": 0, - "props": { - "w": 42, - "h": 37, - "fill": "hsl(148 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05209": { - "id": "shape:perf:05209", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 3328, - "rot": 0, - "props": { - "w": 40, - "h": 42, - "fill": "hsl(251 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05210": { - "id": "shape:perf:05210", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 3328, - "rot": 0, - "props": { - "w": 38, - "h": 35, - "fill": "hsl(346 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05211": { - "id": "shape:perf:05211", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 3328, - "rot": 0, - "props": { - "w": 30, - "h": 26, - "fill": "hsl(194 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05212": { - "id": "shape:perf:05212", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 3328, - "rot": 0, - "props": { - "w": 26, - "h": 47, - "fill": "hsl(277 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05213": { - "id": "shape:perf:05213", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 3328, - "rot": 0, - "props": { - "w": 42, - "h": 46, - "fill": "hsl(308 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05214": { - "id": "shape:perf:05214", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 3328, - "rot": 0, - "props": { - "w": 44, - "h": 46, - "fill": "hsl(319 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05215": { - "id": "shape:perf:05215", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 3328, - "rot": 0, - "props": { - "w": 32, - "h": 24, - "fill": "hsl(237 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05216": { - "id": "shape:perf:05216", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 3328, - "rot": 0, - "props": { - "w": 39, - "h": 34, - "fill": "hsl(200 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05217": { - "id": "shape:perf:05217", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 3328, - "rot": 0, - "props": { - "w": 26, - "h": 27, - "fill": "hsl(245 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05218": { - "id": "shape:perf:05218", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 3328, - "rot": 0, - "props": { - "w": 34, - "h": 46, - "fill": "hsl(159 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05219": { - "id": "shape:perf:05219", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 3328, - "rot": 0, - "props": { - "w": 44, - "h": 43, - "fill": "hsl(348 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05220": { - "id": "shape:perf:05220", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 3328, - "rot": 0, - "props": { - "w": 42, - "h": 34, - "fill": "hsl(182 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05221": { - "id": "shape:perf:05221", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 3328, - "rot": 0, - "props": { - "w": 43, - "h": 38, - "fill": "hsl(231 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05222": { - "id": "shape:perf:05222", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 3328, - "rot": 0, - "props": { - "w": 26, - "h": 37, - "fill": "hsl(246 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05223": { - "id": "shape:perf:05223", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 3328, - "rot": 0, - "props": { - "w": 42, - "h": 25, - "fill": "hsl(181 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05224": { - "id": "shape:perf:05224", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 3328, - "rot": 0, - "props": { - "w": 44, - "h": 30, - "fill": "hsl(301 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05225": { - "id": "shape:perf:05225", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 3328, - "rot": 0, - "props": { - "w": 41, - "h": 40, - "fill": "hsl(91 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05226": { - "id": "shape:perf:05226", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 3328, - "rot": 0, - "props": { - "w": 46, - "h": 39, - "fill": "hsl(161 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05227": { - "id": "shape:perf:05227", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 3328, - "rot": 0, - "props": { - "w": 31, - "h": 31, - "fill": "hsl(72 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05228": { - "id": "shape:perf:05228", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 3328, - "rot": 0, - "props": { - "w": 24, - "h": 26, - "fill": "hsl(231 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05229": { - "id": "shape:perf:05229", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 3328, - "rot": 0, - "props": { - "w": 24, - "h": 33, - "fill": "hsl(308 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05230": { - "id": "shape:perf:05230", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 3328, - "rot": 0, - "props": { - "w": 32, - "h": 43, - "fill": "hsl(308 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05231": { - "id": "shape:perf:05231", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 3328, - "rot": 0, - "props": { - "w": 45, - "h": 35, - "fill": "hsl(317 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05232": { - "id": "shape:perf:05232", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 3328, - "rot": 0, - "props": { - "w": 27, - "h": 39, - "fill": "hsl(255 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05233": { - "id": "shape:perf:05233", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 3328, - "rot": 0, - "props": { - "w": 39, - "h": 38, - "fill": "hsl(59 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05234": { - "id": "shape:perf:05234", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 3328, - "rot": 0, - "props": { - "w": 45, - "h": 27, - "fill": "hsl(140 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05235": { - "id": "shape:perf:05235", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 3328, - "rot": 0, - "props": { - "w": 38, - "h": 36, - "fill": "hsl(37 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05236": { - "id": "shape:perf:05236", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 3328, - "rot": 0, - "props": { - "w": 43, - "h": 27, - "fill": "hsl(127 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05237": { - "id": "shape:perf:05237", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 3328, - "rot": 0, - "props": { - "w": 38, - "h": 35, - "fill": "hsl(132 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05238": { - "id": "shape:perf:05238", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 3328, - "rot": 0, - "props": { - "w": 32, - "h": 36, - "fill": "hsl(98 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05239": { - "id": "shape:perf:05239", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 3328, - "rot": 0, - "props": { - "w": 34, - "h": 25, - "fill": "hsl(123 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05240": { - "id": "shape:perf:05240", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 3328, - "rot": 0, - "props": { - "w": 37, - "h": 40, - "fill": "hsl(46 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05241": { - "id": "shape:perf:05241", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 3328, - "rot": 0, - "props": { - "w": 28, - "h": 37, - "fill": "hsl(294 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05242": { - "id": "shape:perf:05242", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 3328, - "rot": 0, - "props": { - "w": 39, - "h": 25, - "fill": "hsl(36 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05243": { - "id": "shape:perf:05243", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 3328, - "rot": 0, - "props": { - "w": 27, - "h": 44, - "fill": "hsl(35 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05244": { - "id": "shape:perf:05244", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 3328, - "rot": 0, - "props": { - "w": 38, - "h": 29, - "fill": "hsl(192 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05245": { - "id": "shape:perf:05245", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 3328, - "rot": 0, - "props": { - "w": 34, - "h": 30, - "fill": "hsl(232 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05246": { - "id": "shape:perf:05246", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 3328, - "rot": 0, - "props": { - "w": 30, - "h": 25, - "fill": "hsl(6 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05247": { - "id": "shape:perf:05247", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 3328, - "rot": 0, - "props": { - "w": 37, - "h": 27, - "fill": "hsl(334 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05248": { - "id": "shape:perf:05248", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 3328, - "rot": 0, - "props": { - "w": 27, - "h": 32, - "fill": "hsl(24 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05249": { - "id": "shape:perf:05249", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 3328, - "rot": 0, - "props": { - "w": 40, - "h": 29, - "fill": "hsl(287 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05250": { - "id": "shape:perf:05250", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 3328, - "rot": 0, - "props": { - "w": 46, - "h": 25, - "fill": "hsl(312 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05251": { - "id": "shape:perf:05251", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 3328, - "rot": 0, - "props": { - "w": 31, - "h": 29, - "fill": "hsl(191 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05252": { - "id": "shape:perf:05252", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 3328, - "rot": 0, - "props": { - "w": 32, - "h": 24, - "fill": "hsl(80 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05253": { - "id": "shape:perf:05253", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 3328, - "rot": 0, - "props": { - "w": 29, - "h": 31, - "fill": "hsl(117 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05254": { - "id": "shape:perf:05254", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 3328, - "rot": 0, - "props": { - "w": 46, - "h": 30, - "fill": "hsl(29 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05255": { - "id": "shape:perf:05255", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 3328, - "rot": 0, - "props": { - "w": 36, - "h": 43, - "fill": "hsl(112 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05256": { - "id": "shape:perf:05256", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 3328, - "rot": 0, - "props": { - "w": 24, - "h": 46, - "fill": "hsl(120 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05257": { - "id": "shape:perf:05257", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 3328, - "rot": 0, - "props": { - "w": 45, - "h": 27, - "fill": "hsl(351 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05258": { - "id": "shape:perf:05258", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 3328, - "rot": 0, - "props": { - "w": 35, - "h": 38, - "fill": "hsl(103 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05259": { - "id": "shape:perf:05259", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 3328, - "rot": 0, - "props": { - "w": 31, - "h": 30, - "fill": "hsl(37 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05260": { - "id": "shape:perf:05260", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 3328, - "rot": 0, - "props": { - "w": 42, - "h": 42, - "fill": "hsl(115 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05261": { - "id": "shape:perf:05261", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 3328, - "rot": 0, - "props": { - "w": 32, - "h": 46, - "fill": "hsl(124 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05262": { - "id": "shape:perf:05262", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 3328, - "rot": 0, - "props": { - "w": 40, - "h": 37, - "fill": "hsl(307 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05263": { - "id": "shape:perf:05263", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 3328, - "rot": 0, - "props": { - "w": 30, - "h": 41, - "fill": "hsl(357 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05264": { - "id": "shape:perf:05264", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 3328, - "rot": 0, - "props": { - "w": 24, - "h": 39, - "fill": "hsl(260 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05265": { - "id": "shape:perf:05265", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 3328, - "rot": 0, - "props": { - "w": 30, - "h": 46, - "fill": "hsl(65 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05266": { - "id": "shape:perf:05266", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 3328, - "rot": 0, - "props": { - "w": 31, - "h": 43, - "fill": "hsl(323 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05267": { - "id": "shape:perf:05267", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 3328, - "rot": 0, - "props": { - "w": 43, - "h": 47, - "fill": "hsl(128 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05268": { - "id": "shape:perf:05268", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 3328, - "rot": 0, - "props": { - "w": 25, - "h": 47, - "fill": "hsl(233 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05269": { - "id": "shape:perf:05269", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 3328, - "rot": 0, - "props": { - "w": 29, - "h": 47, - "fill": "hsl(224 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05270": { - "id": "shape:perf:05270", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 3328, - "rot": 0, - "props": { - "w": 31, - "h": 28, - "fill": "hsl(155 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05271": { - "id": "shape:perf:05271", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 3328, - "rot": 0, - "props": { - "w": 36, - "h": 44, - "fill": "hsl(215 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05272": { - "id": "shape:perf:05272", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 3328, - "rot": 0, - "props": { - "w": 31, - "h": 30, - "fill": "hsl(163 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05273": { - "id": "shape:perf:05273", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 3328, - "rot": 0, - "props": { - "w": 33, - "h": 42, - "fill": "hsl(144 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05274": { - "id": "shape:perf:05274", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 3328, - "rot": 0, - "props": { - "w": 42, - "h": 37, - "fill": "hsl(240 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05275": { - "id": "shape:perf:05275", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 3328, - "rot": 0, - "props": { - "w": 42, - "h": 36, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05276": { - "id": "shape:perf:05276", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 3328, - "rot": 0, - "props": { - "w": 41, - "h": 44, - "fill": "hsl(109 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05277": { - "id": "shape:perf:05277", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 3328, - "rot": 0, - "props": { - "w": 28, - "h": 27, - "fill": "hsl(118 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05278": { - "id": "shape:perf:05278", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 3328, - "rot": 0, - "props": { - "w": 35, - "h": 35, - "fill": "hsl(267 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05279": { - "id": "shape:perf:05279", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 3328, - "rot": 0, - "props": { - "w": 27, - "h": 28, - "fill": "hsl(68 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05280": { - "id": "shape:perf:05280", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 3328, - "rot": 0, - "props": { - "w": 40, - "h": 43, - "fill": "hsl(339 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05281": { - "id": "shape:perf:05281", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 3328, - "rot": 0, - "props": { - "w": 29, - "h": 28, - "fill": "hsl(213 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05282": { - "id": "shape:perf:05282", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 3328, - "rot": 0, - "props": { - "w": 46, - "h": 31, - "fill": "hsl(93 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05283": { - "id": "shape:perf:05283", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 3328, - "rot": 0, - "props": { - "w": 31, - "h": 35, - "fill": "hsl(237 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05284": { - "id": "shape:perf:05284", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 3328, - "rot": 0, - "props": { - "w": 43, - "h": 28, - "fill": "hsl(114 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05285": { - "id": "shape:perf:05285", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 3328, - "rot": 0, - "props": { - "w": 43, - "h": 28, - "fill": "hsl(250 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05286": { - "id": "shape:perf:05286", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 3328, - "rot": 0, - "props": { - "w": 26, - "h": 25, - "fill": "hsl(176 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05287": { - "id": "shape:perf:05287", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 3328, - "rot": 0, - "props": { - "w": 38, - "h": 43, - "fill": "hsl(241 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05288": { - "id": "shape:perf:05288", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 3328, - "rot": 0, - "props": { - "w": 40, - "h": 31, - "fill": "hsl(314 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05289": { - "id": "shape:perf:05289", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 3328, - "rot": 0, - "props": { - "w": 43, - "h": 29, - "fill": "hsl(8 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05290": { - "id": "shape:perf:05290", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 3328, - "rot": 0, - "props": { - "w": 43, - "h": 32, - "fill": "hsl(46 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05291": { - "id": "shape:perf:05291", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 3328, - "rot": 0, - "props": { - "w": 41, - "h": 32, - "fill": "hsl(105 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05292": { - "id": "shape:perf:05292", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 3328, - "rot": 0, - "props": { - "w": 41, - "h": 28, - "fill": "hsl(236 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05293": { - "id": "shape:perf:05293", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 3328, - "rot": 0, - "props": { - "w": 28, - "h": 47, - "fill": "hsl(146 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05294": { - "id": "shape:perf:05294", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 3328, - "rot": 0, - "props": { - "w": 39, - "h": 29, - "fill": "hsl(321 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05295": { - "id": "shape:perf:05295", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 3328, - "rot": 0, - "props": { - "w": 36, - "h": 33, - "fill": "hsl(90 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05296": { - "id": "shape:perf:05296", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 3328, - "rot": 0, - "props": { - "w": 40, - "h": 39, - "fill": "hsl(212 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05297": { - "id": "shape:perf:05297", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 3328, - "rot": 0, - "props": { - "w": 38, - "h": 46, - "fill": "hsl(63 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05298": { - "id": "shape:perf:05298", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 3328, - "rot": 0, - "props": { - "w": 37, - "h": 43, - "fill": "hsl(153 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05299": { - "id": "shape:perf:05299", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 3328, - "rot": 0, - "props": { - "w": 34, - "h": 32, - "fill": "hsl(67 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05300": { - "id": "shape:perf:05300", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 3392, - "rot": 0, - "props": { - "w": 40, - "h": 29, - "fill": "hsl(180 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05301": { - "id": "shape:perf:05301", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 3392, - "rot": 0, - "props": { - "w": 30, - "h": 34, - "fill": "hsl(189 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05302": { - "id": "shape:perf:05302", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 3392, - "rot": 0, - "props": { - "w": 28, - "h": 35, - "fill": "hsl(87 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05303": { - "id": "shape:perf:05303", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 3392, - "rot": 0, - "props": { - "w": 47, - "h": 43, - "fill": "hsl(343 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05304": { - "id": "shape:perf:05304", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 3392, - "rot": 0, - "props": { - "w": 35, - "h": 31, - "fill": "hsl(287 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05305": { - "id": "shape:perf:05305", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 3392, - "rot": 0, - "props": { - "w": 34, - "h": 44, - "fill": "hsl(83 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05306": { - "id": "shape:perf:05306", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 3392, - "rot": 0, - "props": { - "w": 31, - "h": 47, - "fill": "hsl(256 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05307": { - "id": "shape:perf:05307", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 3392, - "rot": 0, - "props": { - "w": 25, - "h": 39, - "fill": "hsl(230 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05308": { - "id": "shape:perf:05308", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 3392, - "rot": 0, - "props": { - "w": 31, - "h": 40, - "fill": "hsl(312 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05309": { - "id": "shape:perf:05309", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 3392, - "rot": 0, - "props": { - "w": 27, - "h": 46, - "fill": "hsl(6 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05310": { - "id": "shape:perf:05310", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 3392, - "rot": 0, - "props": { - "w": 46, - "h": 45, - "fill": "hsl(102 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05311": { - "id": "shape:perf:05311", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 3392, - "rot": 0, - "props": { - "w": 32, - "h": 32, - "fill": "hsl(78 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05312": { - "id": "shape:perf:05312", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 3392, - "rot": 0, - "props": { - "w": 47, - "h": 37, - "fill": "hsl(208 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05313": { - "id": "shape:perf:05313", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 3392, - "rot": 0, - "props": { - "w": 41, - "h": 36, - "fill": "hsl(39 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05314": { - "id": "shape:perf:05314", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 3392, - "rot": 0, - "props": { - "w": 46, - "h": 37, - "fill": "hsl(177 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05315": { - "id": "shape:perf:05315", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 3392, - "rot": 0, - "props": { - "w": 37, - "h": 41, - "fill": "hsl(13 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05316": { - "id": "shape:perf:05316", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 3392, - "rot": 0, - "props": { - "w": 41, - "h": 28, - "fill": "hsl(183 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05317": { - "id": "shape:perf:05317", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 3392, - "rot": 0, - "props": { - "w": 43, - "h": 26, - "fill": "hsl(290 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05318": { - "id": "shape:perf:05318", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 3392, - "rot": 0, - "props": { - "w": 33, - "h": 41, - "fill": "hsl(145 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05319": { - "id": "shape:perf:05319", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 3392, - "rot": 0, - "props": { - "w": 44, - "h": 45, - "fill": "hsl(189 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05320": { - "id": "shape:perf:05320", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 3392, - "rot": 0, - "props": { - "w": 41, - "h": 29, - "fill": "hsl(255 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05321": { - "id": "shape:perf:05321", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 3392, - "rot": 0, - "props": { - "w": 38, - "h": 31, - "fill": "hsl(20 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05322": { - "id": "shape:perf:05322", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 3392, - "rot": 0, - "props": { - "w": 40, - "h": 47, - "fill": "hsl(201 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05323": { - "id": "shape:perf:05323", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 3392, - "rot": 0, - "props": { - "w": 34, - "h": 26, - "fill": "hsl(288 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05324": { - "id": "shape:perf:05324", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 3392, - "rot": 0, - "props": { - "w": 45, - "h": 30, - "fill": "hsl(60 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05325": { - "id": "shape:perf:05325", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 3392, - "rot": 0, - "props": { - "w": 26, - "h": 41, - "fill": "hsl(148 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05326": { - "id": "shape:perf:05326", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 3392, - "rot": 0, - "props": { - "w": 27, - "h": 26, - "fill": "hsl(219 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05327": { - "id": "shape:perf:05327", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 3392, - "rot": 0, - "props": { - "w": 30, - "h": 41, - "fill": "hsl(45 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05328": { - "id": "shape:perf:05328", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 3392, - "rot": 0, - "props": { - "w": 47, - "h": 43, - "fill": "hsl(109 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05329": { - "id": "shape:perf:05329", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 3392, - "rot": 0, - "props": { - "w": 35, - "h": 39, - "fill": "hsl(295 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05330": { - "id": "shape:perf:05330", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 3392, - "rot": 0, - "props": { - "w": 34, - "h": 42, - "fill": "hsl(48 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05331": { - "id": "shape:perf:05331", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 3392, - "rot": 0, - "props": { - "w": 46, - "h": 37, - "fill": "hsl(127 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05332": { - "id": "shape:perf:05332", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 3392, - "rot": 0, - "props": { - "w": 27, - "h": 46, - "fill": "hsl(38 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05333": { - "id": "shape:perf:05333", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 3392, - "rot": 0, - "props": { - "w": 26, - "h": 29, - "fill": "hsl(50 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05334": { - "id": "shape:perf:05334", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 3392, - "rot": 0, - "props": { - "w": 42, - "h": 35, - "fill": "hsl(132 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05335": { - "id": "shape:perf:05335", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 3392, - "rot": 0, - "props": { - "w": 41, - "h": 35, - "fill": "hsl(287 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05336": { - "id": "shape:perf:05336", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 3392, - "rot": 0, - "props": { - "w": 39, - "h": 45, - "fill": "hsl(279 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05337": { - "id": "shape:perf:05337", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 3392, - "rot": 0, - "props": { - "w": 26, - "h": 38, - "fill": "hsl(129 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05338": { - "id": "shape:perf:05338", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 3392, - "rot": 0, - "props": { - "w": 44, - "h": 24, - "fill": "hsl(305 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05339": { - "id": "shape:perf:05339", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 3392, - "rot": 0, - "props": { - "w": 34, - "h": 34, - "fill": "hsl(70 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05340": { - "id": "shape:perf:05340", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 3392, - "rot": 0, - "props": { - "w": 25, - "h": 32, - "fill": "hsl(351 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05341": { - "id": "shape:perf:05341", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 3392, - "rot": 0, - "props": { - "w": 46, - "h": 29, - "fill": "hsl(302 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05342": { - "id": "shape:perf:05342", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 3392, - "rot": 0, - "props": { - "w": 35, - "h": 38, - "fill": "hsl(72 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05343": { - "id": "shape:perf:05343", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 3392, - "rot": 0, - "props": { - "w": 41, - "h": 31, - "fill": "hsl(247 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05344": { - "id": "shape:perf:05344", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 3392, - "rot": 0, - "props": { - "w": 32, - "h": 43, - "fill": "hsl(29 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05345": { - "id": "shape:perf:05345", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 3392, - "rot": 0, - "props": { - "w": 31, - "h": 34, - "fill": "hsl(53 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05346": { - "id": "shape:perf:05346", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 3392, - "rot": 0, - "props": { - "w": 33, - "h": 47, - "fill": "hsl(187 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05347": { - "id": "shape:perf:05347", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 3392, - "rot": 0, - "props": { - "w": 43, - "h": 30, - "fill": "hsl(0 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05348": { - "id": "shape:perf:05348", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 3392, - "rot": 0, - "props": { - "w": 46, - "h": 33, - "fill": "hsl(350 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05349": { - "id": "shape:perf:05349", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 3392, - "rot": 0, - "props": { - "w": 28, - "h": 37, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05350": { - "id": "shape:perf:05350", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 3392, - "rot": 0, - "props": { - "w": 29, - "h": 29, - "fill": "hsl(51 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05351": { - "id": "shape:perf:05351", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 3392, - "rot": 0, - "props": { - "w": 40, - "h": 42, - "fill": "hsl(74 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05352": { - "id": "shape:perf:05352", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 3392, - "rot": 0, - "props": { - "w": 24, - "h": 33, - "fill": "hsl(111 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05353": { - "id": "shape:perf:05353", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 3392, - "rot": 0, - "props": { - "w": 27, - "h": 24, - "fill": "hsl(4 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05354": { - "id": "shape:perf:05354", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 3392, - "rot": 0, - "props": { - "w": 30, - "h": 36, - "fill": "hsl(265 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05355": { - "id": "shape:perf:05355", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 3392, - "rot": 0, - "props": { - "w": 44, - "h": 46, - "fill": "hsl(291 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05356": { - "id": "shape:perf:05356", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 3392, - "rot": 0, - "props": { - "w": 28, - "h": 42, - "fill": "hsl(119 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05357": { - "id": "shape:perf:05357", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 3392, - "rot": 0, - "props": { - "w": 27, - "h": 35, - "fill": "hsl(268 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05358": { - "id": "shape:perf:05358", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 3392, - "rot": 0, - "props": { - "w": 29, - "h": 24, - "fill": "hsl(351 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05359": { - "id": "shape:perf:05359", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 3392, - "rot": 0, - "props": { - "w": 32, - "h": 33, - "fill": "hsl(355 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05360": { - "id": "shape:perf:05360", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 3392, - "rot": 0, - "props": { - "w": 28, - "h": 47, - "fill": "hsl(206 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05361": { - "id": "shape:perf:05361", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 3392, - "rot": 0, - "props": { - "w": 42, - "h": 25, - "fill": "hsl(197 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05362": { - "id": "shape:perf:05362", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 3392, - "rot": 0, - "props": { - "w": 39, - "h": 45, - "fill": "hsl(96 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05363": { - "id": "shape:perf:05363", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 3392, - "rot": 0, - "props": { - "w": 42, - "h": 45, - "fill": "hsl(93 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05364": { - "id": "shape:perf:05364", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 3392, - "rot": 0, - "props": { - "w": 28, - "h": 36, - "fill": "hsl(42 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05365": { - "id": "shape:perf:05365", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 3392, - "rot": 0, - "props": { - "w": 47, - "h": 33, - "fill": "hsl(15 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05366": { - "id": "shape:perf:05366", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 3392, - "rot": 0, - "props": { - "w": 40, - "h": 32, - "fill": "hsl(105 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05367": { - "id": "shape:perf:05367", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 3392, - "rot": 0, - "props": { - "w": 33, - "h": 29, - "fill": "hsl(326 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05368": { - "id": "shape:perf:05368", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 3392, - "rot": 0, - "props": { - "w": 36, - "h": 24, - "fill": "hsl(72 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05369": { - "id": "shape:perf:05369", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 3392, - "rot": 0, - "props": { - "w": 44, - "h": 25, - "fill": "hsl(34 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05370": { - "id": "shape:perf:05370", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 3392, - "rot": 0, - "props": { - "w": 38, - "h": 33, - "fill": "hsl(102 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05371": { - "id": "shape:perf:05371", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 3392, - "rot": 0, - "props": { - "w": 43, - "h": 44, - "fill": "hsl(321 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05372": { - "id": "shape:perf:05372", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 3392, - "rot": 0, - "props": { - "w": 36, - "h": 29, - "fill": "hsl(119 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05373": { - "id": "shape:perf:05373", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 3392, - "rot": 0, - "props": { - "w": 34, - "h": 38, - "fill": "hsl(339 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05374": { - "id": "shape:perf:05374", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 3392, - "rot": 0, - "props": { - "w": 47, - "h": 36, - "fill": "hsl(133 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05375": { - "id": "shape:perf:05375", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 3392, - "rot": 0, - "props": { - "w": 47, - "h": 29, - "fill": "hsl(59 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05376": { - "id": "shape:perf:05376", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 3392, - "rot": 0, - "props": { - "w": 40, - "h": 31, - "fill": "hsl(90 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05377": { - "id": "shape:perf:05377", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 3392, - "rot": 0, - "props": { - "w": 30, - "h": 24, - "fill": "hsl(98 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05378": { - "id": "shape:perf:05378", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 3392, - "rot": 0, - "props": { - "w": 44, - "h": 26, - "fill": "hsl(135 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05379": { - "id": "shape:perf:05379", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 3392, - "rot": 0, - "props": { - "w": 42, - "h": 40, - "fill": "hsl(185 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05380": { - "id": "shape:perf:05380", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 3392, - "rot": 0, - "props": { - "w": 39, - "h": 39, - "fill": "hsl(120 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05381": { - "id": "shape:perf:05381", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 3392, - "rot": 0, - "props": { - "w": 47, - "h": 38, - "fill": "hsl(14 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05382": { - "id": "shape:perf:05382", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 3392, - "rot": 0, - "props": { - "w": 43, - "h": 37, - "fill": "hsl(310 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05383": { - "id": "shape:perf:05383", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 3392, - "rot": 0, - "props": { - "w": 34, - "h": 25, - "fill": "hsl(158 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05384": { - "id": "shape:perf:05384", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 3392, - "rot": 0, - "props": { - "w": 35, - "h": 39, - "fill": "hsl(124 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05385": { - "id": "shape:perf:05385", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 3392, - "rot": 0, - "props": { - "w": 46, - "h": 32, - "fill": "hsl(29 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05386": { - "id": "shape:perf:05386", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 3392, - "rot": 0, - "props": { - "w": 27, - "h": 41, - "fill": "hsl(145 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05387": { - "id": "shape:perf:05387", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 3392, - "rot": 0, - "props": { - "w": 45, - "h": 44, - "fill": "hsl(229 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05388": { - "id": "shape:perf:05388", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 3392, - "rot": 0, - "props": { - "w": 29, - "h": 28, - "fill": "hsl(206 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05389": { - "id": "shape:perf:05389", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 3392, - "rot": 0, - "props": { - "w": 37, - "h": 40, - "fill": "hsl(292 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05390": { - "id": "shape:perf:05390", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 3392, - "rot": 0, - "props": { - "w": 28, - "h": 36, - "fill": "hsl(102 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05391": { - "id": "shape:perf:05391", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 3392, - "rot": 0, - "props": { - "w": 46, - "h": 35, - "fill": "hsl(34 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05392": { - "id": "shape:perf:05392", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 3392, - "rot": 0, - "props": { - "w": 30, - "h": 31, - "fill": "hsl(289 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05393": { - "id": "shape:perf:05393", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 3392, - "rot": 0, - "props": { - "w": 39, - "h": 45, - "fill": "hsl(202 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05394": { - "id": "shape:perf:05394", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 3392, - "rot": 0, - "props": { - "w": 46, - "h": 39, - "fill": "hsl(54 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05395": { - "id": "shape:perf:05395", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 3392, - "rot": 0, - "props": { - "w": 34, - "h": 39, - "fill": "hsl(340 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05396": { - "id": "shape:perf:05396", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 3392, - "rot": 0, - "props": { - "w": 45, - "h": 37, - "fill": "hsl(228 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05397": { - "id": "shape:perf:05397", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 3392, - "rot": 0, - "props": { - "w": 25, - "h": 36, - "fill": "hsl(117 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05398": { - "id": "shape:perf:05398", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 3392, - "rot": 0, - "props": { - "w": 29, - "h": 37, - "fill": "hsl(119 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05399": { - "id": "shape:perf:05399", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 3392, - "rot": 0, - "props": { - "w": 34, - "h": 37, - "fill": "hsl(161 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05400": { - "id": "shape:perf:05400", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 3456, - "rot": 0, - "props": { - "w": 44, - "h": 43, - "fill": "hsl(33 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05401": { - "id": "shape:perf:05401", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 3456, - "rot": 0, - "props": { - "w": 39, - "h": 38, - "fill": "hsl(7 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05402": { - "id": "shape:perf:05402", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 3456, - "rot": 0, - "props": { - "w": 27, - "h": 38, - "fill": "hsl(285 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05403": { - "id": "shape:perf:05403", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 3456, - "rot": 0, - "props": { - "w": 37, - "h": 35, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05404": { - "id": "shape:perf:05404", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 3456, - "rot": 0, - "props": { - "w": 26, - "h": 32, - "fill": "hsl(212 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05405": { - "id": "shape:perf:05405", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 3456, - "rot": 0, - "props": { - "w": 46, - "h": 41, - "fill": "hsl(174 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05406": { - "id": "shape:perf:05406", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 3456, - "rot": 0, - "props": { - "w": 37, - "h": 30, - "fill": "hsl(1 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05407": { - "id": "shape:perf:05407", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 3456, - "rot": 0, - "props": { - "w": 28, - "h": 39, - "fill": "hsl(35 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05408": { - "id": "shape:perf:05408", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 3456, - "rot": 0, - "props": { - "w": 34, - "h": 32, - "fill": "hsl(214 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05409": { - "id": "shape:perf:05409", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 3456, - "rot": 0, - "props": { - "w": 47, - "h": 30, - "fill": "hsl(295 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05410": { - "id": "shape:perf:05410", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 3456, - "rot": 0, - "props": { - "w": 38, - "h": 45, - "fill": "hsl(60 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05411": { - "id": "shape:perf:05411", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 3456, - "rot": 0, - "props": { - "w": 27, - "h": 42, - "fill": "hsl(71 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05412": { - "id": "shape:perf:05412", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 3456, - "rot": 0, - "props": { - "w": 31, - "h": 44, - "fill": "hsl(243 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05413": { - "id": "shape:perf:05413", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 3456, - "rot": 0, - "props": { - "w": 24, - "h": 45, - "fill": "hsl(306 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05414": { - "id": "shape:perf:05414", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 3456, - "rot": 0, - "props": { - "w": 25, - "h": 45, - "fill": "hsl(194 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05415": { - "id": "shape:perf:05415", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 3456, - "rot": 0, - "props": { - "w": 27, - "h": 36, - "fill": "hsl(121 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05416": { - "id": "shape:perf:05416", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 3456, - "rot": 0, - "props": { - "w": 27, - "h": 45, - "fill": "hsl(245 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05417": { - "id": "shape:perf:05417", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 3456, - "rot": 0, - "props": { - "w": 27, - "h": 38, - "fill": "hsl(262 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05418": { - "id": "shape:perf:05418", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 3456, - "rot": 0, - "props": { - "w": 33, - "h": 35, - "fill": "hsl(314 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05419": { - "id": "shape:perf:05419", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 3456, - "rot": 0, - "props": { - "w": 24, - "h": 38, - "fill": "hsl(267 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05420": { - "id": "shape:perf:05420", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 3456, - "rot": 0, - "props": { - "w": 39, - "h": 41, - "fill": "hsl(100 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05421": { - "id": "shape:perf:05421", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 3456, - "rot": 0, - "props": { - "w": 29, - "h": 41, - "fill": "hsl(10 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05422": { - "id": "shape:perf:05422", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 3456, - "rot": 0, - "props": { - "w": 36, - "h": 41, - "fill": "hsl(57 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05423": { - "id": "shape:perf:05423", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 3456, - "rot": 0, - "props": { - "w": 36, - "h": 37, - "fill": "hsl(215 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05424": { - "id": "shape:perf:05424", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 3456, - "rot": 0, - "props": { - "w": 41, - "h": 39, - "fill": "hsl(36 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05425": { - "id": "shape:perf:05425", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 3456, - "rot": 0, - "props": { - "w": 30, - "h": 42, - "fill": "hsl(297 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05426": { - "id": "shape:perf:05426", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 3456, - "rot": 0, - "props": { - "w": 43, - "h": 47, - "fill": "hsl(65 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05427": { - "id": "shape:perf:05427", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 3456, - "rot": 0, - "props": { - "w": 33, - "h": 36, - "fill": "hsl(32 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05428": { - "id": "shape:perf:05428", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 3456, - "rot": 0, - "props": { - "w": 42, - "h": 46, - "fill": "hsl(77 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05429": { - "id": "shape:perf:05429", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 3456, - "rot": 0, - "props": { - "w": 33, - "h": 43, - "fill": "hsl(216 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05430": { - "id": "shape:perf:05430", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 3456, - "rot": 0, - "props": { - "w": 31, - "h": 37, - "fill": "hsl(226 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05431": { - "id": "shape:perf:05431", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 3456, - "rot": 0, - "props": { - "w": 46, - "h": 42, - "fill": "hsl(353 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05432": { - "id": "shape:perf:05432", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 3456, - "rot": 0, - "props": { - "w": 34, - "h": 32, - "fill": "hsl(243 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05433": { - "id": "shape:perf:05433", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 3456, - "rot": 0, - "props": { - "w": 31, - "h": 24, - "fill": "hsl(352 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05434": { - "id": "shape:perf:05434", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 3456, - "rot": 0, - "props": { - "w": 36, - "h": 26, - "fill": "hsl(263 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05435": { - "id": "shape:perf:05435", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 3456, - "rot": 0, - "props": { - "w": 39, - "h": 41, - "fill": "hsl(147 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05436": { - "id": "shape:perf:05436", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 3456, - "rot": 0, - "props": { - "w": 47, - "h": 40, - "fill": "hsl(127 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05437": { - "id": "shape:perf:05437", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 3456, - "rot": 0, - "props": { - "w": 28, - "h": 33, - "fill": "hsl(230 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05438": { - "id": "shape:perf:05438", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 3456, - "rot": 0, - "props": { - "w": 38, - "h": 26, - "fill": "hsl(230 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05439": { - "id": "shape:perf:05439", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 3456, - "rot": 0, - "props": { - "w": 40, - "h": 40, - "fill": "hsl(300 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05440": { - "id": "shape:perf:05440", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 3456, - "rot": 0, - "props": { - "w": 39, - "h": 40, - "fill": "hsl(118 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05441": { - "id": "shape:perf:05441", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 3456, - "rot": 0, - "props": { - "w": 25, - "h": 45, - "fill": "hsl(320 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05442": { - "id": "shape:perf:05442", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 3456, - "rot": 0, - "props": { - "w": 25, - "h": 41, - "fill": "hsl(30 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05443": { - "id": "shape:perf:05443", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 3456, - "rot": 0, - "props": { - "w": 42, - "h": 34, - "fill": "hsl(106 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05444": { - "id": "shape:perf:05444", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 3456, - "rot": 0, - "props": { - "w": 43, - "h": 32, - "fill": "hsl(190 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05445": { - "id": "shape:perf:05445", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 3456, - "rot": 0, - "props": { - "w": 25, - "h": 39, - "fill": "hsl(279 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05446": { - "id": "shape:perf:05446", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 3456, - "rot": 0, - "props": { - "w": 35, - "h": 38, - "fill": "hsl(354 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05447": { - "id": "shape:perf:05447", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 3456, - "rot": 0, - "props": { - "w": 39, - "h": 39, - "fill": "hsl(144 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05448": { - "id": "shape:perf:05448", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 3456, - "rot": 0, - "props": { - "w": 28, - "h": 45, - "fill": "hsl(143 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05449": { - "id": "shape:perf:05449", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 3456, - "rot": 0, - "props": { - "w": 35, - "h": 34, - "fill": "hsl(246 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05450": { - "id": "shape:perf:05450", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 3456, - "rot": 0, - "props": { - "w": 37, - "h": 30, - "fill": "hsl(16 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05451": { - "id": "shape:perf:05451", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 3456, - "rot": 0, - "props": { - "w": 27, - "h": 39, - "fill": "hsl(260 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05452": { - "id": "shape:perf:05452", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 3456, - "rot": 0, - "props": { - "w": 42, - "h": 34, - "fill": "hsl(278 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05453": { - "id": "shape:perf:05453", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 3456, - "rot": 0, - "props": { - "w": 30, - "h": 29, - "fill": "hsl(297 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05454": { - "id": "shape:perf:05454", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 3456, - "rot": 0, - "props": { - "w": 46, - "h": 36, - "fill": "hsl(199 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05455": { - "id": "shape:perf:05455", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 3456, - "rot": 0, - "props": { - "w": 40, - "h": 39, - "fill": "hsl(192 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05456": { - "id": "shape:perf:05456", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 3456, - "rot": 0, - "props": { - "w": 38, - "h": 30, - "fill": "hsl(100 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05457": { - "id": "shape:perf:05457", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 3456, - "rot": 0, - "props": { - "w": 26, - "h": 25, - "fill": "hsl(26 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05458": { - "id": "shape:perf:05458", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 3456, - "rot": 0, - "props": { - "w": 46, - "h": 28, - "fill": "hsl(300 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05459": { - "id": "shape:perf:05459", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 3456, - "rot": 0, - "props": { - "w": 30, - "h": 30, - "fill": "hsl(8 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05460": { - "id": "shape:perf:05460", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 3456, - "rot": 0, - "props": { - "w": 35, - "h": 44, - "fill": "hsl(312 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05461": { - "id": "shape:perf:05461", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 3456, - "rot": 0, - "props": { - "w": 46, - "h": 24, - "fill": "hsl(355 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05462": { - "id": "shape:perf:05462", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 3456, - "rot": 0, - "props": { - "w": 39, - "h": 47, - "fill": "hsl(57 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05463": { - "id": "shape:perf:05463", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 3456, - "rot": 0, - "props": { - "w": 46, - "h": 29, - "fill": "hsl(164 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05464": { - "id": "shape:perf:05464", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 3456, - "rot": 0, - "props": { - "w": 29, - "h": 40, - "fill": "hsl(135 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05465": { - "id": "shape:perf:05465", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 3456, - "rot": 0, - "props": { - "w": 26, - "h": 31, - "fill": "hsl(30 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05466": { - "id": "shape:perf:05466", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 3456, - "rot": 0, - "props": { - "w": 30, - "h": 30, - "fill": "hsl(12 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05467": { - "id": "shape:perf:05467", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 3456, - "rot": 0, - "props": { - "w": 37, - "h": 38, - "fill": "hsl(334 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05468": { - "id": "shape:perf:05468", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 3456, - "rot": 0, - "props": { - "w": 28, - "h": 44, - "fill": "hsl(67 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05469": { - "id": "shape:perf:05469", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 3456, - "rot": 0, - "props": { - "w": 30, - "h": 33, - "fill": "hsl(215 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05470": { - "id": "shape:perf:05470", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 3456, - "rot": 0, - "props": { - "w": 39, - "h": 43, - "fill": "hsl(52 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05471": { - "id": "shape:perf:05471", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 3456, - "rot": 0, - "props": { - "w": 47, - "h": 42, - "fill": "hsl(218 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05472": { - "id": "shape:perf:05472", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 3456, - "rot": 0, - "props": { - "w": 45, - "h": 39, - "fill": "hsl(131 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05473": { - "id": "shape:perf:05473", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 3456, - "rot": 0, - "props": { - "w": 27, - "h": 35, - "fill": "hsl(124 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05474": { - "id": "shape:perf:05474", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 3456, - "rot": 0, - "props": { - "w": 36, - "h": 32, - "fill": "hsl(141 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05475": { - "id": "shape:perf:05475", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 3456, - "rot": 0, - "props": { - "w": 33, - "h": 43, - "fill": "hsl(254 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05476": { - "id": "shape:perf:05476", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 3456, - "rot": 0, - "props": { - "w": 31, - "h": 39, - "fill": "hsl(316 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05477": { - "id": "shape:perf:05477", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 3456, - "rot": 0, - "props": { - "w": 41, - "h": 39, - "fill": "hsl(160 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05478": { - "id": "shape:perf:05478", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 3456, - "rot": 0, - "props": { - "w": 32, - "h": 27, - "fill": "hsl(298 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05479": { - "id": "shape:perf:05479", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 3456, - "rot": 0, - "props": { - "w": 35, - "h": 24, - "fill": "hsl(190 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05480": { - "id": "shape:perf:05480", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 3456, - "rot": 0, - "props": { - "w": 42, - "h": 37, - "fill": "hsl(277 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05481": { - "id": "shape:perf:05481", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 3456, - "rot": 0, - "props": { - "w": 33, - "h": 44, - "fill": "hsl(337 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05482": { - "id": "shape:perf:05482", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 3456, - "rot": 0, - "props": { - "w": 38, - "h": 42, - "fill": "hsl(141 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05483": { - "id": "shape:perf:05483", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 3456, - "rot": 0, - "props": { - "w": 41, - "h": 26, - "fill": "hsl(117 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05484": { - "id": "shape:perf:05484", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 3456, - "rot": 0, - "props": { - "w": 43, - "h": 25, - "fill": "hsl(127 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05485": { - "id": "shape:perf:05485", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 3456, - "rot": 0, - "props": { - "w": 28, - "h": 41, - "fill": "hsl(235 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05486": { - "id": "shape:perf:05486", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 3456, - "rot": 0, - "props": { - "w": 31, - "h": 29, - "fill": "hsl(268 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05487": { - "id": "shape:perf:05487", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 3456, - "rot": 0, - "props": { - "w": 35, - "h": 29, - "fill": "hsl(299 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05488": { - "id": "shape:perf:05488", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 3456, - "rot": 0, - "props": { - "w": 38, - "h": 46, - "fill": "hsl(307 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05489": { - "id": "shape:perf:05489", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 3456, - "rot": 0, - "props": { - "w": 37, - "h": 25, - "fill": "hsl(288 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05490": { - "id": "shape:perf:05490", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 3456, - "rot": 0, - "props": { - "w": 43, - "h": 46, - "fill": "hsl(240 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05491": { - "id": "shape:perf:05491", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 3456, - "rot": 0, - "props": { - "w": 35, - "h": 46, - "fill": "hsl(252 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05492": { - "id": "shape:perf:05492", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 3456, - "rot": 0, - "props": { - "w": 28, - "h": 39, - "fill": "hsl(20 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05493": { - "id": "shape:perf:05493", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 3456, - "rot": 0, - "props": { - "w": 35, - "h": 34, - "fill": "hsl(47 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05494": { - "id": "shape:perf:05494", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 3456, - "rot": 0, - "props": { - "w": 39, - "h": 39, - "fill": "hsl(258 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05495": { - "id": "shape:perf:05495", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 3456, - "rot": 0, - "props": { - "w": 26, - "h": 28, - "fill": "hsl(77 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05496": { - "id": "shape:perf:05496", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 3456, - "rot": 0, - "props": { - "w": 28, - "h": 24, - "fill": "hsl(295 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05497": { - "id": "shape:perf:05497", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 3456, - "rot": 0, - "props": { - "w": 25, - "h": 46, - "fill": "hsl(255 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05498": { - "id": "shape:perf:05498", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 3456, - "rot": 0, - "props": { - "w": 30, - "h": 31, - "fill": "hsl(78 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05499": { - "id": "shape:perf:05499", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 3456, - "rot": 0, - "props": { - "w": 30, - "h": 45, - "fill": "hsl(355 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05500": { - "id": "shape:perf:05500", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 3520, - "rot": 0, - "props": { - "w": 37, - "h": 31, - "fill": "hsl(216 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05501": { - "id": "shape:perf:05501", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 3520, - "rot": 0, - "props": { - "w": 40, - "h": 40, - "fill": "hsl(204 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05502": { - "id": "shape:perf:05502", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 3520, - "rot": 0, - "props": { - "w": 33, - "h": 47, - "fill": "hsl(256 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05503": { - "id": "shape:perf:05503", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 3520, - "rot": 0, - "props": { - "w": 46, - "h": 44, - "fill": "hsl(195 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05504": { - "id": "shape:perf:05504", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 3520, - "rot": 0, - "props": { - "w": 34, - "h": 24, - "fill": "hsl(114 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05505": { - "id": "shape:perf:05505", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 3520, - "rot": 0, - "props": { - "w": 25, - "h": 34, - "fill": "hsl(294 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05506": { - "id": "shape:perf:05506", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 3520, - "rot": 0, - "props": { - "w": 29, - "h": 46, - "fill": "hsl(158 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05507": { - "id": "shape:perf:05507", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 3520, - "rot": 0, - "props": { - "w": 42, - "h": 31, - "fill": "hsl(345 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05508": { - "id": "shape:perf:05508", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 3520, - "rot": 0, - "props": { - "w": 31, - "h": 36, - "fill": "hsl(60 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05509": { - "id": "shape:perf:05509", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 3520, - "rot": 0, - "props": { - "w": 36, - "h": 30, - "fill": "hsl(2 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05510": { - "id": "shape:perf:05510", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 3520, - "rot": 0, - "props": { - "w": 41, - "h": 25, - "fill": "hsl(194 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05511": { - "id": "shape:perf:05511", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 3520, - "rot": 0, - "props": { - "w": 47, - "h": 27, - "fill": "hsl(2 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05512": { - "id": "shape:perf:05512", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 3520, - "rot": 0, - "props": { - "w": 27, - "h": 41, - "fill": "hsl(99 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05513": { - "id": "shape:perf:05513", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 3520, - "rot": 0, - "props": { - "w": 47, - "h": 27, - "fill": "hsl(270 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05514": { - "id": "shape:perf:05514", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 3520, - "rot": 0, - "props": { - "w": 47, - "h": 31, - "fill": "hsl(346 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05515": { - "id": "shape:perf:05515", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 3520, - "rot": 0, - "props": { - "w": 43, - "h": 43, - "fill": "hsl(154 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05516": { - "id": "shape:perf:05516", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 3520, - "rot": 0, - "props": { - "w": 41, - "h": 30, - "fill": "hsl(90 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05517": { - "id": "shape:perf:05517", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 3520, - "rot": 0, - "props": { - "w": 46, - "h": 25, - "fill": "hsl(351 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05518": { - "id": "shape:perf:05518", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 3520, - "rot": 0, - "props": { - "w": 41, - "h": 24, - "fill": "hsl(125 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05519": { - "id": "shape:perf:05519", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 3520, - "rot": 0, - "props": { - "w": 25, - "h": 29, - "fill": "hsl(113 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05520": { - "id": "shape:perf:05520", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 3520, - "rot": 0, - "props": { - "w": 45, - "h": 47, - "fill": "hsl(16 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05521": { - "id": "shape:perf:05521", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 3520, - "rot": 0, - "props": { - "w": 32, - "h": 43, - "fill": "hsl(97 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05522": { - "id": "shape:perf:05522", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 3520, - "rot": 0, - "props": { - "w": 45, - "h": 32, - "fill": "hsl(112 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05523": { - "id": "shape:perf:05523", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 3520, - "rot": 0, - "props": { - "w": 39, - "h": 41, - "fill": "hsl(263 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05524": { - "id": "shape:perf:05524", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 3520, - "rot": 0, - "props": { - "w": 29, - "h": 24, - "fill": "hsl(251 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05525": { - "id": "shape:perf:05525", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 3520, - "rot": 0, - "props": { - "w": 42, - "h": 24, - "fill": "hsl(66 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05526": { - "id": "shape:perf:05526", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 3520, - "rot": 0, - "props": { - "w": 32, - "h": 35, - "fill": "hsl(336 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05527": { - "id": "shape:perf:05527", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 3520, - "rot": 0, - "props": { - "w": 45, - "h": 45, - "fill": "hsl(354 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05528": { - "id": "shape:perf:05528", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 3520, - "rot": 0, - "props": { - "w": 33, - "h": 34, - "fill": "hsl(302 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05529": { - "id": "shape:perf:05529", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 3520, - "rot": 0, - "props": { - "w": 43, - "h": 37, - "fill": "hsl(179 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05530": { - "id": "shape:perf:05530", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 3520, - "rot": 0, - "props": { - "w": 24, - "h": 32, - "fill": "hsl(132 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05531": { - "id": "shape:perf:05531", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 3520, - "rot": 0, - "props": { - "w": 29, - "h": 24, - "fill": "hsl(105 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05532": { - "id": "shape:perf:05532", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 3520, - "rot": 0, - "props": { - "w": 42, - "h": 28, - "fill": "hsl(22 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05533": { - "id": "shape:perf:05533", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 3520, - "rot": 0, - "props": { - "w": 30, - "h": 28, - "fill": "hsl(277 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05534": { - "id": "shape:perf:05534", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 3520, - "rot": 0, - "props": { - "w": 43, - "h": 41, - "fill": "hsl(310 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05535": { - "id": "shape:perf:05535", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 3520, - "rot": 0, - "props": { - "w": 39, - "h": 32, - "fill": "hsl(237 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05536": { - "id": "shape:perf:05536", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 3520, - "rot": 0, - "props": { - "w": 47, - "h": 26, - "fill": "hsl(182 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05537": { - "id": "shape:perf:05537", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 3520, - "rot": 0, - "props": { - "w": 44, - "h": 47, - "fill": "hsl(252 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05538": { - "id": "shape:perf:05538", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 3520, - "rot": 0, - "props": { - "w": 32, - "h": 46, - "fill": "hsl(232 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05539": { - "id": "shape:perf:05539", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 3520, - "rot": 0, - "props": { - "w": 42, - "h": 36, - "fill": "hsl(84 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05540": { - "id": "shape:perf:05540", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 3520, - "rot": 0, - "props": { - "w": 39, - "h": 25, - "fill": "hsl(102 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05541": { - "id": "shape:perf:05541", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 3520, - "rot": 0, - "props": { - "w": 44, - "h": 35, - "fill": "hsl(45 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05542": { - "id": "shape:perf:05542", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 3520, - "rot": 0, - "props": { - "w": 29, - "h": 28, - "fill": "hsl(146 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05543": { - "id": "shape:perf:05543", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 3520, - "rot": 0, - "props": { - "w": 30, - "h": 35, - "fill": "hsl(182 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05544": { - "id": "shape:perf:05544", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 3520, - "rot": 0, - "props": { - "w": 40, - "h": 31, - "fill": "hsl(216 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05545": { - "id": "shape:perf:05545", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 3520, - "rot": 0, - "props": { - "w": 44, - "h": 46, - "fill": "hsl(233 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05546": { - "id": "shape:perf:05546", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 3520, - "rot": 0, - "props": { - "w": 37, - "h": 29, - "fill": "hsl(140 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05547": { - "id": "shape:perf:05547", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 3520, - "rot": 0, - "props": { - "w": 44, - "h": 33, - "fill": "hsl(18 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05548": { - "id": "shape:perf:05548", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 3520, - "rot": 0, - "props": { - "w": 33, - "h": 29, - "fill": "hsl(239 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05549": { - "id": "shape:perf:05549", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 3520, - "rot": 0, - "props": { - "w": 44, - "h": 45, - "fill": "hsl(98 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05550": { - "id": "shape:perf:05550", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 3520, - "rot": 0, - "props": { - "w": 35, - "h": 38, - "fill": "hsl(105 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05551": { - "id": "shape:perf:05551", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 3520, - "rot": 0, - "props": { - "w": 46, - "h": 47, - "fill": "hsl(250 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05552": { - "id": "shape:perf:05552", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 3520, - "rot": 0, - "props": { - "w": 30, - "h": 30, - "fill": "hsl(278 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05553": { - "id": "shape:perf:05553", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 3520, - "rot": 0, - "props": { - "w": 30, - "h": 29, - "fill": "hsl(185 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05554": { - "id": "shape:perf:05554", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 3520, - "rot": 0, - "props": { - "w": 40, - "h": 44, - "fill": "hsl(174 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05555": { - "id": "shape:perf:05555", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 3520, - "rot": 0, - "props": { - "w": 31, - "h": 25, - "fill": "hsl(128 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05556": { - "id": "shape:perf:05556", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 3520, - "rot": 0, - "props": { - "w": 34, - "h": 46, - "fill": "hsl(57 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05557": { - "id": "shape:perf:05557", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 3520, - "rot": 0, - "props": { - "w": 34, - "h": 30, - "fill": "hsl(294 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05558": { - "id": "shape:perf:05558", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 3520, - "rot": 0, - "props": { - "w": 37, - "h": 36, - "fill": "hsl(94 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05559": { - "id": "shape:perf:05559", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 3520, - "rot": 0, - "props": { - "w": 37, - "h": 35, - "fill": "hsl(320 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05560": { - "id": "shape:perf:05560", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 3520, - "rot": 0, - "props": { - "w": 46, - "h": 26, - "fill": "hsl(170 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05561": { - "id": "shape:perf:05561", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 3520, - "rot": 0, - "props": { - "w": 38, - "h": 30, - "fill": "hsl(128 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05562": { - "id": "shape:perf:05562", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 3520, - "rot": 0, - "props": { - "w": 31, - "h": 33, - "fill": "hsl(55 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05563": { - "id": "shape:perf:05563", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 3520, - "rot": 0, - "props": { - "w": 35, - "h": 27, - "fill": "hsl(245 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05564": { - "id": "shape:perf:05564", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 3520, - "rot": 0, - "props": { - "w": 33, - "h": 35, - "fill": "hsl(358 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05565": { - "id": "shape:perf:05565", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 3520, - "rot": 0, - "props": { - "w": 32, - "h": 26, - "fill": "hsl(159 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05566": { - "id": "shape:perf:05566", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 3520, - "rot": 0, - "props": { - "w": 26, - "h": 44, - "fill": "hsl(161 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05567": { - "id": "shape:perf:05567", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 3520, - "rot": 0, - "props": { - "w": 36, - "h": 27, - "fill": "hsl(308 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05568": { - "id": "shape:perf:05568", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 3520, - "rot": 0, - "props": { - "w": 45, - "h": 43, - "fill": "hsl(345 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05569": { - "id": "shape:perf:05569", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 3520, - "rot": 0, - "props": { - "w": 37, - "h": 29, - "fill": "hsl(57 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05570": { - "id": "shape:perf:05570", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 3520, - "rot": 0, - "props": { - "w": 27, - "h": 32, - "fill": "hsl(183 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05571": { - "id": "shape:perf:05571", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 3520, - "rot": 0, - "props": { - "w": 27, - "h": 27, - "fill": "hsl(122 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05572": { - "id": "shape:perf:05572", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 3520, - "rot": 0, - "props": { - "w": 35, - "h": 37, - "fill": "hsl(208 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05573": { - "id": "shape:perf:05573", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 3520, - "rot": 0, - "props": { - "w": 25, - "h": 42, - "fill": "hsl(352 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05574": { - "id": "shape:perf:05574", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 3520, - "rot": 0, - "props": { - "w": 31, - "h": 33, - "fill": "hsl(198 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05575": { - "id": "shape:perf:05575", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 3520, - "rot": 0, - "props": { - "w": 29, - "h": 33, - "fill": "hsl(36 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05576": { - "id": "shape:perf:05576", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 3520, - "rot": 0, - "props": { - "w": 44, - "h": 30, - "fill": "hsl(227 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05577": { - "id": "shape:perf:05577", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 3520, - "rot": 0, - "props": { - "w": 34, - "h": 27, - "fill": "hsl(151 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05578": { - "id": "shape:perf:05578", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 3520, - "rot": 0, - "props": { - "w": 40, - "h": 41, - "fill": "hsl(316 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05579": { - "id": "shape:perf:05579", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 3520, - "rot": 0, - "props": { - "w": 44, - "h": 25, - "fill": "hsl(128 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05580": { - "id": "shape:perf:05580", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 3520, - "rot": 0, - "props": { - "w": 36, - "h": 27, - "fill": "hsl(266 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05581": { - "id": "shape:perf:05581", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 3520, - "rot": 0, - "props": { - "w": 39, - "h": 26, - "fill": "hsl(15 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05582": { - "id": "shape:perf:05582", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 3520, - "rot": 0, - "props": { - "w": 26, - "h": 31, - "fill": "hsl(304 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05583": { - "id": "shape:perf:05583", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 3520, - "rot": 0, - "props": { - "w": 44, - "h": 33, - "fill": "hsl(205 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05584": { - "id": "shape:perf:05584", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 3520, - "rot": 0, - "props": { - "w": 29, - "h": 26, - "fill": "hsl(238 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05585": { - "id": "shape:perf:05585", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 3520, - "rot": 0, - "props": { - "w": 30, - "h": 24, - "fill": "hsl(116 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05586": { - "id": "shape:perf:05586", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 3520, - "rot": 0, - "props": { - "w": 36, - "h": 32, - "fill": "hsl(349 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05587": { - "id": "shape:perf:05587", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 3520, - "rot": 0, - "props": { - "w": 25, - "h": 36, - "fill": "hsl(166 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05588": { - "id": "shape:perf:05588", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 3520, - "rot": 0, - "props": { - "w": 42, - "h": 38, - "fill": "hsl(95 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05589": { - "id": "shape:perf:05589", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 3520, - "rot": 0, - "props": { - "w": 46, - "h": 28, - "fill": "hsl(79 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05590": { - "id": "shape:perf:05590", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 3520, - "rot": 0, - "props": { - "w": 42, - "h": 24, - "fill": "hsl(356 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05591": { - "id": "shape:perf:05591", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 3520, - "rot": 0, - "props": { - "w": 26, - "h": 25, - "fill": "hsl(159 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05592": { - "id": "shape:perf:05592", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 3520, - "rot": 0, - "props": { - "w": 26, - "h": 28, - "fill": "hsl(343 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05593": { - "id": "shape:perf:05593", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 3520, - "rot": 0, - "props": { - "w": 32, - "h": 33, - "fill": "hsl(165 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05594": { - "id": "shape:perf:05594", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 3520, - "rot": 0, - "props": { - "w": 35, - "h": 31, - "fill": "hsl(297 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05595": { - "id": "shape:perf:05595", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 3520, - "rot": 0, - "props": { - "w": 37, - "h": 26, - "fill": "hsl(49 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05596": { - "id": "shape:perf:05596", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 3520, - "rot": 0, - "props": { - "w": 40, - "h": 44, - "fill": "hsl(276 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05597": { - "id": "shape:perf:05597", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 3520, - "rot": 0, - "props": { - "w": 37, - "h": 34, - "fill": "hsl(302 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05598": { - "id": "shape:perf:05598", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 3520, - "rot": 0, - "props": { - "w": 36, - "h": 43, - "fill": "hsl(233 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05599": { - "id": "shape:perf:05599", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 3520, - "rot": 0, - "props": { - "w": 28, - "h": 35, - "fill": "hsl(338 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05600": { - "id": "shape:perf:05600", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 3584, - "rot": 0, - "props": { - "w": 26, - "h": 35, - "fill": "hsl(144 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05601": { - "id": "shape:perf:05601", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 3584, - "rot": 0, - "props": { - "w": 35, - "h": 24, - "fill": "hsl(42 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05602": { - "id": "shape:perf:05602", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 3584, - "rot": 0, - "props": { - "w": 39, - "h": 33, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05603": { - "id": "shape:perf:05603", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 3584, - "rot": 0, - "props": { - "w": 43, - "h": 28, - "fill": "hsl(264 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05604": { - "id": "shape:perf:05604", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 3584, - "rot": 0, - "props": { - "w": 30, - "h": 40, - "fill": "hsl(304 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05605": { - "id": "shape:perf:05605", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 3584, - "rot": 0, - "props": { - "w": 32, - "h": 30, - "fill": "hsl(94 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05606": { - "id": "shape:perf:05606", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 3584, - "rot": 0, - "props": { - "w": 47, - "h": 39, - "fill": "hsl(331 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05607": { - "id": "shape:perf:05607", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 3584, - "rot": 0, - "props": { - "w": 35, - "h": 29, - "fill": "hsl(87 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05608": { - "id": "shape:perf:05608", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 3584, - "rot": 0, - "props": { - "w": 26, - "h": 34, - "fill": "hsl(164 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05609": { - "id": "shape:perf:05609", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 3584, - "rot": 0, - "props": { - "w": 39, - "h": 27, - "fill": "hsl(43 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05610": { - "id": "shape:perf:05610", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 3584, - "rot": 0, - "props": { - "w": 27, - "h": 46, - "fill": "hsl(78 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05611": { - "id": "shape:perf:05611", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 3584, - "rot": 0, - "props": { - "w": 33, - "h": 42, - "fill": "hsl(234 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05612": { - "id": "shape:perf:05612", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 3584, - "rot": 0, - "props": { - "w": 37, - "h": 43, - "fill": "hsl(206 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05613": { - "id": "shape:perf:05613", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 3584, - "rot": 0, - "props": { - "w": 34, - "h": 40, - "fill": "hsl(284 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05614": { - "id": "shape:perf:05614", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 3584, - "rot": 0, - "props": { - "w": 31, - "h": 27, - "fill": "hsl(216 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05615": { - "id": "shape:perf:05615", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 3584, - "rot": 0, - "props": { - "w": 44, - "h": 39, - "fill": "hsl(157 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05616": { - "id": "shape:perf:05616", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 3584, - "rot": 0, - "props": { - "w": 39, - "h": 33, - "fill": "hsl(15 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05617": { - "id": "shape:perf:05617", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 3584, - "rot": 0, - "props": { - "w": 33, - "h": 42, - "fill": "hsl(93 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05618": { - "id": "shape:perf:05618", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 3584, - "rot": 0, - "props": { - "w": 41, - "h": 26, - "fill": "hsl(229 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05619": { - "id": "shape:perf:05619", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 3584, - "rot": 0, - "props": { - "w": 35, - "h": 47, - "fill": "hsl(207 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05620": { - "id": "shape:perf:05620", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 3584, - "rot": 0, - "props": { - "w": 41, - "h": 36, - "fill": "hsl(103 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05621": { - "id": "shape:perf:05621", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 3584, - "rot": 0, - "props": { - "w": 39, - "h": 35, - "fill": "hsl(34 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05622": { - "id": "shape:perf:05622", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 3584, - "rot": 0, - "props": { - "w": 28, - "h": 30, - "fill": "hsl(82 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05623": { - "id": "shape:perf:05623", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 3584, - "rot": 0, - "props": { - "w": 31, - "h": 43, - "fill": "hsl(195 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05624": { - "id": "shape:perf:05624", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 3584, - "rot": 0, - "props": { - "w": 27, - "h": 45, - "fill": "hsl(262 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05625": { - "id": "shape:perf:05625", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 3584, - "rot": 0, - "props": { - "w": 37, - "h": 40, - "fill": "hsl(88 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05626": { - "id": "shape:perf:05626", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 3584, - "rot": 0, - "props": { - "w": 31, - "h": 45, - "fill": "hsl(73 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05627": { - "id": "shape:perf:05627", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 3584, - "rot": 0, - "props": { - "w": 35, - "h": 36, - "fill": "hsl(283 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05628": { - "id": "shape:perf:05628", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 3584, - "rot": 0, - "props": { - "w": 44, - "h": 44, - "fill": "hsl(254 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05629": { - "id": "shape:perf:05629", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 3584, - "rot": 0, - "props": { - "w": 46, - "h": 36, - "fill": "hsl(82 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05630": { - "id": "shape:perf:05630", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 3584, - "rot": 0, - "props": { - "w": 41, - "h": 38, - "fill": "hsl(348 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05631": { - "id": "shape:perf:05631", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 3584, - "rot": 0, - "props": { - "w": 35, - "h": 27, - "fill": "hsl(213 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05632": { - "id": "shape:perf:05632", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 3584, - "rot": 0, - "props": { - "w": 27, - "h": 46, - "fill": "hsl(93 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05633": { - "id": "shape:perf:05633", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 3584, - "rot": 0, - "props": { - "w": 24, - "h": 26, - "fill": "hsl(96 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05634": { - "id": "shape:perf:05634", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 3584, - "rot": 0, - "props": { - "w": 46, - "h": 44, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05635": { - "id": "shape:perf:05635", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 3584, - "rot": 0, - "props": { - "w": 37, - "h": 44, - "fill": "hsl(185 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05636": { - "id": "shape:perf:05636", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 3584, - "rot": 0, - "props": { - "w": 43, - "h": 29, - "fill": "hsl(122 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05637": { - "id": "shape:perf:05637", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 3584, - "rot": 0, - "props": { - "w": 42, - "h": 40, - "fill": "hsl(67 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05638": { - "id": "shape:perf:05638", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 3584, - "rot": 0, - "props": { - "w": 26, - "h": 28, - "fill": "hsl(105 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05639": { - "id": "shape:perf:05639", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 3584, - "rot": 0, - "props": { - "w": 34, - "h": 33, - "fill": "hsl(281 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05640": { - "id": "shape:perf:05640", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 3584, - "rot": 0, - "props": { - "w": 25, - "h": 44, - "fill": "hsl(133 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05641": { - "id": "shape:perf:05641", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 3584, - "rot": 0, - "props": { - "w": 26, - "h": 35, - "fill": "hsl(26 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05642": { - "id": "shape:perf:05642", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 3584, - "rot": 0, - "props": { - "w": 27, - "h": 42, - "fill": "hsl(277 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05643": { - "id": "shape:perf:05643", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 3584, - "rot": 0, - "props": { - "w": 35, - "h": 29, - "fill": "hsl(135 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05644": { - "id": "shape:perf:05644", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 3584, - "rot": 0, - "props": { - "w": 45, - "h": 44, - "fill": "hsl(79 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05645": { - "id": "shape:perf:05645", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 3584, - "rot": 0, - "props": { - "w": 40, - "h": 38, - "fill": "hsl(17 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05646": { - "id": "shape:perf:05646", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 3584, - "rot": 0, - "props": { - "w": 47, - "h": 42, - "fill": "hsl(171 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05647": { - "id": "shape:perf:05647", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 3584, - "rot": 0, - "props": { - "w": 28, - "h": 37, - "fill": "hsl(243 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05648": { - "id": "shape:perf:05648", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 3584, - "rot": 0, - "props": { - "w": 25, - "h": 36, - "fill": "hsl(339 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05649": { - "id": "shape:perf:05649", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 3584, - "rot": 0, - "props": { - "w": 44, - "h": 44, - "fill": "hsl(232 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05650": { - "id": "shape:perf:05650", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 3584, - "rot": 0, - "props": { - "w": 39, - "h": 40, - "fill": "hsl(157 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05651": { - "id": "shape:perf:05651", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 3584, - "rot": 0, - "props": { - "w": 28, - "h": 34, - "fill": "hsl(310 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05652": { - "id": "shape:perf:05652", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 3584, - "rot": 0, - "props": { - "w": 47, - "h": 33, - "fill": "hsl(345 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05653": { - "id": "shape:perf:05653", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 3584, - "rot": 0, - "props": { - "w": 46, - "h": 31, - "fill": "hsl(236 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05654": { - "id": "shape:perf:05654", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 3584, - "rot": 0, - "props": { - "w": 40, - "h": 43, - "fill": "hsl(329 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05655": { - "id": "shape:perf:05655", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 3584, - "rot": 0, - "props": { - "w": 41, - "h": 40, - "fill": "hsl(175 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05656": { - "id": "shape:perf:05656", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 3584, - "rot": 0, - "props": { - "w": 34, - "h": 32, - "fill": "hsl(157 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05657": { - "id": "shape:perf:05657", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 3584, - "rot": 0, - "props": { - "w": 36, - "h": 26, - "fill": "hsl(151 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05658": { - "id": "shape:perf:05658", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 3584, - "rot": 0, - "props": { - "w": 47, - "h": 45, - "fill": "hsl(250 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05659": { - "id": "shape:perf:05659", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 3584, - "rot": 0, - "props": { - "w": 43, - "h": 38, - "fill": "hsl(320 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05660": { - "id": "shape:perf:05660", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 3584, - "rot": 0, - "props": { - "w": 45, - "h": 40, - "fill": "hsl(33 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05661": { - "id": "shape:perf:05661", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 3584, - "rot": 0, - "props": { - "w": 47, - "h": 38, - "fill": "hsl(322 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05662": { - "id": "shape:perf:05662", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 3584, - "rot": 0, - "props": { - "w": 34, - "h": 24, - "fill": "hsl(87 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05663": { - "id": "shape:perf:05663", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 3584, - "rot": 0, - "props": { - "w": 39, - "h": 33, - "fill": "hsl(141 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05664": { - "id": "shape:perf:05664", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 3584, - "rot": 0, - "props": { - "w": 24, - "h": 38, - "fill": "hsl(240 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05665": { - "id": "shape:perf:05665", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 3584, - "rot": 0, - "props": { - "w": 39, - "h": 24, - "fill": "hsl(25 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05666": { - "id": "shape:perf:05666", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 3584, - "rot": 0, - "props": { - "w": 25, - "h": 42, - "fill": "hsl(89 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05667": { - "id": "shape:perf:05667", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 3584, - "rot": 0, - "props": { - "w": 30, - "h": 35, - "fill": "hsl(149 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05668": { - "id": "shape:perf:05668", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 3584, - "rot": 0, - "props": { - "w": 31, - "h": 32, - "fill": "hsl(274 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05669": { - "id": "shape:perf:05669", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 3584, - "rot": 0, - "props": { - "w": 31, - "h": 29, - "fill": "hsl(171 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05670": { - "id": "shape:perf:05670", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 3584, - "rot": 0, - "props": { - "w": 28, - "h": 31, - "fill": "hsl(97 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05671": { - "id": "shape:perf:05671", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 3584, - "rot": 0, - "props": { - "w": 30, - "h": 25, - "fill": "hsl(344 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05672": { - "id": "shape:perf:05672", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 3584, - "rot": 0, - "props": { - "w": 33, - "h": 33, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05673": { - "id": "shape:perf:05673", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 3584, - "rot": 0, - "props": { - "w": 26, - "h": 27, - "fill": "hsl(311 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05674": { - "id": "shape:perf:05674", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 3584, - "rot": 0, - "props": { - "w": 35, - "h": 28, - "fill": "hsl(172 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05675": { - "id": "shape:perf:05675", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 3584, - "rot": 0, - "props": { - "w": 40, - "h": 41, - "fill": "hsl(42 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05676": { - "id": "shape:perf:05676", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 3584, - "rot": 0, - "props": { - "w": 39, - "h": 39, - "fill": "hsl(246 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05677": { - "id": "shape:perf:05677", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 3584, - "rot": 0, - "props": { - "w": 31, - "h": 47, - "fill": "hsl(127 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05678": { - "id": "shape:perf:05678", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 3584, - "rot": 0, - "props": { - "w": 29, - "h": 34, - "fill": "hsl(260 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05679": { - "id": "shape:perf:05679", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 3584, - "rot": 0, - "props": { - "w": 33, - "h": 31, - "fill": "hsl(202 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05680": { - "id": "shape:perf:05680", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 3584, - "rot": 0, - "props": { - "w": 39, - "h": 33, - "fill": "hsl(36 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05681": { - "id": "shape:perf:05681", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 3584, - "rot": 0, - "props": { - "w": 24, - "h": 35, - "fill": "hsl(207 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05682": { - "id": "shape:perf:05682", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 3584, - "rot": 0, - "props": { - "w": 35, - "h": 29, - "fill": "hsl(139 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05683": { - "id": "shape:perf:05683", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 3584, - "rot": 0, - "props": { - "w": 43, - "h": 27, - "fill": "hsl(46 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05684": { - "id": "shape:perf:05684", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 3584, - "rot": 0, - "props": { - "w": 38, - "h": 30, - "fill": "hsl(164 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05685": { - "id": "shape:perf:05685", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 3584, - "rot": 0, - "props": { - "w": 45, - "h": 37, - "fill": "hsl(231 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05686": { - "id": "shape:perf:05686", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 3584, - "rot": 0, - "props": { - "w": 44, - "h": 30, - "fill": "hsl(296 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05687": { - "id": "shape:perf:05687", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 3584, - "rot": 0, - "props": { - "w": 38, - "h": 41, - "fill": "hsl(344 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05688": { - "id": "shape:perf:05688", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 3584, - "rot": 0, - "props": { - "w": 35, - "h": 44, - "fill": "hsl(335 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05689": { - "id": "shape:perf:05689", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 3584, - "rot": 0, - "props": { - "w": 47, - "h": 25, - "fill": "hsl(342 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05690": { - "id": "shape:perf:05690", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 3584, - "rot": 0, - "props": { - "w": 29, - "h": 43, - "fill": "hsl(101 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05691": { - "id": "shape:perf:05691", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 3584, - "rot": 0, - "props": { - "w": 37, - "h": 32, - "fill": "hsl(307 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05692": { - "id": "shape:perf:05692", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 3584, - "rot": 0, - "props": { - "w": 38, - "h": 32, - "fill": "hsl(57 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05693": { - "id": "shape:perf:05693", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 3584, - "rot": 0, - "props": { - "w": 34, - "h": 26, - "fill": "hsl(49 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05694": { - "id": "shape:perf:05694", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 3584, - "rot": 0, - "props": { - "w": 38, - "h": 32, - "fill": "hsl(229 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05695": { - "id": "shape:perf:05695", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 3584, - "rot": 0, - "props": { - "w": 25, - "h": 43, - "fill": "hsl(292 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05696": { - "id": "shape:perf:05696", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 3584, - "rot": 0, - "props": { - "w": 35, - "h": 33, - "fill": "hsl(166 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05697": { - "id": "shape:perf:05697", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 3584, - "rot": 0, - "props": { - "w": 27, - "h": 27, - "fill": "hsl(269 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05698": { - "id": "shape:perf:05698", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 3584, - "rot": 0, - "props": { - "w": 47, - "h": 40, - "fill": "hsl(117 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05699": { - "id": "shape:perf:05699", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 3584, - "rot": 0, - "props": { - "w": 45, - "h": 39, - "fill": "hsl(293 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05700": { - "id": "shape:perf:05700", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 3648, - "rot": 0, - "props": { - "w": 28, - "h": 34, - "fill": "hsl(99 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05701": { - "id": "shape:perf:05701", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 3648, - "rot": 0, - "props": { - "w": 44, - "h": 42, - "fill": "hsl(135 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05702": { - "id": "shape:perf:05702", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 3648, - "rot": 0, - "props": { - "w": 32, - "h": 34, - "fill": "hsl(102 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05703": { - "id": "shape:perf:05703", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 3648, - "rot": 0, - "props": { - "w": 45, - "h": 34, - "fill": "hsl(142 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05704": { - "id": "shape:perf:05704", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 3648, - "rot": 0, - "props": { - "w": 43, - "h": 25, - "fill": "hsl(234 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05705": { - "id": "shape:perf:05705", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 3648, - "rot": 0, - "props": { - "w": 37, - "h": 32, - "fill": "hsl(126 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05706": { - "id": "shape:perf:05706", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 3648, - "rot": 0, - "props": { - "w": 28, - "h": 44, - "fill": "hsl(311 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05707": { - "id": "shape:perf:05707", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 3648, - "rot": 0, - "props": { - "w": 26, - "h": 33, - "fill": "hsl(215 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05708": { - "id": "shape:perf:05708", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 3648, - "rot": 0, - "props": { - "w": 43, - "h": 31, - "fill": "hsl(333 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05709": { - "id": "shape:perf:05709", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 3648, - "rot": 0, - "props": { - "w": 38, - "h": 47, - "fill": "hsl(97 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05710": { - "id": "shape:perf:05710", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 3648, - "rot": 0, - "props": { - "w": 33, - "h": 26, - "fill": "hsl(330 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05711": { - "id": "shape:perf:05711", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 3648, - "rot": 0, - "props": { - "w": 31, - "h": 36, - "fill": "hsl(94 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05712": { - "id": "shape:perf:05712", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 3648, - "rot": 0, - "props": { - "w": 25, - "h": 32, - "fill": "hsl(341 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05713": { - "id": "shape:perf:05713", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 3648, - "rot": 0, - "props": { - "w": 34, - "h": 41, - "fill": "hsl(326 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05714": { - "id": "shape:perf:05714", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 3648, - "rot": 0, - "props": { - "w": 35, - "h": 25, - "fill": "hsl(214 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05715": { - "id": "shape:perf:05715", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 3648, - "rot": 0, - "props": { - "w": 24, - "h": 36, - "fill": "hsl(296 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05716": { - "id": "shape:perf:05716", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 3648, - "rot": 0, - "props": { - "w": 46, - "h": 33, - "fill": "hsl(150 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05717": { - "id": "shape:perf:05717", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 3648, - "rot": 0, - "props": { - "w": 38, - "h": 37, - "fill": "hsl(108 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05718": { - "id": "shape:perf:05718", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 3648, - "rot": 0, - "props": { - "w": 25, - "h": 33, - "fill": "hsl(195 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05719": { - "id": "shape:perf:05719", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 3648, - "rot": 0, - "props": { - "w": 25, - "h": 44, - "fill": "hsl(9 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05720": { - "id": "shape:perf:05720", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 3648, - "rot": 0, - "props": { - "w": 42, - "h": 38, - "fill": "hsl(92 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05721": { - "id": "shape:perf:05721", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 3648, - "rot": 0, - "props": { - "w": 34, - "h": 30, - "fill": "hsl(26 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05722": { - "id": "shape:perf:05722", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 3648, - "rot": 0, - "props": { - "w": 26, - "h": 26, - "fill": "hsl(187 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05723": { - "id": "shape:perf:05723", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 3648, - "rot": 0, - "props": { - "w": 34, - "h": 34, - "fill": "hsl(80 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05724": { - "id": "shape:perf:05724", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 3648, - "rot": 0, - "props": { - "w": 40, - "h": 40, - "fill": "hsl(31 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05725": { - "id": "shape:perf:05725", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 3648, - "rot": 0, - "props": { - "w": 37, - "h": 34, - "fill": "hsl(98 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05726": { - "id": "shape:perf:05726", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 3648, - "rot": 0, - "props": { - "w": 34, - "h": 39, - "fill": "hsl(230 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05727": { - "id": "shape:perf:05727", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 3648, - "rot": 0, - "props": { - "w": 34, - "h": 37, - "fill": "hsl(75 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05728": { - "id": "shape:perf:05728", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 3648, - "rot": 0, - "props": { - "w": 41, - "h": 40, - "fill": "hsl(65 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05729": { - "id": "shape:perf:05729", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 3648, - "rot": 0, - "props": { - "w": 30, - "h": 40, - "fill": "hsl(105 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05730": { - "id": "shape:perf:05730", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 3648, - "rot": 0, - "props": { - "w": 38, - "h": 32, - "fill": "hsl(266 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05731": { - "id": "shape:perf:05731", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 3648, - "rot": 0, - "props": { - "w": 30, - "h": 27, - "fill": "hsl(264 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05732": { - "id": "shape:perf:05732", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 3648, - "rot": 0, - "props": { - "w": 29, - "h": 27, - "fill": "hsl(175 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05733": { - "id": "shape:perf:05733", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 3648, - "rot": 0, - "props": { - "w": 27, - "h": 41, - "fill": "hsl(230 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05734": { - "id": "shape:perf:05734", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 3648, - "rot": 0, - "props": { - "w": 38, - "h": 29, - "fill": "hsl(215 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05735": { - "id": "shape:perf:05735", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 3648, - "rot": 0, - "props": { - "w": 24, - "h": 42, - "fill": "hsl(43 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05736": { - "id": "shape:perf:05736", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 3648, - "rot": 0, - "props": { - "w": 27, - "h": 43, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05737": { - "id": "shape:perf:05737", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 3648, - "rot": 0, - "props": { - "w": 47, - "h": 42, - "fill": "hsl(232 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05738": { - "id": "shape:perf:05738", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 3648, - "rot": 0, - "props": { - "w": 46, - "h": 36, - "fill": "hsl(8 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05739": { - "id": "shape:perf:05739", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 3648, - "rot": 0, - "props": { - "w": 31, - "h": 24, - "fill": "hsl(246 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05740": { - "id": "shape:perf:05740", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 3648, - "rot": 0, - "props": { - "w": 28, - "h": 43, - "fill": "hsl(309 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05741": { - "id": "shape:perf:05741", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 3648, - "rot": 0, - "props": { - "w": 28, - "h": 44, - "fill": "hsl(132 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05742": { - "id": "shape:perf:05742", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 3648, - "rot": 0, - "props": { - "w": 47, - "h": 32, - "fill": "hsl(347 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05743": { - "id": "shape:perf:05743", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 3648, - "rot": 0, - "props": { - "w": 25, - "h": 30, - "fill": "hsl(297 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05744": { - "id": "shape:perf:05744", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 3648, - "rot": 0, - "props": { - "w": 39, - "h": 34, - "fill": "hsl(227 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05745": { - "id": "shape:perf:05745", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 3648, - "rot": 0, - "props": { - "w": 39, - "h": 33, - "fill": "hsl(93 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05746": { - "id": "shape:perf:05746", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 3648, - "rot": 0, - "props": { - "w": 42, - "h": 26, - "fill": "hsl(86 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05747": { - "id": "shape:perf:05747", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 3648, - "rot": 0, - "props": { - "w": 34, - "h": 28, - "fill": "hsl(12 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05748": { - "id": "shape:perf:05748", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 3648, - "rot": 0, - "props": { - "w": 42, - "h": 31, - "fill": "hsl(334 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05749": { - "id": "shape:perf:05749", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 3648, - "rot": 0, - "props": { - "w": 24, - "h": 29, - "fill": "hsl(142 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05750": { - "id": "shape:perf:05750", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 3648, - "rot": 0, - "props": { - "w": 30, - "h": 27, - "fill": "hsl(181 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05751": { - "id": "shape:perf:05751", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 3648, - "rot": 0, - "props": { - "w": 45, - "h": 46, - "fill": "hsl(59 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05752": { - "id": "shape:perf:05752", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 3648, - "rot": 0, - "props": { - "w": 45, - "h": 43, - "fill": "hsl(241 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05753": { - "id": "shape:perf:05753", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 3648, - "rot": 0, - "props": { - "w": 24, - "h": 39, - "fill": "hsl(105 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05754": { - "id": "shape:perf:05754", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 3648, - "rot": 0, - "props": { - "w": 30, - "h": 27, - "fill": "hsl(198 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05755": { - "id": "shape:perf:05755", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 3648, - "rot": 0, - "props": { - "w": 33, - "h": 29, - "fill": "hsl(246 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05756": { - "id": "shape:perf:05756", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 3648, - "rot": 0, - "props": { - "w": 38, - "h": 28, - "fill": "hsl(7 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05757": { - "id": "shape:perf:05757", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 3648, - "rot": 0, - "props": { - "w": 24, - "h": 28, - "fill": "hsl(228 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05758": { - "id": "shape:perf:05758", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 3648, - "rot": 0, - "props": { - "w": 30, - "h": 36, - "fill": "hsl(26 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05759": { - "id": "shape:perf:05759", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 3648, - "rot": 0, - "props": { - "w": 41, - "h": 29, - "fill": "hsl(300 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05760": { - "id": "shape:perf:05760", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 3648, - "rot": 0, - "props": { - "w": 38, - "h": 35, - "fill": "hsl(24 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05761": { - "id": "shape:perf:05761", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 3648, - "rot": 0, - "props": { - "w": 47, - "h": 41, - "fill": "hsl(164 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05762": { - "id": "shape:perf:05762", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 3648, - "rot": 0, - "props": { - "w": 44, - "h": 27, - "fill": "hsl(165 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05763": { - "id": "shape:perf:05763", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 3648, - "rot": 0, - "props": { - "w": 31, - "h": 47, - "fill": "hsl(297 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05764": { - "id": "shape:perf:05764", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 3648, - "rot": 0, - "props": { - "w": 38, - "h": 33, - "fill": "hsl(167 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05765": { - "id": "shape:perf:05765", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 3648, - "rot": 0, - "props": { - "w": 44, - "h": 25, - "fill": "hsl(194 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05766": { - "id": "shape:perf:05766", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 3648, - "rot": 0, - "props": { - "w": 35, - "h": 31, - "fill": "hsl(108 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05767": { - "id": "shape:perf:05767", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 3648, - "rot": 0, - "props": { - "w": 27, - "h": 27, - "fill": "hsl(194 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05768": { - "id": "shape:perf:05768", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 3648, - "rot": 0, - "props": { - "w": 30, - "h": 41, - "fill": "hsl(314 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05769": { - "id": "shape:perf:05769", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 3648, - "rot": 0, - "props": { - "w": 36, - "h": 30, - "fill": "hsl(48 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05770": { - "id": "shape:perf:05770", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 3648, - "rot": 0, - "props": { - "w": 42, - "h": 40, - "fill": "hsl(228 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05771": { - "id": "shape:perf:05771", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 3648, - "rot": 0, - "props": { - "w": 33, - "h": 24, - "fill": "hsl(137 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05772": { - "id": "shape:perf:05772", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 3648, - "rot": 0, - "props": { - "w": 34, - "h": 42, - "fill": "hsl(124 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05773": { - "id": "shape:perf:05773", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 3648, - "rot": 0, - "props": { - "w": 27, - "h": 46, - "fill": "hsl(84 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05774": { - "id": "shape:perf:05774", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 3648, - "rot": 0, - "props": { - "w": 41, - "h": 31, - "fill": "hsl(35 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05775": { - "id": "shape:perf:05775", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 3648, - "rot": 0, - "props": { - "w": 45, - "h": 27, - "fill": "hsl(72 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05776": { - "id": "shape:perf:05776", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 3648, - "rot": 0, - "props": { - "w": 28, - "h": 47, - "fill": "hsl(356 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05777": { - "id": "shape:perf:05777", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 3648, - "rot": 0, - "props": { - "w": 36, - "h": 29, - "fill": "hsl(8 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05778": { - "id": "shape:perf:05778", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 3648, - "rot": 0, - "props": { - "w": 35, - "h": 35, - "fill": "hsl(208 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05779": { - "id": "shape:perf:05779", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 3648, - "rot": 0, - "props": { - "w": 42, - "h": 24, - "fill": "hsl(176 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05780": { - "id": "shape:perf:05780", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 3648, - "rot": 0, - "props": { - "w": 25, - "h": 44, - "fill": "hsl(191 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05781": { - "id": "shape:perf:05781", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 3648, - "rot": 0, - "props": { - "w": 24, - "h": 28, - "fill": "hsl(74 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05782": { - "id": "shape:perf:05782", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 3648, - "rot": 0, - "props": { - "w": 28, - "h": 36, - "fill": "hsl(345 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05783": { - "id": "shape:perf:05783", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 3648, - "rot": 0, - "props": { - "w": 42, - "h": 44, - "fill": "hsl(80 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05784": { - "id": "shape:perf:05784", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 3648, - "rot": 0, - "props": { - "w": 38, - "h": 43, - "fill": "hsl(226 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05785": { - "id": "shape:perf:05785", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 3648, - "rot": 0, - "props": { - "w": 34, - "h": 39, - "fill": "hsl(133 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05786": { - "id": "shape:perf:05786", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 3648, - "rot": 0, - "props": { - "w": 40, - "h": 28, - "fill": "hsl(31 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05787": { - "id": "shape:perf:05787", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 3648, - "rot": 0, - "props": { - "w": 28, - "h": 42, - "fill": "hsl(22 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05788": { - "id": "shape:perf:05788", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 3648, - "rot": 0, - "props": { - "w": 38, - "h": 28, - "fill": "hsl(16 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05789": { - "id": "shape:perf:05789", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 3648, - "rot": 0, - "props": { - "w": 42, - "h": 47, - "fill": "hsl(204 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05790": { - "id": "shape:perf:05790", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 3648, - "rot": 0, - "props": { - "w": 40, - "h": 30, - "fill": "hsl(29 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05791": { - "id": "shape:perf:05791", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 3648, - "rot": 0, - "props": { - "w": 28, - "h": 44, - "fill": "hsl(298 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05792": { - "id": "shape:perf:05792", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 3648, - "rot": 0, - "props": { - "w": 35, - "h": 29, - "fill": "hsl(24 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05793": { - "id": "shape:perf:05793", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 3648, - "rot": 0, - "props": { - "w": 32, - "h": 24, - "fill": "hsl(274 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05794": { - "id": "shape:perf:05794", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 3648, - "rot": 0, - "props": { - "w": 36, - "h": 40, - "fill": "hsl(191 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05795": { - "id": "shape:perf:05795", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 3648, - "rot": 0, - "props": { - "w": 47, - "h": 32, - "fill": "hsl(141 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05796": { - "id": "shape:perf:05796", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 3648, - "rot": 0, - "props": { - "w": 40, - "h": 32, - "fill": "hsl(260 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05797": { - "id": "shape:perf:05797", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 3648, - "rot": 0, - "props": { - "w": 35, - "h": 34, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05798": { - "id": "shape:perf:05798", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 3648, - "rot": 0, - "props": { - "w": 31, - "h": 40, - "fill": "hsl(111 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05799": { - "id": "shape:perf:05799", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 3648, - "rot": 0, - "props": { - "w": 35, - "h": 38, - "fill": "hsl(164 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05800": { - "id": "shape:perf:05800", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 3712, - "rot": 0, - "props": { - "w": 30, - "h": 42, - "fill": "hsl(262 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05801": { - "id": "shape:perf:05801", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 3712, - "rot": 0, - "props": { - "w": 25, - "h": 28, - "fill": "hsl(168 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05802": { - "id": "shape:perf:05802", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 3712, - "rot": 0, - "props": { - "w": 28, - "h": 43, - "fill": "hsl(341 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05803": { - "id": "shape:perf:05803", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 3712, - "rot": 0, - "props": { - "w": 24, - "h": 38, - "fill": "hsl(301 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05804": { - "id": "shape:perf:05804", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 3712, - "rot": 0, - "props": { - "w": 25, - "h": 40, - "fill": "hsl(73 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05805": { - "id": "shape:perf:05805", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 3712, - "rot": 0, - "props": { - "w": 45, - "h": 39, - "fill": "hsl(172 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05806": { - "id": "shape:perf:05806", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 3712, - "rot": 0, - "props": { - "w": 37, - "h": 46, - "fill": "hsl(317 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05807": { - "id": "shape:perf:05807", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 3712, - "rot": 0, - "props": { - "w": 35, - "h": 26, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05808": { - "id": "shape:perf:05808", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 3712, - "rot": 0, - "props": { - "w": 26, - "h": 24, - "fill": "hsl(206 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05809": { - "id": "shape:perf:05809", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 3712, - "rot": 0, - "props": { - "w": 46, - "h": 41, - "fill": "hsl(125 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05810": { - "id": "shape:perf:05810", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 3712, - "rot": 0, - "props": { - "w": 38, - "h": 43, - "fill": "hsl(341 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05811": { - "id": "shape:perf:05811", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 3712, - "rot": 0, - "props": { - "w": 39, - "h": 25, - "fill": "hsl(201 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05812": { - "id": "shape:perf:05812", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 3712, - "rot": 0, - "props": { - "w": 28, - "h": 25, - "fill": "hsl(79 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05813": { - "id": "shape:perf:05813", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 3712, - "rot": 0, - "props": { - "w": 31, - "h": 36, - "fill": "hsl(192 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05814": { - "id": "shape:perf:05814", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 3712, - "rot": 0, - "props": { - "w": 29, - "h": 41, - "fill": "hsl(355 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05815": { - "id": "shape:perf:05815", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 3712, - "rot": 0, - "props": { - "w": 47, - "h": 34, - "fill": "hsl(162 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05816": { - "id": "shape:perf:05816", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 3712, - "rot": 0, - "props": { - "w": 38, - "h": 43, - "fill": "hsl(285 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05817": { - "id": "shape:perf:05817", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 3712, - "rot": 0, - "props": { - "w": 26, - "h": 44, - "fill": "hsl(123 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05818": { - "id": "shape:perf:05818", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 3712, - "rot": 0, - "props": { - "w": 44, - "h": 33, - "fill": "hsl(152 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05819": { - "id": "shape:perf:05819", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 3712, - "rot": 0, - "props": { - "w": 44, - "h": 45, - "fill": "hsl(117 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05820": { - "id": "shape:perf:05820", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 3712, - "rot": 0, - "props": { - "w": 45, - "h": 41, - "fill": "hsl(76 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05821": { - "id": "shape:perf:05821", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 3712, - "rot": 0, - "props": { - "w": 28, - "h": 35, - "fill": "hsl(157 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05822": { - "id": "shape:perf:05822", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 3712, - "rot": 0, - "props": { - "w": 34, - "h": 41, - "fill": "hsl(50 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05823": { - "id": "shape:perf:05823", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 3712, - "rot": 0, - "props": { - "w": 30, - "h": 44, - "fill": "hsl(80 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05824": { - "id": "shape:perf:05824", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 3712, - "rot": 0, - "props": { - "w": 30, - "h": 43, - "fill": "hsl(297 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05825": { - "id": "shape:perf:05825", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 3712, - "rot": 0, - "props": { - "w": 40, - "h": 32, - "fill": "hsl(179 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05826": { - "id": "shape:perf:05826", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 3712, - "rot": 0, - "props": { - "w": 34, - "h": 47, - "fill": "hsl(30 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05827": { - "id": "shape:perf:05827", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 3712, - "rot": 0, - "props": { - "w": 29, - "h": 39, - "fill": "hsl(134 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05828": { - "id": "shape:perf:05828", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 3712, - "rot": 0, - "props": { - "w": 32, - "h": 36, - "fill": "hsl(84 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05829": { - "id": "shape:perf:05829", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 3712, - "rot": 0, - "props": { - "w": 34, - "h": 45, - "fill": "hsl(334 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05830": { - "id": "shape:perf:05830", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 3712, - "rot": 0, - "props": { - "w": 27, - "h": 29, - "fill": "hsl(131 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05831": { - "id": "shape:perf:05831", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 3712, - "rot": 0, - "props": { - "w": 47, - "h": 29, - "fill": "hsl(22 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05832": { - "id": "shape:perf:05832", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 3712, - "rot": 0, - "props": { - "w": 25, - "h": 46, - "fill": "hsl(250 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05833": { - "id": "shape:perf:05833", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 3712, - "rot": 0, - "props": { - "w": 25, - "h": 24, - "fill": "hsl(202 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05834": { - "id": "shape:perf:05834", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 3712, - "rot": 0, - "props": { - "w": 27, - "h": 28, - "fill": "hsl(289 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05835": { - "id": "shape:perf:05835", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 3712, - "rot": 0, - "props": { - "w": 31, - "h": 40, - "fill": "hsl(123 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05836": { - "id": "shape:perf:05836", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 3712, - "rot": 0, - "props": { - "w": 31, - "h": 41, - "fill": "hsl(74 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05837": { - "id": "shape:perf:05837", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 3712, - "rot": 0, - "props": { - "w": 32, - "h": 33, - "fill": "hsl(259 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05838": { - "id": "shape:perf:05838", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 3712, - "rot": 0, - "props": { - "w": 37, - "h": 38, - "fill": "hsl(71 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05839": { - "id": "shape:perf:05839", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 3712, - "rot": 0, - "props": { - "w": 41, - "h": 39, - "fill": "hsl(225 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05840": { - "id": "shape:perf:05840", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 3712, - "rot": 0, - "props": { - "w": 36, - "h": 47, - "fill": "hsl(226 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05841": { - "id": "shape:perf:05841", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 3712, - "rot": 0, - "props": { - "w": 46, - "h": 31, - "fill": "hsl(57 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05842": { - "id": "shape:perf:05842", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 3712, - "rot": 0, - "props": { - "w": 30, - "h": 26, - "fill": "hsl(275 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05843": { - "id": "shape:perf:05843", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 3712, - "rot": 0, - "props": { - "w": 44, - "h": 36, - "fill": "hsl(92 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05844": { - "id": "shape:perf:05844", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 3712, - "rot": 0, - "props": { - "w": 45, - "h": 30, - "fill": "hsl(159 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05845": { - "id": "shape:perf:05845", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 3712, - "rot": 0, - "props": { - "w": 35, - "h": 44, - "fill": "hsl(247 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05846": { - "id": "shape:perf:05846", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 3712, - "rot": 0, - "props": { - "w": 37, - "h": 26, - "fill": "hsl(178 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05847": { - "id": "shape:perf:05847", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 3712, - "rot": 0, - "props": { - "w": 39, - "h": 33, - "fill": "hsl(174 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05848": { - "id": "shape:perf:05848", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 3712, - "rot": 0, - "props": { - "w": 43, - "h": 26, - "fill": "hsl(8 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05849": { - "id": "shape:perf:05849", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 3712, - "rot": 0, - "props": { - "w": 25, - "h": 31, - "fill": "hsl(183 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05850": { - "id": "shape:perf:05850", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 3712, - "rot": 0, - "props": { - "w": 42, - "h": 40, - "fill": "hsl(155 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05851": { - "id": "shape:perf:05851", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 3712, - "rot": 0, - "props": { - "w": 26, - "h": 25, - "fill": "hsl(210 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05852": { - "id": "shape:perf:05852", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 3712, - "rot": 0, - "props": { - "w": 33, - "h": 39, - "fill": "hsl(185 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05853": { - "id": "shape:perf:05853", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 3712, - "rot": 0, - "props": { - "w": 26, - "h": 35, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05854": { - "id": "shape:perf:05854", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 3712, - "rot": 0, - "props": { - "w": 37, - "h": 37, - "fill": "hsl(19 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05855": { - "id": "shape:perf:05855", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 3712, - "rot": 0, - "props": { - "w": 43, - "h": 28, - "fill": "hsl(338 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05856": { - "id": "shape:perf:05856", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 3712, - "rot": 0, - "props": { - "w": 39, - "h": 43, - "fill": "hsl(251 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05857": { - "id": "shape:perf:05857", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 3712, - "rot": 0, - "props": { - "w": 32, - "h": 29, - "fill": "hsl(256 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05858": { - "id": "shape:perf:05858", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 3712, - "rot": 0, - "props": { - "w": 31, - "h": 36, - "fill": "hsl(115 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05859": { - "id": "shape:perf:05859", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 3712, - "rot": 0, - "props": { - "w": 47, - "h": 34, - "fill": "hsl(126 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05860": { - "id": "shape:perf:05860", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 3712, - "rot": 0, - "props": { - "w": 39, - "h": 38, - "fill": "hsl(152 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05861": { - "id": "shape:perf:05861", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 3712, - "rot": 0, - "props": { - "w": 27, - "h": 30, - "fill": "hsl(193 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05862": { - "id": "shape:perf:05862", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 3712, - "rot": 0, - "props": { - "w": 40, - "h": 29, - "fill": "hsl(16 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05863": { - "id": "shape:perf:05863", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 3712, - "rot": 0, - "props": { - "w": 35, - "h": 47, - "fill": "hsl(337 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05864": { - "id": "shape:perf:05864", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 3712, - "rot": 0, - "props": { - "w": 44, - "h": 32, - "fill": "hsl(175 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05865": { - "id": "shape:perf:05865", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 3712, - "rot": 0, - "props": { - "w": 37, - "h": 40, - "fill": "hsl(214 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05866": { - "id": "shape:perf:05866", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 3712, - "rot": 0, - "props": { - "w": 26, - "h": 26, - "fill": "hsl(219 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05867": { - "id": "shape:perf:05867", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 3712, - "rot": 0, - "props": { - "w": 46, - "h": 42, - "fill": "hsl(115 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05868": { - "id": "shape:perf:05868", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 3712, - "rot": 0, - "props": { - "w": 31, - "h": 45, - "fill": "hsl(28 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05869": { - "id": "shape:perf:05869", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 3712, - "rot": 0, - "props": { - "w": 40, - "h": 44, - "fill": "hsl(213 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05870": { - "id": "shape:perf:05870", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 3712, - "rot": 0, - "props": { - "w": 26, - "h": 36, - "fill": "hsl(98 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05871": { - "id": "shape:perf:05871", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 3712, - "rot": 0, - "props": { - "w": 40, - "h": 40, - "fill": "hsl(7 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05872": { - "id": "shape:perf:05872", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 3712, - "rot": 0, - "props": { - "w": 45, - "h": 45, - "fill": "hsl(40 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05873": { - "id": "shape:perf:05873", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 3712, - "rot": 0, - "props": { - "w": 42, - "h": 25, - "fill": "hsl(49 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05874": { - "id": "shape:perf:05874", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 3712, - "rot": 0, - "props": { - "w": 31, - "h": 41, - "fill": "hsl(188 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05875": { - "id": "shape:perf:05875", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 3712, - "rot": 0, - "props": { - "w": 26, - "h": 44, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05876": { - "id": "shape:perf:05876", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 3712, - "rot": 0, - "props": { - "w": 28, - "h": 26, - "fill": "hsl(35 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05877": { - "id": "shape:perf:05877", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 3712, - "rot": 0, - "props": { - "w": 26, - "h": 37, - "fill": "hsl(177 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05878": { - "id": "shape:perf:05878", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 3712, - "rot": 0, - "props": { - "w": 46, - "h": 27, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05879": { - "id": "shape:perf:05879", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 3712, - "rot": 0, - "props": { - "w": 41, - "h": 34, - "fill": "hsl(126 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05880": { - "id": "shape:perf:05880", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 3712, - "rot": 0, - "props": { - "w": 25, - "h": 25, - "fill": "hsl(139 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05881": { - "id": "shape:perf:05881", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 3712, - "rot": 0, - "props": { - "w": 47, - "h": 31, - "fill": "hsl(155 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05882": { - "id": "shape:perf:05882", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 3712, - "rot": 0, - "props": { - "w": 42, - "h": 26, - "fill": "hsl(201 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05883": { - "id": "shape:perf:05883", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 3712, - "rot": 0, - "props": { - "w": 24, - "h": 35, - "fill": "hsl(29 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05884": { - "id": "shape:perf:05884", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 3712, - "rot": 0, - "props": { - "w": 46, - "h": 38, - "fill": "hsl(326 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05885": { - "id": "shape:perf:05885", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 3712, - "rot": 0, - "props": { - "w": 39, - "h": 43, - "fill": "hsl(180 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05886": { - "id": "shape:perf:05886", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 3712, - "rot": 0, - "props": { - "w": 28, - "h": 45, - "fill": "hsl(343 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05887": { - "id": "shape:perf:05887", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 3712, - "rot": 0, - "props": { - "w": 41, - "h": 30, - "fill": "hsl(285 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05888": { - "id": "shape:perf:05888", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 3712, - "rot": 0, - "props": { - "w": 39, - "h": 28, - "fill": "hsl(265 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05889": { - "id": "shape:perf:05889", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 3712, - "rot": 0, - "props": { - "w": 44, - "h": 46, - "fill": "hsl(80 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05890": { - "id": "shape:perf:05890", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 3712, - "rot": 0, - "props": { - "w": 44, - "h": 25, - "fill": "hsl(188 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05891": { - "id": "shape:perf:05891", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 3712, - "rot": 0, - "props": { - "w": 29, - "h": 36, - "fill": "hsl(195 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05892": { - "id": "shape:perf:05892", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 3712, - "rot": 0, - "props": { - "w": 24, - "h": 37, - "fill": "hsl(59 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05893": { - "id": "shape:perf:05893", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 3712, - "rot": 0, - "props": { - "w": 41, - "h": 43, - "fill": "hsl(11 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05894": { - "id": "shape:perf:05894", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 3712, - "rot": 0, - "props": { - "w": 31, - "h": 44, - "fill": "hsl(269 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05895": { - "id": "shape:perf:05895", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 3712, - "rot": 0, - "props": { - "w": 35, - "h": 43, - "fill": "hsl(20 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05896": { - "id": "shape:perf:05896", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 3712, - "rot": 0, - "props": { - "w": 44, - "h": 25, - "fill": "hsl(8 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05897": { - "id": "shape:perf:05897", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 3712, - "rot": 0, - "props": { - "w": 32, - "h": 35, - "fill": "hsl(6 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05898": { - "id": "shape:perf:05898", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 3712, - "rot": 0, - "props": { - "w": 45, - "h": 38, - "fill": "hsl(127 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05899": { - "id": "shape:perf:05899", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 3712, - "rot": 0, - "props": { - "w": 25, - "h": 29, - "fill": "hsl(122 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05900": { - "id": "shape:perf:05900", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 3776, - "rot": 0, - "props": { - "w": 25, - "h": 45, - "fill": "hsl(178 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05901": { - "id": "shape:perf:05901", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 3776, - "rot": 0, - "props": { - "w": 36, - "h": 37, - "fill": "hsl(270 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05902": { - "id": "shape:perf:05902", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 3776, - "rot": 0, - "props": { - "w": 41, - "h": 33, - "fill": "hsl(232 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05903": { - "id": "shape:perf:05903", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 3776, - "rot": 0, - "props": { - "w": 43, - "h": 36, - "fill": "hsl(329 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05904": { - "id": "shape:perf:05904", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 3776, - "rot": 0, - "props": { - "w": 35, - "h": 30, - "fill": "hsl(243 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05905": { - "id": "shape:perf:05905", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 3776, - "rot": 0, - "props": { - "w": 41, - "h": 25, - "fill": "hsl(264 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05906": { - "id": "shape:perf:05906", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 3776, - "rot": 0, - "props": { - "w": 42, - "h": 34, - "fill": "hsl(284 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05907": { - "id": "shape:perf:05907", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 3776, - "rot": 0, - "props": { - "w": 25, - "h": 41, - "fill": "hsl(274 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05908": { - "id": "shape:perf:05908", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 3776, - "rot": 0, - "props": { - "w": 33, - "h": 33, - "fill": "hsl(193 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05909": { - "id": "shape:perf:05909", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 3776, - "rot": 0, - "props": { - "w": 37, - "h": 34, - "fill": "hsl(105 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05910": { - "id": "shape:perf:05910", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 3776, - "rot": 0, - "props": { - "w": 45, - "h": 34, - "fill": "hsl(267 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05911": { - "id": "shape:perf:05911", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 3776, - "rot": 0, - "props": { - "w": 44, - "h": 30, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05912": { - "id": "shape:perf:05912", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 3776, - "rot": 0, - "props": { - "w": 33, - "h": 47, - "fill": "hsl(55 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05913": { - "id": "shape:perf:05913", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 3776, - "rot": 0, - "props": { - "w": 28, - "h": 37, - "fill": "hsl(337 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05914": { - "id": "shape:perf:05914", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 3776, - "rot": 0, - "props": { - "w": 41, - "h": 32, - "fill": "hsl(302 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05915": { - "id": "shape:perf:05915", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 3776, - "rot": 0, - "props": { - "w": 33, - "h": 47, - "fill": "hsl(75 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05916": { - "id": "shape:perf:05916", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 3776, - "rot": 0, - "props": { - "w": 27, - "h": 47, - "fill": "hsl(104 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05917": { - "id": "shape:perf:05917", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 3776, - "rot": 0, - "props": { - "w": 34, - "h": 33, - "fill": "hsl(181 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05918": { - "id": "shape:perf:05918", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 3776, - "rot": 0, - "props": { - "w": 42, - "h": 38, - "fill": "hsl(108 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05919": { - "id": "shape:perf:05919", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 3776, - "rot": 0, - "props": { - "w": 33, - "h": 45, - "fill": "hsl(174 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05920": { - "id": "shape:perf:05920", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 3776, - "rot": 0, - "props": { - "w": 24, - "h": 35, - "fill": "hsl(252 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05921": { - "id": "shape:perf:05921", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 3776, - "rot": 0, - "props": { - "w": 44, - "h": 41, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05922": { - "id": "shape:perf:05922", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 3776, - "rot": 0, - "props": { - "w": 40, - "h": 45, - "fill": "hsl(18 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05923": { - "id": "shape:perf:05923", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 3776, - "rot": 0, - "props": { - "w": 24, - "h": 46, - "fill": "hsl(293 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05924": { - "id": "shape:perf:05924", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 3776, - "rot": 0, - "props": { - "w": 29, - "h": 40, - "fill": "hsl(283 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05925": { - "id": "shape:perf:05925", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 3776, - "rot": 0, - "props": { - "w": 31, - "h": 33, - "fill": "hsl(94 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05926": { - "id": "shape:perf:05926", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 3776, - "rot": 0, - "props": { - "w": 29, - "h": 39, - "fill": "hsl(253 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05927": { - "id": "shape:perf:05927", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 3776, - "rot": 0, - "props": { - "w": 29, - "h": 37, - "fill": "hsl(281 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05928": { - "id": "shape:perf:05928", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 3776, - "rot": 0, - "props": { - "w": 32, - "h": 27, - "fill": "hsl(152 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05929": { - "id": "shape:perf:05929", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 3776, - "rot": 0, - "props": { - "w": 44, - "h": 47, - "fill": "hsl(194 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05930": { - "id": "shape:perf:05930", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 3776, - "rot": 0, - "props": { - "w": 44, - "h": 40, - "fill": "hsl(217 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05931": { - "id": "shape:perf:05931", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 3776, - "rot": 0, - "props": { - "w": 31, - "h": 24, - "fill": "hsl(41 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05932": { - "id": "shape:perf:05932", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 3776, - "rot": 0, - "props": { - "w": 31, - "h": 30, - "fill": "hsl(32 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05933": { - "id": "shape:perf:05933", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 3776, - "rot": 0, - "props": { - "w": 45, - "h": 31, - "fill": "hsl(310 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05934": { - "id": "shape:perf:05934", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 3776, - "rot": 0, - "props": { - "w": 27, - "h": 40, - "fill": "hsl(70 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05935": { - "id": "shape:perf:05935", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 3776, - "rot": 0, - "props": { - "w": 43, - "h": 24, - "fill": "hsl(255 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05936": { - "id": "shape:perf:05936", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 3776, - "rot": 0, - "props": { - "w": 24, - "h": 26, - "fill": "hsl(246 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05937": { - "id": "shape:perf:05937", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 3776, - "rot": 0, - "props": { - "w": 32, - "h": 27, - "fill": "hsl(60 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05938": { - "id": "shape:perf:05938", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 3776, - "rot": 0, - "props": { - "w": 34, - "h": 34, - "fill": "hsl(79 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05939": { - "id": "shape:perf:05939", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 3776, - "rot": 0, - "props": { - "w": 37, - "h": 24, - "fill": "hsl(287 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05940": { - "id": "shape:perf:05940", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 3776, - "rot": 0, - "props": { - "w": 28, - "h": 32, - "fill": "hsl(205 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05941": { - "id": "shape:perf:05941", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 3776, - "rot": 0, - "props": { - "w": 28, - "h": 45, - "fill": "hsl(342 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05942": { - "id": "shape:perf:05942", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 3776, - "rot": 0, - "props": { - "w": 40, - "h": 42, - "fill": "hsl(156 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05943": { - "id": "shape:perf:05943", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 3776, - "rot": 0, - "props": { - "w": 34, - "h": 34, - "fill": "hsl(233 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05944": { - "id": "shape:perf:05944", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 3776, - "rot": 0, - "props": { - "w": 46, - "h": 27, - "fill": "hsl(287 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05945": { - "id": "shape:perf:05945", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 3776, - "rot": 0, - "props": { - "w": 38, - "h": 24, - "fill": "hsl(45 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05946": { - "id": "shape:perf:05946", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 3776, - "rot": 0, - "props": { - "w": 45, - "h": 27, - "fill": "hsl(316 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05947": { - "id": "shape:perf:05947", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 3776, - "rot": 0, - "props": { - "w": 31, - "h": 29, - "fill": "hsl(179 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05948": { - "id": "shape:perf:05948", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 3776, - "rot": 0, - "props": { - "w": 33, - "h": 44, - "fill": "hsl(187 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05949": { - "id": "shape:perf:05949", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 3776, - "rot": 0, - "props": { - "w": 33, - "h": 30, - "fill": "hsl(17 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05950": { - "id": "shape:perf:05950", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 3776, - "rot": 0, - "props": { - "w": 43, - "h": 27, - "fill": "hsl(317 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05951": { - "id": "shape:perf:05951", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 3776, - "rot": 0, - "props": { - "w": 32, - "h": 32, - "fill": "hsl(219 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05952": { - "id": "shape:perf:05952", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 3776, - "rot": 0, - "props": { - "w": 25, - "h": 39, - "fill": "hsl(17 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05953": { - "id": "shape:perf:05953", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 3776, - "rot": 0, - "props": { - "w": 27, - "h": 37, - "fill": "hsl(86 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05954": { - "id": "shape:perf:05954", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 3776, - "rot": 0, - "props": { - "w": 34, - "h": 37, - "fill": "hsl(123 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05955": { - "id": "shape:perf:05955", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 3776, - "rot": 0, - "props": { - "w": 31, - "h": 45, - "fill": "hsl(239 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05956": { - "id": "shape:perf:05956", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 3776, - "rot": 0, - "props": { - "w": 33, - "h": 34, - "fill": "hsl(27 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05957": { - "id": "shape:perf:05957", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 3776, - "rot": 0, - "props": { - "w": 44, - "h": 36, - "fill": "hsl(214 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05958": { - "id": "shape:perf:05958", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 3776, - "rot": 0, - "props": { - "w": 28, - "h": 27, - "fill": "hsl(350 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05959": { - "id": "shape:perf:05959", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 3776, - "rot": 0, - "props": { - "w": 44, - "h": 26, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05960": { - "id": "shape:perf:05960", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 3776, - "rot": 0, - "props": { - "w": 41, - "h": 40, - "fill": "hsl(4 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05961": { - "id": "shape:perf:05961", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 3776, - "rot": 0, - "props": { - "w": 24, - "h": 24, - "fill": "hsl(50 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05962": { - "id": "shape:perf:05962", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 3776, - "rot": 0, - "props": { - "w": 41, - "h": 30, - "fill": "hsl(181 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05963": { - "id": "shape:perf:05963", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 3776, - "rot": 0, - "props": { - "w": 47, - "h": 43, - "fill": "hsl(176 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05964": { - "id": "shape:perf:05964", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 3776, - "rot": 0, - "props": { - "w": 40, - "h": 30, - "fill": "hsl(160 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05965": { - "id": "shape:perf:05965", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 3776, - "rot": 0, - "props": { - "w": 28, - "h": 45, - "fill": "hsl(217 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05966": { - "id": "shape:perf:05966", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 3776, - "rot": 0, - "props": { - "w": 31, - "h": 34, - "fill": "hsl(43 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05967": { - "id": "shape:perf:05967", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 3776, - "rot": 0, - "props": { - "w": 37, - "h": 34, - "fill": "hsl(249 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05968": { - "id": "shape:perf:05968", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 3776, - "rot": 0, - "props": { - "w": 42, - "h": 46, - "fill": "hsl(70 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05969": { - "id": "shape:perf:05969", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 3776, - "rot": 0, - "props": { - "w": 29, - "h": 47, - "fill": "hsl(150 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05970": { - "id": "shape:perf:05970", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 3776, - "rot": 0, - "props": { - "w": 28, - "h": 28, - "fill": "hsl(192 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05971": { - "id": "shape:perf:05971", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 3776, - "rot": 0, - "props": { - "w": 31, - "h": 42, - "fill": "hsl(325 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05972": { - "id": "shape:perf:05972", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 3776, - "rot": 0, - "props": { - "w": 38, - "h": 30, - "fill": "hsl(164 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05973": { - "id": "shape:perf:05973", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 3776, - "rot": 0, - "props": { - "w": 26, - "h": 47, - "fill": "hsl(302 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05974": { - "id": "shape:perf:05974", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 3776, - "rot": 0, - "props": { - "w": 29, - "h": 47, - "fill": "hsl(190 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05975": { - "id": "shape:perf:05975", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 3776, - "rot": 0, - "props": { - "w": 41, - "h": 37, - "fill": "hsl(31 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05976": { - "id": "shape:perf:05976", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 3776, - "rot": 0, - "props": { - "w": 42, - "h": 47, - "fill": "hsl(357 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05977": { - "id": "shape:perf:05977", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 3776, - "rot": 0, - "props": { - "w": 44, - "h": 47, - "fill": "hsl(127 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05978": { - "id": "shape:perf:05978", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 3776, - "rot": 0, - "props": { - "w": 25, - "h": 27, - "fill": "hsl(308 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05979": { - "id": "shape:perf:05979", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 3776, - "rot": 0, - "props": { - "w": 36, - "h": 36, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05980": { - "id": "shape:perf:05980", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 3776, - "rot": 0, - "props": { - "w": 24, - "h": 27, - "fill": "hsl(149 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05981": { - "id": "shape:perf:05981", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 3776, - "rot": 0, - "props": { - "w": 44, - "h": 36, - "fill": "hsl(206 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05982": { - "id": "shape:perf:05982", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 3776, - "rot": 0, - "props": { - "w": 28, - "h": 39, - "fill": "hsl(293 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05983": { - "id": "shape:perf:05983", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 3776, - "rot": 0, - "props": { - "w": 33, - "h": 34, - "fill": "hsl(234 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05984": { - "id": "shape:perf:05984", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 3776, - "rot": 0, - "props": { - "w": 38, - "h": 31, - "fill": "hsl(340 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05985": { - "id": "shape:perf:05985", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 3776, - "rot": 0, - "props": { - "w": 40, - "h": 29, - "fill": "hsl(74 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05986": { - "id": "shape:perf:05986", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 3776, - "rot": 0, - "props": { - "w": 39, - "h": 26, - "fill": "hsl(329 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05987": { - "id": "shape:perf:05987", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 3776, - "rot": 0, - "props": { - "w": 27, - "h": 42, - "fill": "hsl(85 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05988": { - "id": "shape:perf:05988", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 3776, - "rot": 0, - "props": { - "w": 46, - "h": 39, - "fill": "hsl(96 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05989": { - "id": "shape:perf:05989", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 3776, - "rot": 0, - "props": { - "w": 31, - "h": 29, - "fill": "hsl(329 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05990": { - "id": "shape:perf:05990", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 3776, - "rot": 0, - "props": { - "w": 41, - "h": 24, - "fill": "hsl(157 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05991": { - "id": "shape:perf:05991", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 3776, - "rot": 0, - "props": { - "w": 28, - "h": 29, - "fill": "hsl(167 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05992": { - "id": "shape:perf:05992", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 3776, - "rot": 0, - "props": { - "w": 33, - "h": 43, - "fill": "hsl(113 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05993": { - "id": "shape:perf:05993", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 3776, - "rot": 0, - "props": { - "w": 37, - "h": 44, - "fill": "hsl(21 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05994": { - "id": "shape:perf:05994", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 3776, - "rot": 0, - "props": { - "w": 43, - "h": 27, - "fill": "hsl(281 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:05995": { - "id": "shape:perf:05995", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 3776, - "rot": 0, - "props": { - "w": 42, - "h": 25, - "fill": "hsl(165 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:05996": { - "id": "shape:perf:05996", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 3776, - "rot": 0, - "props": { - "w": 39, - "h": 46, - "fill": "hsl(35 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:05997": { - "id": "shape:perf:05997", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 3776, - "rot": 0, - "props": { - "w": 28, - "h": 28, - "fill": "hsl(245 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:05998": { - "id": "shape:perf:05998", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 3776, - "rot": 0, - "props": { - "w": 33, - "h": 31, - "fill": "hsl(342 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:05999": { - "id": "shape:perf:05999", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 3776, - "rot": 0, - "props": { - "w": 31, - "h": 35, - "fill": "hsl(16 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06000": { - "id": "shape:perf:06000", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 3840, - "rot": 0, - "props": { - "w": 41, - "h": 43, - "fill": "hsl(351 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06001": { - "id": "shape:perf:06001", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 3840, - "rot": 0, - "props": { - "w": 26, - "h": 24, - "fill": "hsl(83 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06002": { - "id": "shape:perf:06002", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 3840, - "rot": 0, - "props": { - "w": 41, - "h": 42, - "fill": "hsl(196 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06003": { - "id": "shape:perf:06003", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 3840, - "rot": 0, - "props": { - "w": 27, - "h": 28, - "fill": "hsl(106 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06004": { - "id": "shape:perf:06004", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 3840, - "rot": 0, - "props": { - "w": 47, - "h": 46, - "fill": "hsl(327 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06005": { - "id": "shape:perf:06005", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 3840, - "rot": 0, - "props": { - "w": 34, - "h": 30, - "fill": "hsl(304 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06006": { - "id": "shape:perf:06006", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 3840, - "rot": 0, - "props": { - "w": 27, - "h": 28, - "fill": "hsl(26 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06007": { - "id": "shape:perf:06007", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 3840, - "rot": 0, - "props": { - "w": 38, - "h": 28, - "fill": "hsl(136 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06008": { - "id": "shape:perf:06008", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 3840, - "rot": 0, - "props": { - "w": 27, - "h": 43, - "fill": "hsl(223 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06009": { - "id": "shape:perf:06009", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 3840, - "rot": 0, - "props": { - "w": 28, - "h": 26, - "fill": "hsl(90 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06010": { - "id": "shape:perf:06010", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 3840, - "rot": 0, - "props": { - "w": 35, - "h": 41, - "fill": "hsl(194 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06011": { - "id": "shape:perf:06011", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 3840, - "rot": 0, - "props": { - "w": 31, - "h": 42, - "fill": "hsl(134 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06012": { - "id": "shape:perf:06012", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 3840, - "rot": 0, - "props": { - "w": 27, - "h": 36, - "fill": "hsl(263 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06013": { - "id": "shape:perf:06013", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 3840, - "rot": 0, - "props": { - "w": 38, - "h": 31, - "fill": "hsl(193 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06014": { - "id": "shape:perf:06014", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 3840, - "rot": 0, - "props": { - "w": 43, - "h": 45, - "fill": "hsl(194 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06015": { - "id": "shape:perf:06015", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 3840, - "rot": 0, - "props": { - "w": 38, - "h": 31, - "fill": "hsl(356 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06016": { - "id": "shape:perf:06016", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 3840, - "rot": 0, - "props": { - "w": 26, - "h": 35, - "fill": "hsl(93 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06017": { - "id": "shape:perf:06017", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 3840, - "rot": 0, - "props": { - "w": 37, - "h": 35, - "fill": "hsl(144 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06018": { - "id": "shape:perf:06018", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 3840, - "rot": 0, - "props": { - "w": 43, - "h": 45, - "fill": "hsl(131 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06019": { - "id": "shape:perf:06019", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 3840, - "rot": 0, - "props": { - "w": 38, - "h": 28, - "fill": "hsl(113 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06020": { - "id": "shape:perf:06020", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 3840, - "rot": 0, - "props": { - "w": 37, - "h": 32, - "fill": "hsl(19 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06021": { - "id": "shape:perf:06021", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 3840, - "rot": 0, - "props": { - "w": 34, - "h": 27, - "fill": "hsl(222 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06022": { - "id": "shape:perf:06022", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 3840, - "rot": 0, - "props": { - "w": 27, - "h": 29, - "fill": "hsl(291 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06023": { - "id": "shape:perf:06023", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 3840, - "rot": 0, - "props": { - "w": 41, - "h": 41, - "fill": "hsl(36 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06024": { - "id": "shape:perf:06024", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 3840, - "rot": 0, - "props": { - "w": 44, - "h": 38, - "fill": "hsl(23 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06025": { - "id": "shape:perf:06025", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 3840, - "rot": 0, - "props": { - "w": 42, - "h": 24, - "fill": "hsl(292 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06026": { - "id": "shape:perf:06026", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 3840, - "rot": 0, - "props": { - "w": 40, - "h": 47, - "fill": "hsl(264 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06027": { - "id": "shape:perf:06027", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 3840, - "rot": 0, - "props": { - "w": 44, - "h": 43, - "fill": "hsl(55 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06028": { - "id": "shape:perf:06028", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 3840, - "rot": 0, - "props": { - "w": 33, - "h": 25, - "fill": "hsl(194 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06029": { - "id": "shape:perf:06029", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 3840, - "rot": 0, - "props": { - "w": 26, - "h": 25, - "fill": "hsl(290 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06030": { - "id": "shape:perf:06030", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 3840, - "rot": 0, - "props": { - "w": 40, - "h": 39, - "fill": "hsl(197 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06031": { - "id": "shape:perf:06031", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 3840, - "rot": 0, - "props": { - "w": 36, - "h": 32, - "fill": "hsl(302 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06032": { - "id": "shape:perf:06032", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 3840, - "rot": 0, - "props": { - "w": 31, - "h": 32, - "fill": "hsl(178 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06033": { - "id": "shape:perf:06033", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 3840, - "rot": 0, - "props": { - "w": 46, - "h": 38, - "fill": "hsl(43 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06034": { - "id": "shape:perf:06034", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 3840, - "rot": 0, - "props": { - "w": 45, - "h": 33, - "fill": "hsl(47 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06035": { - "id": "shape:perf:06035", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 3840, - "rot": 0, - "props": { - "w": 44, - "h": 43, - "fill": "hsl(297 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06036": { - "id": "shape:perf:06036", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 3840, - "rot": 0, - "props": { - "w": 46, - "h": 28, - "fill": "hsl(32 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06037": { - "id": "shape:perf:06037", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 3840, - "rot": 0, - "props": { - "w": 27, - "h": 44, - "fill": "hsl(136 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06038": { - "id": "shape:perf:06038", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 3840, - "rot": 0, - "props": { - "w": 43, - "h": 36, - "fill": "hsl(339 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06039": { - "id": "shape:perf:06039", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 3840, - "rot": 0, - "props": { - "w": 44, - "h": 41, - "fill": "hsl(179 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06040": { - "id": "shape:perf:06040", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 3840, - "rot": 0, - "props": { - "w": 34, - "h": 25, - "fill": "hsl(272 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06041": { - "id": "shape:perf:06041", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 3840, - "rot": 0, - "props": { - "w": 34, - "h": 32, - "fill": "hsl(254 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06042": { - "id": "shape:perf:06042", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 3840, - "rot": 0, - "props": { - "w": 40, - "h": 31, - "fill": "hsl(95 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06043": { - "id": "shape:perf:06043", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 3840, - "rot": 0, - "props": { - "w": 31, - "h": 42, - "fill": "hsl(261 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06044": { - "id": "shape:perf:06044", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 3840, - "rot": 0, - "props": { - "w": 39, - "h": 34, - "fill": "hsl(67 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06045": { - "id": "shape:perf:06045", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 3840, - "rot": 0, - "props": { - "w": 42, - "h": 45, - "fill": "hsl(148 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06046": { - "id": "shape:perf:06046", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 3840, - "rot": 0, - "props": { - "w": 46, - "h": 29, - "fill": "hsl(300 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06047": { - "id": "shape:perf:06047", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 3840, - "rot": 0, - "props": { - "w": 33, - "h": 38, - "fill": "hsl(318 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06048": { - "id": "shape:perf:06048", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 3840, - "rot": 0, - "props": { - "w": 37, - "h": 42, - "fill": "hsl(201 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06049": { - "id": "shape:perf:06049", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 3840, - "rot": 0, - "props": { - "w": 47, - "h": 42, - "fill": "hsl(167 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06050": { - "id": "shape:perf:06050", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 3840, - "rot": 0, - "props": { - "w": 33, - "h": 40, - "fill": "hsl(129 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06051": { - "id": "shape:perf:06051", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 3840, - "rot": 0, - "props": { - "w": 39, - "h": 46, - "fill": "hsl(117 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06052": { - "id": "shape:perf:06052", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 3840, - "rot": 0, - "props": { - "w": 33, - "h": 44, - "fill": "hsl(205 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06053": { - "id": "shape:perf:06053", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 3840, - "rot": 0, - "props": { - "w": 44, - "h": 34, - "fill": "hsl(222 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06054": { - "id": "shape:perf:06054", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 3840, - "rot": 0, - "props": { - "w": 31, - "h": 40, - "fill": "hsl(229 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06055": { - "id": "shape:perf:06055", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 3840, - "rot": 0, - "props": { - "w": 46, - "h": 29, - "fill": "hsl(254 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06056": { - "id": "shape:perf:06056", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 3840, - "rot": 0, - "props": { - "w": 43, - "h": 30, - "fill": "hsl(69 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06057": { - "id": "shape:perf:06057", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 3840, - "rot": 0, - "props": { - "w": 38, - "h": 34, - "fill": "hsl(60 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06058": { - "id": "shape:perf:06058", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 3840, - "rot": 0, - "props": { - "w": 38, - "h": 31, - "fill": "hsl(88 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06059": { - "id": "shape:perf:06059", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 3840, - "rot": 0, - "props": { - "w": 24, - "h": 46, - "fill": "hsl(303 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06060": { - "id": "shape:perf:06060", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 3840, - "rot": 0, - "props": { - "w": 26, - "h": 29, - "fill": "hsl(76 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06061": { - "id": "shape:perf:06061", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 3840, - "rot": 0, - "props": { - "w": 36, - "h": 39, - "fill": "hsl(255 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06062": { - "id": "shape:perf:06062", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 3840, - "rot": 0, - "props": { - "w": 42, - "h": 33, - "fill": "hsl(34 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06063": { - "id": "shape:perf:06063", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 3840, - "rot": 0, - "props": { - "w": 45, - "h": 40, - "fill": "hsl(12 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06064": { - "id": "shape:perf:06064", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 3840, - "rot": 0, - "props": { - "w": 38, - "h": 38, - "fill": "hsl(333 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06065": { - "id": "shape:perf:06065", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 3840, - "rot": 0, - "props": { - "w": 41, - "h": 45, - "fill": "hsl(132 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06066": { - "id": "shape:perf:06066", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 3840, - "rot": 0, - "props": { - "w": 31, - "h": 43, - "fill": "hsl(92 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06067": { - "id": "shape:perf:06067", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 3840, - "rot": 0, - "props": { - "w": 29, - "h": 31, - "fill": "hsl(355 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06068": { - "id": "shape:perf:06068", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 3840, - "rot": 0, - "props": { - "w": 35, - "h": 29, - "fill": "hsl(224 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06069": { - "id": "shape:perf:06069", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 3840, - "rot": 0, - "props": { - "w": 25, - "h": 37, - "fill": "hsl(128 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06070": { - "id": "shape:perf:06070", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 3840, - "rot": 0, - "props": { - "w": 28, - "h": 30, - "fill": "hsl(305 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06071": { - "id": "shape:perf:06071", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 3840, - "rot": 0, - "props": { - "w": 45, - "h": 39, - "fill": "hsl(296 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06072": { - "id": "shape:perf:06072", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 3840, - "rot": 0, - "props": { - "w": 46, - "h": 26, - "fill": "hsl(249 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06073": { - "id": "shape:perf:06073", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 3840, - "rot": 0, - "props": { - "w": 27, - "h": 24, - "fill": "hsl(317 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06074": { - "id": "shape:perf:06074", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 3840, - "rot": 0, - "props": { - "w": 45, - "h": 27, - "fill": "hsl(343 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06075": { - "id": "shape:perf:06075", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 3840, - "rot": 0, - "props": { - "w": 44, - "h": 45, - "fill": "hsl(274 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06076": { - "id": "shape:perf:06076", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 3840, - "rot": 0, - "props": { - "w": 31, - "h": 25, - "fill": "hsl(164 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06077": { - "id": "shape:perf:06077", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 3840, - "rot": 0, - "props": { - "w": 43, - "h": 37, - "fill": "hsl(246 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06078": { - "id": "shape:perf:06078", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 3840, - "rot": 0, - "props": { - "w": 47, - "h": 41, - "fill": "hsl(286 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06079": { - "id": "shape:perf:06079", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 3840, - "rot": 0, - "props": { - "w": 31, - "h": 34, - "fill": "hsl(179 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06080": { - "id": "shape:perf:06080", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 3840, - "rot": 0, - "props": { - "w": 39, - "h": 30, - "fill": "hsl(42 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06081": { - "id": "shape:perf:06081", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 3840, - "rot": 0, - "props": { - "w": 31, - "h": 32, - "fill": "hsl(292 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06082": { - "id": "shape:perf:06082", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 3840, - "rot": 0, - "props": { - "w": 43, - "h": 40, - "fill": "hsl(236 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06083": { - "id": "shape:perf:06083", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 3840, - "rot": 0, - "props": { - "w": 34, - "h": 26, - "fill": "hsl(119 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06084": { - "id": "shape:perf:06084", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 3840, - "rot": 0, - "props": { - "w": 43, - "h": 41, - "fill": "hsl(150 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06085": { - "id": "shape:perf:06085", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 3840, - "rot": 0, - "props": { - "w": 27, - "h": 45, - "fill": "hsl(123 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06086": { - "id": "shape:perf:06086", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 3840, - "rot": 0, - "props": { - "w": 45, - "h": 36, - "fill": "hsl(102 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06087": { - "id": "shape:perf:06087", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 3840, - "rot": 0, - "props": { - "w": 44, - "h": 33, - "fill": "hsl(214 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06088": { - "id": "shape:perf:06088", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 3840, - "rot": 0, - "props": { - "w": 43, - "h": 47, - "fill": "hsl(301 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06089": { - "id": "shape:perf:06089", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 3840, - "rot": 0, - "props": { - "w": 39, - "h": 31, - "fill": "hsl(61 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06090": { - "id": "shape:perf:06090", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 3840, - "rot": 0, - "props": { - "w": 25, - "h": 38, - "fill": "hsl(277 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06091": { - "id": "shape:perf:06091", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 3840, - "rot": 0, - "props": { - "w": 37, - "h": 44, - "fill": "hsl(339 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06092": { - "id": "shape:perf:06092", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 3840, - "rot": 0, - "props": { - "w": 40, - "h": 42, - "fill": "hsl(184 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06093": { - "id": "shape:perf:06093", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 3840, - "rot": 0, - "props": { - "w": 32, - "h": 25, - "fill": "hsl(48 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06094": { - "id": "shape:perf:06094", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 3840, - "rot": 0, - "props": { - "w": 33, - "h": 29, - "fill": "hsl(39 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06095": { - "id": "shape:perf:06095", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 3840, - "rot": 0, - "props": { - "w": 36, - "h": 35, - "fill": "hsl(173 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06096": { - "id": "shape:perf:06096", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 3840, - "rot": 0, - "props": { - "w": 29, - "h": 27, - "fill": "hsl(50 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06097": { - "id": "shape:perf:06097", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 3840, - "rot": 0, - "props": { - "w": 40, - "h": 45, - "fill": "hsl(5 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06098": { - "id": "shape:perf:06098", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 3840, - "rot": 0, - "props": { - "w": 38, - "h": 28, - "fill": "hsl(345 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06099": { - "id": "shape:perf:06099", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 3840, - "rot": 0, - "props": { - "w": 26, - "h": 35, - "fill": "hsl(330 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06100": { - "id": "shape:perf:06100", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 3904, - "rot": 0, - "props": { - "w": 46, - "h": 37, - "fill": "hsl(208 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06101": { - "id": "shape:perf:06101", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 3904, - "rot": 0, - "props": { - "w": 47, - "h": 40, - "fill": "hsl(79 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06102": { - "id": "shape:perf:06102", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 3904, - "rot": 0, - "props": { - "w": 26, - "h": 47, - "fill": "hsl(115 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06103": { - "id": "shape:perf:06103", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 3904, - "rot": 0, - "props": { - "w": 25, - "h": 31, - "fill": "hsl(40 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06104": { - "id": "shape:perf:06104", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 3904, - "rot": 0, - "props": { - "w": 29, - "h": 32, - "fill": "hsl(328 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06105": { - "id": "shape:perf:06105", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 3904, - "rot": 0, - "props": { - "w": 35, - "h": 41, - "fill": "hsl(69 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06106": { - "id": "shape:perf:06106", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 3904, - "rot": 0, - "props": { - "w": 39, - "h": 33, - "fill": "hsl(37 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06107": { - "id": "shape:perf:06107", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 3904, - "rot": 0, - "props": { - "w": 41, - "h": 29, - "fill": "hsl(258 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06108": { - "id": "shape:perf:06108", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 3904, - "rot": 0, - "props": { - "w": 41, - "h": 34, - "fill": "hsl(56 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06109": { - "id": "shape:perf:06109", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 3904, - "rot": 0, - "props": { - "w": 40, - "h": 41, - "fill": "hsl(309 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06110": { - "id": "shape:perf:06110", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 3904, - "rot": 0, - "props": { - "w": 35, - "h": 26, - "fill": "hsl(307 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06111": { - "id": "shape:perf:06111", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 3904, - "rot": 0, - "props": { - "w": 30, - "h": 33, - "fill": "hsl(314 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06112": { - "id": "shape:perf:06112", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 3904, - "rot": 0, - "props": { - "w": 34, - "h": 37, - "fill": "hsl(329 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06113": { - "id": "shape:perf:06113", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 3904, - "rot": 0, - "props": { - "w": 26, - "h": 35, - "fill": "hsl(222 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06114": { - "id": "shape:perf:06114", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 3904, - "rot": 0, - "props": { - "w": 34, - "h": 34, - "fill": "hsl(28 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06115": { - "id": "shape:perf:06115", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 3904, - "rot": 0, - "props": { - "w": 24, - "h": 45, - "fill": "hsl(13 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06116": { - "id": "shape:perf:06116", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 3904, - "rot": 0, - "props": { - "w": 36, - "h": 44, - "fill": "hsl(231 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06117": { - "id": "shape:perf:06117", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 3904, - "rot": 0, - "props": { - "w": 41, - "h": 45, - "fill": "hsl(265 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06118": { - "id": "shape:perf:06118", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 3904, - "rot": 0, - "props": { - "w": 29, - "h": 26, - "fill": "hsl(343 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06119": { - "id": "shape:perf:06119", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 3904, - "rot": 0, - "props": { - "w": 33, - "h": 45, - "fill": "hsl(172 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06120": { - "id": "shape:perf:06120", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 3904, - "rot": 0, - "props": { - "w": 41, - "h": 43, - "fill": "hsl(122 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06121": { - "id": "shape:perf:06121", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 3904, - "rot": 0, - "props": { - "w": 27, - "h": 27, - "fill": "hsl(44 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06122": { - "id": "shape:perf:06122", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 3904, - "rot": 0, - "props": { - "w": 26, - "h": 28, - "fill": "hsl(124 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06123": { - "id": "shape:perf:06123", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 3904, - "rot": 0, - "props": { - "w": 28, - "h": 44, - "fill": "hsl(0 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06124": { - "id": "shape:perf:06124", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 3904, - "rot": 0, - "props": { - "w": 43, - "h": 42, - "fill": "hsl(283 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06125": { - "id": "shape:perf:06125", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 3904, - "rot": 0, - "props": { - "w": 24, - "h": 33, - "fill": "hsl(303 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06126": { - "id": "shape:perf:06126", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 3904, - "rot": 0, - "props": { - "w": 37, - "h": 32, - "fill": "hsl(155 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06127": { - "id": "shape:perf:06127", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 3904, - "rot": 0, - "props": { - "w": 37, - "h": 32, - "fill": "hsl(333 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06128": { - "id": "shape:perf:06128", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 3904, - "rot": 0, - "props": { - "w": 34, - "h": 27, - "fill": "hsl(258 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06129": { - "id": "shape:perf:06129", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 3904, - "rot": 0, - "props": { - "w": 26, - "h": 32, - "fill": "hsl(314 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06130": { - "id": "shape:perf:06130", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 3904, - "rot": 0, - "props": { - "w": 33, - "h": 46, - "fill": "hsl(129 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06131": { - "id": "shape:perf:06131", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 3904, - "rot": 0, - "props": { - "w": 31, - "h": 35, - "fill": "hsl(141 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06132": { - "id": "shape:perf:06132", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 3904, - "rot": 0, - "props": { - "w": 47, - "h": 45, - "fill": "hsl(173 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06133": { - "id": "shape:perf:06133", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 3904, - "rot": 0, - "props": { - "w": 36, - "h": 26, - "fill": "hsl(330 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06134": { - "id": "shape:perf:06134", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 3904, - "rot": 0, - "props": { - "w": 46, - "h": 27, - "fill": "hsl(260 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06135": { - "id": "shape:perf:06135", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 3904, - "rot": 0, - "props": { - "w": 32, - "h": 25, - "fill": "hsl(186 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06136": { - "id": "shape:perf:06136", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 3904, - "rot": 0, - "props": { - "w": 41, - "h": 30, - "fill": "hsl(40 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06137": { - "id": "shape:perf:06137", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 3904, - "rot": 0, - "props": { - "w": 29, - "h": 34, - "fill": "hsl(121 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06138": { - "id": "shape:perf:06138", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 3904, - "rot": 0, - "props": { - "w": 46, - "h": 26, - "fill": "hsl(284 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06139": { - "id": "shape:perf:06139", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 3904, - "rot": 0, - "props": { - "w": 27, - "h": 38, - "fill": "hsl(347 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06140": { - "id": "shape:perf:06140", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 3904, - "rot": 0, - "props": { - "w": 31, - "h": 28, - "fill": "hsl(311 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06141": { - "id": "shape:perf:06141", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 3904, - "rot": 0, - "props": { - "w": 40, - "h": 44, - "fill": "hsl(163 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06142": { - "id": "shape:perf:06142", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 3904, - "rot": 0, - "props": { - "w": 31, - "h": 38, - "fill": "hsl(275 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06143": { - "id": "shape:perf:06143", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 3904, - "rot": 0, - "props": { - "w": 34, - "h": 35, - "fill": "hsl(341 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06144": { - "id": "shape:perf:06144", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 3904, - "rot": 0, - "props": { - "w": 41, - "h": 43, - "fill": "hsl(225 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06145": { - "id": "shape:perf:06145", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 3904, - "rot": 0, - "props": { - "w": 47, - "h": 24, - "fill": "hsl(298 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06146": { - "id": "shape:perf:06146", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 3904, - "rot": 0, - "props": { - "w": 37, - "h": 45, - "fill": "hsl(193 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06147": { - "id": "shape:perf:06147", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 3904, - "rot": 0, - "props": { - "w": 36, - "h": 40, - "fill": "hsl(285 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06148": { - "id": "shape:perf:06148", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 3904, - "rot": 0, - "props": { - "w": 39, - "h": 31, - "fill": "hsl(269 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06149": { - "id": "shape:perf:06149", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 3904, - "rot": 0, - "props": { - "w": 47, - "h": 33, - "fill": "hsl(94 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06150": { - "id": "shape:perf:06150", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 3904, - "rot": 0, - "props": { - "w": 33, - "h": 42, - "fill": "hsl(240 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06151": { - "id": "shape:perf:06151", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 3904, - "rot": 0, - "props": { - "w": 30, - "h": 30, - "fill": "hsl(162 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06152": { - "id": "shape:perf:06152", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 3904, - "rot": 0, - "props": { - "w": 32, - "h": 25, - "fill": "hsl(85 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06153": { - "id": "shape:perf:06153", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 3904, - "rot": 0, - "props": { - "w": 45, - "h": 43, - "fill": "hsl(216 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06154": { - "id": "shape:perf:06154", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 3904, - "rot": 0, - "props": { - "w": 31, - "h": 32, - "fill": "hsl(210 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06155": { - "id": "shape:perf:06155", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 3904, - "rot": 0, - "props": { - "w": 30, - "h": 43, - "fill": "hsl(258 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06156": { - "id": "shape:perf:06156", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 3904, - "rot": 0, - "props": { - "w": 28, - "h": 25, - "fill": "hsl(123 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06157": { - "id": "shape:perf:06157", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 3904, - "rot": 0, - "props": { - "w": 28, - "h": 47, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06158": { - "id": "shape:perf:06158", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 3904, - "rot": 0, - "props": { - "w": 32, - "h": 40, - "fill": "hsl(83 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06159": { - "id": "shape:perf:06159", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 3904, - "rot": 0, - "props": { - "w": 38, - "h": 30, - "fill": "hsl(359 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06160": { - "id": "shape:perf:06160", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 3904, - "rot": 0, - "props": { - "w": 47, - "h": 28, - "fill": "hsl(338 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06161": { - "id": "shape:perf:06161", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 3904, - "rot": 0, - "props": { - "w": 35, - "h": 47, - "fill": "hsl(186 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06162": { - "id": "shape:perf:06162", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 3904, - "rot": 0, - "props": { - "w": 29, - "h": 25, - "fill": "hsl(235 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06163": { - "id": "shape:perf:06163", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 3904, - "rot": 0, - "props": { - "w": 42, - "h": 36, - "fill": "hsl(298 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06164": { - "id": "shape:perf:06164", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 3904, - "rot": 0, - "props": { - "w": 37, - "h": 29, - "fill": "hsl(111 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06165": { - "id": "shape:perf:06165", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 3904, - "rot": 0, - "props": { - "w": 28, - "h": 31, - "fill": "hsl(331 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06166": { - "id": "shape:perf:06166", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 3904, - "rot": 0, - "props": { - "w": 45, - "h": 38, - "fill": "hsl(88 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06167": { - "id": "shape:perf:06167", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 3904, - "rot": 0, - "props": { - "w": 36, - "h": 28, - "fill": "hsl(210 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06168": { - "id": "shape:perf:06168", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 3904, - "rot": 0, - "props": { - "w": 28, - "h": 30, - "fill": "hsl(64 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06169": { - "id": "shape:perf:06169", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 3904, - "rot": 0, - "props": { - "w": 43, - "h": 34, - "fill": "hsl(95 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06170": { - "id": "shape:perf:06170", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 3904, - "rot": 0, - "props": { - "w": 30, - "h": 27, - "fill": "hsl(238 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06171": { - "id": "shape:perf:06171", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 3904, - "rot": 0, - "props": { - "w": 47, - "h": 37, - "fill": "hsl(5 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06172": { - "id": "shape:perf:06172", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 3904, - "rot": 0, - "props": { - "w": 31, - "h": 45, - "fill": "hsl(40 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06173": { - "id": "shape:perf:06173", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 3904, - "rot": 0, - "props": { - "w": 36, - "h": 37, - "fill": "hsl(1 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06174": { - "id": "shape:perf:06174", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 3904, - "rot": 0, - "props": { - "w": 35, - "h": 30, - "fill": "hsl(220 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06175": { - "id": "shape:perf:06175", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 3904, - "rot": 0, - "props": { - "w": 29, - "h": 26, - "fill": "hsl(199 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06176": { - "id": "shape:perf:06176", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 3904, - "rot": 0, - "props": { - "w": 45, - "h": 39, - "fill": "hsl(228 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06177": { - "id": "shape:perf:06177", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 3904, - "rot": 0, - "props": { - "w": 40, - "h": 43, - "fill": "hsl(53 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06178": { - "id": "shape:perf:06178", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 3904, - "rot": 0, - "props": { - "w": 35, - "h": 33, - "fill": "hsl(5 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06179": { - "id": "shape:perf:06179", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 3904, - "rot": 0, - "props": { - "w": 25, - "h": 27, - "fill": "hsl(208 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06180": { - "id": "shape:perf:06180", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 3904, - "rot": 0, - "props": { - "w": 37, - "h": 35, - "fill": "hsl(248 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06181": { - "id": "shape:perf:06181", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 3904, - "rot": 0, - "props": { - "w": 26, - "h": 44, - "fill": "hsl(322 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06182": { - "id": "shape:perf:06182", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 3904, - "rot": 0, - "props": { - "w": 26, - "h": 26, - "fill": "hsl(102 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06183": { - "id": "shape:perf:06183", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 3904, - "rot": 0, - "props": { - "w": 43, - "h": 47, - "fill": "hsl(0 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06184": { - "id": "shape:perf:06184", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 3904, - "rot": 0, - "props": { - "w": 37, - "h": 45, - "fill": "hsl(101 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06185": { - "id": "shape:perf:06185", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 3904, - "rot": 0, - "props": { - "w": 36, - "h": 36, - "fill": "hsl(158 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06186": { - "id": "shape:perf:06186", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 3904, - "rot": 0, - "props": { - "w": 36, - "h": 28, - "fill": "hsl(245 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06187": { - "id": "shape:perf:06187", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 3904, - "rot": 0, - "props": { - "w": 38, - "h": 32, - "fill": "hsl(332 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06188": { - "id": "shape:perf:06188", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 3904, - "rot": 0, - "props": { - "w": 27, - "h": 32, - "fill": "hsl(156 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06189": { - "id": "shape:perf:06189", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 3904, - "rot": 0, - "props": { - "w": 25, - "h": 28, - "fill": "hsl(85 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06190": { - "id": "shape:perf:06190", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 3904, - "rot": 0, - "props": { - "w": 28, - "h": 41, - "fill": "hsl(4 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06191": { - "id": "shape:perf:06191", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 3904, - "rot": 0, - "props": { - "w": 33, - "h": 39, - "fill": "hsl(80 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06192": { - "id": "shape:perf:06192", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 3904, - "rot": 0, - "props": { - "w": 29, - "h": 35, - "fill": "hsl(284 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06193": { - "id": "shape:perf:06193", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 3904, - "rot": 0, - "props": { - "w": 34, - "h": 28, - "fill": "hsl(103 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06194": { - "id": "shape:perf:06194", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 3904, - "rot": 0, - "props": { - "w": 37, - "h": 42, - "fill": "hsl(41 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06195": { - "id": "shape:perf:06195", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 3904, - "rot": 0, - "props": { - "w": 32, - "h": 27, - "fill": "hsl(101 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06196": { - "id": "shape:perf:06196", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 3904, - "rot": 0, - "props": { - "w": 47, - "h": 43, - "fill": "hsl(178 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06197": { - "id": "shape:perf:06197", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 3904, - "rot": 0, - "props": { - "w": 35, - "h": 31, - "fill": "hsl(76 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06198": { - "id": "shape:perf:06198", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 3904, - "rot": 0, - "props": { - "w": 42, - "h": 28, - "fill": "hsl(326 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06199": { - "id": "shape:perf:06199", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 3904, - "rot": 0, - "props": { - "w": 28, - "h": 45, - "fill": "hsl(88 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06200": { - "id": "shape:perf:06200", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 3968, - "rot": 0, - "props": { - "w": 29, - "h": 44, - "fill": "hsl(78 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06201": { - "id": "shape:perf:06201", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 3968, - "rot": 0, - "props": { - "w": 32, - "h": 30, - "fill": "hsl(70 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06202": { - "id": "shape:perf:06202", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 3968, - "rot": 0, - "props": { - "w": 36, - "h": 33, - "fill": "hsl(344 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06203": { - "id": "shape:perf:06203", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 3968, - "rot": 0, - "props": { - "w": 36, - "h": 31, - "fill": "hsl(188 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06204": { - "id": "shape:perf:06204", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 3968, - "rot": 0, - "props": { - "w": 42, - "h": 42, - "fill": "hsl(137 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06205": { - "id": "shape:perf:06205", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 3968, - "rot": 0, - "props": { - "w": 29, - "h": 33, - "fill": "hsl(20 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06206": { - "id": "shape:perf:06206", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 3968, - "rot": 0, - "props": { - "w": 27, - "h": 39, - "fill": "hsl(291 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06207": { - "id": "shape:perf:06207", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 3968, - "rot": 0, - "props": { - "w": 30, - "h": 30, - "fill": "hsl(147 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06208": { - "id": "shape:perf:06208", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 3968, - "rot": 0, - "props": { - "w": 43, - "h": 28, - "fill": "hsl(10 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06209": { - "id": "shape:perf:06209", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 3968, - "rot": 0, - "props": { - "w": 28, - "h": 36, - "fill": "hsl(18 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06210": { - "id": "shape:perf:06210", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 3968, - "rot": 0, - "props": { - "w": 33, - "h": 39, - "fill": "hsl(207 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06211": { - "id": "shape:perf:06211", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 3968, - "rot": 0, - "props": { - "w": 42, - "h": 26, - "fill": "hsl(9 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06212": { - "id": "shape:perf:06212", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 3968, - "rot": 0, - "props": { - "w": 46, - "h": 24, - "fill": "hsl(314 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06213": { - "id": "shape:perf:06213", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 3968, - "rot": 0, - "props": { - "w": 30, - "h": 32, - "fill": "hsl(45 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06214": { - "id": "shape:perf:06214", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 3968, - "rot": 0, - "props": { - "w": 43, - "h": 43, - "fill": "hsl(173 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06215": { - "id": "shape:perf:06215", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 3968, - "rot": 0, - "props": { - "w": 30, - "h": 36, - "fill": "hsl(4 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06216": { - "id": "shape:perf:06216", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 3968, - "rot": 0, - "props": { - "w": 34, - "h": 35, - "fill": "hsl(151 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06217": { - "id": "shape:perf:06217", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 3968, - "rot": 0, - "props": { - "w": 25, - "h": 43, - "fill": "hsl(266 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06218": { - "id": "shape:perf:06218", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 3968, - "rot": 0, - "props": { - "w": 28, - "h": 40, - "fill": "hsl(145 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06219": { - "id": "shape:perf:06219", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 3968, - "rot": 0, - "props": { - "w": 35, - "h": 43, - "fill": "hsl(213 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06220": { - "id": "shape:perf:06220", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 3968, - "rot": 0, - "props": { - "w": 45, - "h": 24, - "fill": "hsl(97 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06221": { - "id": "shape:perf:06221", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 3968, - "rot": 0, - "props": { - "w": 28, - "h": 33, - "fill": "hsl(187 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06222": { - "id": "shape:perf:06222", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 3968, - "rot": 0, - "props": { - "w": 38, - "h": 39, - "fill": "hsl(214 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06223": { - "id": "shape:perf:06223", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 3968, - "rot": 0, - "props": { - "w": 26, - "h": 33, - "fill": "hsl(5 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06224": { - "id": "shape:perf:06224", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 3968, - "rot": 0, - "props": { - "w": 28, - "h": 38, - "fill": "hsl(344 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06225": { - "id": "shape:perf:06225", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 3968, - "rot": 0, - "props": { - "w": 40, - "h": 30, - "fill": "hsl(104 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06226": { - "id": "shape:perf:06226", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 3968, - "rot": 0, - "props": { - "w": 46, - "h": 42, - "fill": "hsl(33 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06227": { - "id": "shape:perf:06227", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 3968, - "rot": 0, - "props": { - "w": 45, - "h": 47, - "fill": "hsl(161 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06228": { - "id": "shape:perf:06228", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 3968, - "rot": 0, - "props": { - "w": 45, - "h": 28, - "fill": "hsl(332 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06229": { - "id": "shape:perf:06229", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 3968, - "rot": 0, - "props": { - "w": 38, - "h": 43, - "fill": "hsl(104 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06230": { - "id": "shape:perf:06230", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 3968, - "rot": 0, - "props": { - "w": 27, - "h": 45, - "fill": "hsl(199 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06231": { - "id": "shape:perf:06231", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 3968, - "rot": 0, - "props": { - "w": 37, - "h": 34, - "fill": "hsl(298 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06232": { - "id": "shape:perf:06232", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 3968, - "rot": 0, - "props": { - "w": 40, - "h": 35, - "fill": "hsl(188 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06233": { - "id": "shape:perf:06233", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 3968, - "rot": 0, - "props": { - "w": 37, - "h": 47, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06234": { - "id": "shape:perf:06234", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 3968, - "rot": 0, - "props": { - "w": 27, - "h": 37, - "fill": "hsl(172 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06235": { - "id": "shape:perf:06235", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 3968, - "rot": 0, - "props": { - "w": 38, - "h": 41, - "fill": "hsl(104 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06236": { - "id": "shape:perf:06236", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 3968, - "rot": 0, - "props": { - "w": 39, - "h": 44, - "fill": "hsl(37 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06237": { - "id": "shape:perf:06237", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 3968, - "rot": 0, - "props": { - "w": 32, - "h": 26, - "fill": "hsl(65 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06238": { - "id": "shape:perf:06238", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 3968, - "rot": 0, - "props": { - "w": 42, - "h": 24, - "fill": "hsl(36 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06239": { - "id": "shape:perf:06239", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 3968, - "rot": 0, - "props": { - "w": 37, - "h": 29, - "fill": "hsl(44 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06240": { - "id": "shape:perf:06240", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 3968, - "rot": 0, - "props": { - "w": 46, - "h": 27, - "fill": "hsl(214 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06241": { - "id": "shape:perf:06241", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 3968, - "rot": 0, - "props": { - "w": 37, - "h": 37, - "fill": "hsl(280 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06242": { - "id": "shape:perf:06242", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 3968, - "rot": 0, - "props": { - "w": 37, - "h": 43, - "fill": "hsl(130 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06243": { - "id": "shape:perf:06243", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 3968, - "rot": 0, - "props": { - "w": 42, - "h": 37, - "fill": "hsl(145 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06244": { - "id": "shape:perf:06244", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 3968, - "rot": 0, - "props": { - "w": 44, - "h": 43, - "fill": "hsl(58 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06245": { - "id": "shape:perf:06245", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 3968, - "rot": 0, - "props": { - "w": 33, - "h": 38, - "fill": "hsl(346 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06246": { - "id": "shape:perf:06246", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 3968, - "rot": 0, - "props": { - "w": 41, - "h": 42, - "fill": "hsl(279 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06247": { - "id": "shape:perf:06247", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 3968, - "rot": 0, - "props": { - "w": 37, - "h": 32, - "fill": "hsl(269 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06248": { - "id": "shape:perf:06248", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 3968, - "rot": 0, - "props": { - "w": 46, - "h": 27, - "fill": "hsl(289 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06249": { - "id": "shape:perf:06249", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 3968, - "rot": 0, - "props": { - "w": 33, - "h": 35, - "fill": "hsl(314 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06250": { - "id": "shape:perf:06250", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 3968, - "rot": 0, - "props": { - "w": 28, - "h": 43, - "fill": "hsl(37 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06251": { - "id": "shape:perf:06251", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 3968, - "rot": 0, - "props": { - "w": 42, - "h": 27, - "fill": "hsl(304 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06252": { - "id": "shape:perf:06252", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 3968, - "rot": 0, - "props": { - "w": 37, - "h": 28, - "fill": "hsl(3 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06253": { - "id": "shape:perf:06253", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 3968, - "rot": 0, - "props": { - "w": 33, - "h": 26, - "fill": "hsl(104 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06254": { - "id": "shape:perf:06254", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 3968, - "rot": 0, - "props": { - "w": 33, - "h": 31, - "fill": "hsl(50 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06255": { - "id": "shape:perf:06255", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 3968, - "rot": 0, - "props": { - "w": 46, - "h": 45, - "fill": "hsl(245 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06256": { - "id": "shape:perf:06256", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 3968, - "rot": 0, - "props": { - "w": 31, - "h": 43, - "fill": "hsl(298 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06257": { - "id": "shape:perf:06257", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 3968, - "rot": 0, - "props": { - "w": 27, - "h": 32, - "fill": "hsl(144 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06258": { - "id": "shape:perf:06258", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 3968, - "rot": 0, - "props": { - "w": 39, - "h": 26, - "fill": "hsl(8 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06259": { - "id": "shape:perf:06259", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 3968, - "rot": 0, - "props": { - "w": 31, - "h": 46, - "fill": "hsl(240 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06260": { - "id": "shape:perf:06260", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 3968, - "rot": 0, - "props": { - "w": 29, - "h": 26, - "fill": "hsl(335 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06261": { - "id": "shape:perf:06261", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 3968, - "rot": 0, - "props": { - "w": 44, - "h": 46, - "fill": "hsl(61 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06262": { - "id": "shape:perf:06262", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 3968, - "rot": 0, - "props": { - "w": 30, - "h": 47, - "fill": "hsl(309 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06263": { - "id": "shape:perf:06263", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 3968, - "rot": 0, - "props": { - "w": 44, - "h": 45, - "fill": "hsl(15 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06264": { - "id": "shape:perf:06264", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 3968, - "rot": 0, - "props": { - "w": 33, - "h": 39, - "fill": "hsl(217 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06265": { - "id": "shape:perf:06265", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 3968, - "rot": 0, - "props": { - "w": 42, - "h": 41, - "fill": "hsl(99 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06266": { - "id": "shape:perf:06266", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 3968, - "rot": 0, - "props": { - "w": 44, - "h": 29, - "fill": "hsl(222 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06267": { - "id": "shape:perf:06267", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 3968, - "rot": 0, - "props": { - "w": 38, - "h": 36, - "fill": "hsl(88 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06268": { - "id": "shape:perf:06268", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 3968, - "rot": 0, - "props": { - "w": 39, - "h": 47, - "fill": "hsl(242 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06269": { - "id": "shape:perf:06269", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 3968, - "rot": 0, - "props": { - "w": 40, - "h": 35, - "fill": "hsl(345 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06270": { - "id": "shape:perf:06270", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 3968, - "rot": 0, - "props": { - "w": 47, - "h": 29, - "fill": "hsl(198 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06271": { - "id": "shape:perf:06271", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 3968, - "rot": 0, - "props": { - "w": 31, - "h": 46, - "fill": "hsl(70 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06272": { - "id": "shape:perf:06272", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 3968, - "rot": 0, - "props": { - "w": 33, - "h": 40, - "fill": "hsl(297 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06273": { - "id": "shape:perf:06273", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 3968, - "rot": 0, - "props": { - "w": 47, - "h": 29, - "fill": "hsl(121 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06274": { - "id": "shape:perf:06274", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 3968, - "rot": 0, - "props": { - "w": 47, - "h": 32, - "fill": "hsl(214 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06275": { - "id": "shape:perf:06275", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 3968, - "rot": 0, - "props": { - "w": 30, - "h": 43, - "fill": "hsl(223 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06276": { - "id": "shape:perf:06276", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 3968, - "rot": 0, - "props": { - "w": 40, - "h": 25, - "fill": "hsl(312 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06277": { - "id": "shape:perf:06277", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 3968, - "rot": 0, - "props": { - "w": 34, - "h": 44, - "fill": "hsl(333 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06278": { - "id": "shape:perf:06278", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 3968, - "rot": 0, - "props": { - "w": 38, - "h": 45, - "fill": "hsl(180 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06279": { - "id": "shape:perf:06279", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 3968, - "rot": 0, - "props": { - "w": 33, - "h": 43, - "fill": "hsl(315 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06280": { - "id": "shape:perf:06280", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 3968, - "rot": 0, - "props": { - "w": 31, - "h": 26, - "fill": "hsl(283 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06281": { - "id": "shape:perf:06281", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 3968, - "rot": 0, - "props": { - "w": 45, - "h": 42, - "fill": "hsl(170 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06282": { - "id": "shape:perf:06282", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 3968, - "rot": 0, - "props": { - "w": 42, - "h": 31, - "fill": "hsl(254 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06283": { - "id": "shape:perf:06283", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 3968, - "rot": 0, - "props": { - "w": 43, - "h": 28, - "fill": "hsl(335 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06284": { - "id": "shape:perf:06284", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 3968, - "rot": 0, - "props": { - "w": 25, - "h": 42, - "fill": "hsl(278 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06285": { - "id": "shape:perf:06285", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 3968, - "rot": 0, - "props": { - "w": 25, - "h": 45, - "fill": "hsl(137 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06286": { - "id": "shape:perf:06286", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 3968, - "rot": 0, - "props": { - "w": 35, - "h": 27, - "fill": "hsl(46 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06287": { - "id": "shape:perf:06287", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 3968, - "rot": 0, - "props": { - "w": 38, - "h": 44, - "fill": "hsl(149 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06288": { - "id": "shape:perf:06288", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 3968, - "rot": 0, - "props": { - "w": 42, - "h": 42, - "fill": "hsl(180 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06289": { - "id": "shape:perf:06289", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 3968, - "rot": 0, - "props": { - "w": 43, - "h": 33, - "fill": "hsl(92 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06290": { - "id": "shape:perf:06290", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 3968, - "rot": 0, - "props": { - "w": 26, - "h": 30, - "fill": "hsl(148 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06291": { - "id": "shape:perf:06291", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 3968, - "rot": 0, - "props": { - "w": 38, - "h": 26, - "fill": "hsl(331 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06292": { - "id": "shape:perf:06292", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 3968, - "rot": 0, - "props": { - "w": 30, - "h": 40, - "fill": "hsl(112 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06293": { - "id": "shape:perf:06293", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 3968, - "rot": 0, - "props": { - "w": 31, - "h": 36, - "fill": "hsl(138 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06294": { - "id": "shape:perf:06294", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 3968, - "rot": 0, - "props": { - "w": 26, - "h": 39, - "fill": "hsl(117 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06295": { - "id": "shape:perf:06295", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 3968, - "rot": 0, - "props": { - "w": 43, - "h": 34, - "fill": "hsl(0 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06296": { - "id": "shape:perf:06296", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 3968, - "rot": 0, - "props": { - "w": 30, - "h": 44, - "fill": "hsl(58 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06297": { - "id": "shape:perf:06297", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 3968, - "rot": 0, - "props": { - "w": 47, - "h": 28, - "fill": "hsl(69 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06298": { - "id": "shape:perf:06298", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 3968, - "rot": 0, - "props": { - "w": 24, - "h": 44, - "fill": "hsl(122 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06299": { - "id": "shape:perf:06299", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 3968, - "rot": 0, - "props": { - "w": 31, - "h": 46, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06300": { - "id": "shape:perf:06300", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 4032, - "rot": 0, - "props": { - "w": 31, - "h": 40, - "fill": "hsl(154 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06301": { - "id": "shape:perf:06301", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 4032, - "rot": 0, - "props": { - "w": 35, - "h": 33, - "fill": "hsl(355 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06302": { - "id": "shape:perf:06302", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 4032, - "rot": 0, - "props": { - "w": 37, - "h": 44, - "fill": "hsl(202 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06303": { - "id": "shape:perf:06303", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 4032, - "rot": 0, - "props": { - "w": 47, - "h": 37, - "fill": "hsl(6 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06304": { - "id": "shape:perf:06304", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 4032, - "rot": 0, - "props": { - "w": 42, - "h": 35, - "fill": "hsl(331 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06305": { - "id": "shape:perf:06305", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 4032, - "rot": 0, - "props": { - "w": 44, - "h": 38, - "fill": "hsl(179 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06306": { - "id": "shape:perf:06306", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 4032, - "rot": 0, - "props": { - "w": 44, - "h": 29, - "fill": "hsl(204 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06307": { - "id": "shape:perf:06307", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 4032, - "rot": 0, - "props": { - "w": 35, - "h": 29, - "fill": "hsl(79 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06308": { - "id": "shape:perf:06308", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 4032, - "rot": 0, - "props": { - "w": 27, - "h": 28, - "fill": "hsl(274 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06309": { - "id": "shape:perf:06309", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 4032, - "rot": 0, - "props": { - "w": 28, - "h": 46, - "fill": "hsl(20 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06310": { - "id": "shape:perf:06310", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 4032, - "rot": 0, - "props": { - "w": 26, - "h": 33, - "fill": "hsl(297 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06311": { - "id": "shape:perf:06311", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 4032, - "rot": 0, - "props": { - "w": 30, - "h": 28, - "fill": "hsl(159 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06312": { - "id": "shape:perf:06312", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 4032, - "rot": 0, - "props": { - "w": 42, - "h": 39, - "fill": "hsl(335 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06313": { - "id": "shape:perf:06313", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 4032, - "rot": 0, - "props": { - "w": 40, - "h": 27, - "fill": "hsl(157 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06314": { - "id": "shape:perf:06314", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 4032, - "rot": 0, - "props": { - "w": 41, - "h": 44, - "fill": "hsl(257 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06315": { - "id": "shape:perf:06315", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 4032, - "rot": 0, - "props": { - "w": 35, - "h": 30, - "fill": "hsl(91 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06316": { - "id": "shape:perf:06316", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 4032, - "rot": 0, - "props": { - "w": 24, - "h": 36, - "fill": "hsl(225 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06317": { - "id": "shape:perf:06317", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 4032, - "rot": 0, - "props": { - "w": 44, - "h": 34, - "fill": "hsl(235 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06318": { - "id": "shape:perf:06318", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 4032, - "rot": 0, - "props": { - "w": 26, - "h": 29, - "fill": "hsl(134 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06319": { - "id": "shape:perf:06319", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 4032, - "rot": 0, - "props": { - "w": 45, - "h": 38, - "fill": "hsl(108 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06320": { - "id": "shape:perf:06320", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 4032, - "rot": 0, - "props": { - "w": 29, - "h": 40, - "fill": "hsl(276 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06321": { - "id": "shape:perf:06321", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 4032, - "rot": 0, - "props": { - "w": 44, - "h": 27, - "fill": "hsl(93 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06322": { - "id": "shape:perf:06322", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 4032, - "rot": 0, - "props": { - "w": 39, - "h": 25, - "fill": "hsl(304 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06323": { - "id": "shape:perf:06323", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 4032, - "rot": 0, - "props": { - "w": 39, - "h": 41, - "fill": "hsl(297 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06324": { - "id": "shape:perf:06324", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 4032, - "rot": 0, - "props": { - "w": 40, - "h": 28, - "fill": "hsl(109 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06325": { - "id": "shape:perf:06325", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 4032, - "rot": 0, - "props": { - "w": 45, - "h": 46, - "fill": "hsl(352 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06326": { - "id": "shape:perf:06326", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 4032, - "rot": 0, - "props": { - "w": 32, - "h": 32, - "fill": "hsl(103 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06327": { - "id": "shape:perf:06327", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 4032, - "rot": 0, - "props": { - "w": 25, - "h": 25, - "fill": "hsl(69 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06328": { - "id": "shape:perf:06328", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 4032, - "rot": 0, - "props": { - "w": 32, - "h": 39, - "fill": "hsl(40 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06329": { - "id": "shape:perf:06329", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 4032, - "rot": 0, - "props": { - "w": 45, - "h": 29, - "fill": "hsl(235 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06330": { - "id": "shape:perf:06330", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 4032, - "rot": 0, - "props": { - "w": 33, - "h": 45, - "fill": "hsl(67 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06331": { - "id": "shape:perf:06331", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 4032, - "rot": 0, - "props": { - "w": 29, - "h": 24, - "fill": "hsl(64 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06332": { - "id": "shape:perf:06332", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 4032, - "rot": 0, - "props": { - "w": 24, - "h": 30, - "fill": "hsl(239 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06333": { - "id": "shape:perf:06333", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 4032, - "rot": 0, - "props": { - "w": 34, - "h": 42, - "fill": "hsl(315 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06334": { - "id": "shape:perf:06334", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 4032, - "rot": 0, - "props": { - "w": 38, - "h": 24, - "fill": "hsl(308 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06335": { - "id": "shape:perf:06335", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 4032, - "rot": 0, - "props": { - "w": 31, - "h": 45, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06336": { - "id": "shape:perf:06336", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 4032, - "rot": 0, - "props": { - "w": 32, - "h": 44, - "fill": "hsl(277 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06337": { - "id": "shape:perf:06337", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 4032, - "rot": 0, - "props": { - "w": 38, - "h": 40, - "fill": "hsl(285 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06338": { - "id": "shape:perf:06338", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 4032, - "rot": 0, - "props": { - "w": 27, - "h": 40, - "fill": "hsl(237 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06339": { - "id": "shape:perf:06339", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 4032, - "rot": 0, - "props": { - "w": 36, - "h": 36, - "fill": "hsl(143 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06340": { - "id": "shape:perf:06340", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 4032, - "rot": 0, - "props": { - "w": 30, - "h": 44, - "fill": "hsl(22 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06341": { - "id": "shape:perf:06341", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 4032, - "rot": 0, - "props": { - "w": 30, - "h": 28, - "fill": "hsl(326 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06342": { - "id": "shape:perf:06342", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 4032, - "rot": 0, - "props": { - "w": 35, - "h": 34, - "fill": "hsl(268 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06343": { - "id": "shape:perf:06343", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 4032, - "rot": 0, - "props": { - "w": 35, - "h": 44, - "fill": "hsl(320 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06344": { - "id": "shape:perf:06344", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 4032, - "rot": 0, - "props": { - "w": 37, - "h": 47, - "fill": "hsl(358 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06345": { - "id": "shape:perf:06345", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 4032, - "rot": 0, - "props": { - "w": 34, - "h": 35, - "fill": "hsl(336 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06346": { - "id": "shape:perf:06346", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 4032, - "rot": 0, - "props": { - "w": 31, - "h": 26, - "fill": "hsl(77 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06347": { - "id": "shape:perf:06347", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 4032, - "rot": 0, - "props": { - "w": 29, - "h": 38, - "fill": "hsl(124 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06348": { - "id": "shape:perf:06348", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 4032, - "rot": 0, - "props": { - "w": 25, - "h": 45, - "fill": "hsl(211 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06349": { - "id": "shape:perf:06349", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 4032, - "rot": 0, - "props": { - "w": 45, - "h": 35, - "fill": "hsl(350 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06350": { - "id": "shape:perf:06350", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 4032, - "rot": 0, - "props": { - "w": 38, - "h": 32, - "fill": "hsl(4 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06351": { - "id": "shape:perf:06351", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 4032, - "rot": 0, - "props": { - "w": 46, - "h": 43, - "fill": "hsl(115 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06352": { - "id": "shape:perf:06352", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 4032, - "rot": 0, - "props": { - "w": 45, - "h": 30, - "fill": "hsl(48 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06353": { - "id": "shape:perf:06353", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 4032, - "rot": 0, - "props": { - "w": 39, - "h": 29, - "fill": "hsl(208 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06354": { - "id": "shape:perf:06354", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 4032, - "rot": 0, - "props": { - "w": 35, - "h": 42, - "fill": "hsl(356 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06355": { - "id": "shape:perf:06355", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 4032, - "rot": 0, - "props": { - "w": 33, - "h": 33, - "fill": "hsl(231 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06356": { - "id": "shape:perf:06356", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 4032, - "rot": 0, - "props": { - "w": 32, - "h": 29, - "fill": "hsl(220 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06357": { - "id": "shape:perf:06357", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 4032, - "rot": 0, - "props": { - "w": 37, - "h": 26, - "fill": "hsl(184 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06358": { - "id": "shape:perf:06358", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 4032, - "rot": 0, - "props": { - "w": 32, - "h": 41, - "fill": "hsl(325 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06359": { - "id": "shape:perf:06359", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 4032, - "rot": 0, - "props": { - "w": 25, - "h": 43, - "fill": "hsl(183 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06360": { - "id": "shape:perf:06360", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 4032, - "rot": 0, - "props": { - "w": 42, - "h": 37, - "fill": "hsl(204 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06361": { - "id": "shape:perf:06361", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 4032, - "rot": 0, - "props": { - "w": 41, - "h": 27, - "fill": "hsl(72 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06362": { - "id": "shape:perf:06362", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 4032, - "rot": 0, - "props": { - "w": 26, - "h": 38, - "fill": "hsl(102 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06363": { - "id": "shape:perf:06363", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 4032, - "rot": 0, - "props": { - "w": 27, - "h": 36, - "fill": "hsl(262 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06364": { - "id": "shape:perf:06364", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 4032, - "rot": 0, - "props": { - "w": 24, - "h": 43, - "fill": "hsl(226 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06365": { - "id": "shape:perf:06365", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 4032, - "rot": 0, - "props": { - "w": 38, - "h": 40, - "fill": "hsl(92 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06366": { - "id": "shape:perf:06366", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 4032, - "rot": 0, - "props": { - "w": 30, - "h": 37, - "fill": "hsl(175 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06367": { - "id": "shape:perf:06367", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 4032, - "rot": 0, - "props": { - "w": 31, - "h": 25, - "fill": "hsl(334 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06368": { - "id": "shape:perf:06368", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 4032, - "rot": 0, - "props": { - "w": 45, - "h": 33, - "fill": "hsl(353 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06369": { - "id": "shape:perf:06369", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 4032, - "rot": 0, - "props": { - "w": 46, - "h": 28, - "fill": "hsl(189 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06370": { - "id": "shape:perf:06370", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 4032, - "rot": 0, - "props": { - "w": 44, - "h": 34, - "fill": "hsl(116 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06371": { - "id": "shape:perf:06371", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 4032, - "rot": 0, - "props": { - "w": 39, - "h": 36, - "fill": "hsl(354 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06372": { - "id": "shape:perf:06372", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 4032, - "rot": 0, - "props": { - "w": 32, - "h": 27, - "fill": "hsl(158 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06373": { - "id": "shape:perf:06373", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 4032, - "rot": 0, - "props": { - "w": 31, - "h": 39, - "fill": "hsl(197 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06374": { - "id": "shape:perf:06374", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 4032, - "rot": 0, - "props": { - "w": 39, - "h": 35, - "fill": "hsl(29 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06375": { - "id": "shape:perf:06375", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 4032, - "rot": 0, - "props": { - "w": 46, - "h": 46, - "fill": "hsl(19 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06376": { - "id": "shape:perf:06376", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 4032, - "rot": 0, - "props": { - "w": 27, - "h": 36, - "fill": "hsl(341 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06377": { - "id": "shape:perf:06377", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 4032, - "rot": 0, - "props": { - "w": 36, - "h": 44, - "fill": "hsl(141 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06378": { - "id": "shape:perf:06378", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 4032, - "rot": 0, - "props": { - "w": 26, - "h": 34, - "fill": "hsl(311 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06379": { - "id": "shape:perf:06379", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 4032, - "rot": 0, - "props": { - "w": 44, - "h": 46, - "fill": "hsl(318 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06380": { - "id": "shape:perf:06380", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 4032, - "rot": 0, - "props": { - "w": 37, - "h": 25, - "fill": "hsl(229 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06381": { - "id": "shape:perf:06381", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 4032, - "rot": 0, - "props": { - "w": 38, - "h": 43, - "fill": "hsl(82 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06382": { - "id": "shape:perf:06382", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 4032, - "rot": 0, - "props": { - "w": 38, - "h": 44, - "fill": "hsl(184 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06383": { - "id": "shape:perf:06383", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 4032, - "rot": 0, - "props": { - "w": 27, - "h": 40, - "fill": "hsl(121 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06384": { - "id": "shape:perf:06384", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 4032, - "rot": 0, - "props": { - "w": 40, - "h": 43, - "fill": "hsl(287 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06385": { - "id": "shape:perf:06385", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 4032, - "rot": 0, - "props": { - "w": 38, - "h": 26, - "fill": "hsl(54 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06386": { - "id": "shape:perf:06386", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 4032, - "rot": 0, - "props": { - "w": 45, - "h": 47, - "fill": "hsl(211 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06387": { - "id": "shape:perf:06387", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 4032, - "rot": 0, - "props": { - "w": 44, - "h": 42, - "fill": "hsl(97 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06388": { - "id": "shape:perf:06388", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 4032, - "rot": 0, - "props": { - "w": 38, - "h": 39, - "fill": "hsl(136 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06389": { - "id": "shape:perf:06389", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 4032, - "rot": 0, - "props": { - "w": 24, - "h": 36, - "fill": "hsl(23 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06390": { - "id": "shape:perf:06390", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 4032, - "rot": 0, - "props": { - "w": 27, - "h": 36, - "fill": "hsl(56 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06391": { - "id": "shape:perf:06391", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 4032, - "rot": 0, - "props": { - "w": 44, - "h": 38, - "fill": "hsl(82 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06392": { - "id": "shape:perf:06392", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 4032, - "rot": 0, - "props": { - "w": 38, - "h": 28, - "fill": "hsl(302 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06393": { - "id": "shape:perf:06393", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 4032, - "rot": 0, - "props": { - "w": 35, - "h": 34, - "fill": "hsl(234 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06394": { - "id": "shape:perf:06394", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 4032, - "rot": 0, - "props": { - "w": 43, - "h": 26, - "fill": "hsl(118 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06395": { - "id": "shape:perf:06395", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 4032, - "rot": 0, - "props": { - "w": 36, - "h": 45, - "fill": "hsl(223 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06396": { - "id": "shape:perf:06396", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 4032, - "rot": 0, - "props": { - "w": 31, - "h": 29, - "fill": "hsl(188 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06397": { - "id": "shape:perf:06397", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 4032, - "rot": 0, - "props": { - "w": 31, - "h": 28, - "fill": "hsl(277 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06398": { - "id": "shape:perf:06398", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 4032, - "rot": 0, - "props": { - "w": 24, - "h": 45, - "fill": "hsl(301 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06399": { - "id": "shape:perf:06399", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 4032, - "rot": 0, - "props": { - "w": 30, - "h": 42, - "fill": "hsl(90 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06400": { - "id": "shape:perf:06400", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 4096, - "rot": 0, - "props": { - "w": 43, - "h": 35, - "fill": "hsl(309 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06401": { - "id": "shape:perf:06401", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 4096, - "rot": 0, - "props": { - "w": 37, - "h": 42, - "fill": "hsl(276 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06402": { - "id": "shape:perf:06402", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 4096, - "rot": 0, - "props": { - "w": 47, - "h": 36, - "fill": "hsl(33 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06403": { - "id": "shape:perf:06403", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 4096, - "rot": 0, - "props": { - "w": 26, - "h": 30, - "fill": "hsl(160 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06404": { - "id": "shape:perf:06404", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 4096, - "rot": 0, - "props": { - "w": 27, - "h": 27, - "fill": "hsl(10 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06405": { - "id": "shape:perf:06405", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 4096, - "rot": 0, - "props": { - "w": 42, - "h": 45, - "fill": "hsl(204 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06406": { - "id": "shape:perf:06406", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 4096, - "rot": 0, - "props": { - "w": 30, - "h": 25, - "fill": "hsl(175 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06407": { - "id": "shape:perf:06407", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 4096, - "rot": 0, - "props": { - "w": 35, - "h": 41, - "fill": "hsl(54 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06408": { - "id": "shape:perf:06408", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 4096, - "rot": 0, - "props": { - "w": 45, - "h": 35, - "fill": "hsl(343 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06409": { - "id": "shape:perf:06409", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 4096, - "rot": 0, - "props": { - "w": 46, - "h": 44, - "fill": "hsl(184 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06410": { - "id": "shape:perf:06410", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 4096, - "rot": 0, - "props": { - "w": 30, - "h": 30, - "fill": "hsl(325 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06411": { - "id": "shape:perf:06411", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 4096, - "rot": 0, - "props": { - "w": 45, - "h": 45, - "fill": "hsl(250 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06412": { - "id": "shape:perf:06412", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 4096, - "rot": 0, - "props": { - "w": 40, - "h": 24, - "fill": "hsl(251 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06413": { - "id": "shape:perf:06413", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 4096, - "rot": 0, - "props": { - "w": 46, - "h": 31, - "fill": "hsl(115 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06414": { - "id": "shape:perf:06414", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 4096, - "rot": 0, - "props": { - "w": 43, - "h": 41, - "fill": "hsl(241 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06415": { - "id": "shape:perf:06415", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 4096, - "rot": 0, - "props": { - "w": 27, - "h": 42, - "fill": "hsl(40 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06416": { - "id": "shape:perf:06416", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 4096, - "rot": 0, - "props": { - "w": 47, - "h": 24, - "fill": "hsl(241 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06417": { - "id": "shape:perf:06417", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 4096, - "rot": 0, - "props": { - "w": 30, - "h": 24, - "fill": "hsl(244 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06418": { - "id": "shape:perf:06418", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 4096, - "rot": 0, - "props": { - "w": 47, - "h": 41, - "fill": "hsl(166 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06419": { - "id": "shape:perf:06419", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 4096, - "rot": 0, - "props": { - "w": 47, - "h": 41, - "fill": "hsl(90 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06420": { - "id": "shape:perf:06420", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 4096, - "rot": 0, - "props": { - "w": 47, - "h": 37, - "fill": "hsl(76 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06421": { - "id": "shape:perf:06421", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 4096, - "rot": 0, - "props": { - "w": 47, - "h": 32, - "fill": "hsl(82 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06422": { - "id": "shape:perf:06422", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 4096, - "rot": 0, - "props": { - "w": 36, - "h": 35, - "fill": "hsl(311 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06423": { - "id": "shape:perf:06423", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 4096, - "rot": 0, - "props": { - "w": 34, - "h": 33, - "fill": "hsl(6 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06424": { - "id": "shape:perf:06424", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 4096, - "rot": 0, - "props": { - "w": 29, - "h": 24, - "fill": "hsl(162 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06425": { - "id": "shape:perf:06425", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 4096, - "rot": 0, - "props": { - "w": 39, - "h": 26, - "fill": "hsl(30 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06426": { - "id": "shape:perf:06426", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 4096, - "rot": 0, - "props": { - "w": 38, - "h": 36, - "fill": "hsl(216 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06427": { - "id": "shape:perf:06427", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 4096, - "rot": 0, - "props": { - "w": 31, - "h": 30, - "fill": "hsl(177 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06428": { - "id": "shape:perf:06428", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 4096, - "rot": 0, - "props": { - "w": 43, - "h": 27, - "fill": "hsl(180 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06429": { - "id": "shape:perf:06429", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 4096, - "rot": 0, - "props": { - "w": 34, - "h": 35, - "fill": "hsl(27 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06430": { - "id": "shape:perf:06430", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 4096, - "rot": 0, - "props": { - "w": 36, - "h": 27, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06431": { - "id": "shape:perf:06431", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 4096, - "rot": 0, - "props": { - "w": 41, - "h": 24, - "fill": "hsl(286 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06432": { - "id": "shape:perf:06432", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 4096, - "rot": 0, - "props": { - "w": 24, - "h": 43, - "fill": "hsl(146 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06433": { - "id": "shape:perf:06433", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 4096, - "rot": 0, - "props": { - "w": 33, - "h": 42, - "fill": "hsl(126 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06434": { - "id": "shape:perf:06434", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 4096, - "rot": 0, - "props": { - "w": 32, - "h": 35, - "fill": "hsl(207 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06435": { - "id": "shape:perf:06435", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 4096, - "rot": 0, - "props": { - "w": 25, - "h": 24, - "fill": "hsl(323 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06436": { - "id": "shape:perf:06436", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 4096, - "rot": 0, - "props": { - "w": 39, - "h": 35, - "fill": "hsl(145 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06437": { - "id": "shape:perf:06437", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 4096, - "rot": 0, - "props": { - "w": 24, - "h": 24, - "fill": "hsl(22 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06438": { - "id": "shape:perf:06438", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 4096, - "rot": 0, - "props": { - "w": 43, - "h": 44, - "fill": "hsl(159 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06439": { - "id": "shape:perf:06439", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 4096, - "rot": 0, - "props": { - "w": 39, - "h": 30, - "fill": "hsl(288 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06440": { - "id": "shape:perf:06440", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 4096, - "rot": 0, - "props": { - "w": 34, - "h": 30, - "fill": "hsl(138 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06441": { - "id": "shape:perf:06441", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 4096, - "rot": 0, - "props": { - "w": 31, - "h": 30, - "fill": "hsl(90 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06442": { - "id": "shape:perf:06442", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 4096, - "rot": 0, - "props": { - "w": 33, - "h": 44, - "fill": "hsl(54 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06443": { - "id": "shape:perf:06443", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 4096, - "rot": 0, - "props": { - "w": 28, - "h": 40, - "fill": "hsl(262 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06444": { - "id": "shape:perf:06444", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 4096, - "rot": 0, - "props": { - "w": 36, - "h": 37, - "fill": "hsl(234 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06445": { - "id": "shape:perf:06445", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 4096, - "rot": 0, - "props": { - "w": 26, - "h": 47, - "fill": "hsl(60 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06446": { - "id": "shape:perf:06446", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 4096, - "rot": 0, - "props": { - "w": 31, - "h": 39, - "fill": "hsl(219 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06447": { - "id": "shape:perf:06447", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 4096, - "rot": 0, - "props": { - "w": 45, - "h": 27, - "fill": "hsl(105 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06448": { - "id": "shape:perf:06448", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 4096, - "rot": 0, - "props": { - "w": 43, - "h": 28, - "fill": "hsl(127 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06449": { - "id": "shape:perf:06449", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 4096, - "rot": 0, - "props": { - "w": 34, - "h": 24, - "fill": "hsl(223 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06450": { - "id": "shape:perf:06450", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 4096, - "rot": 0, - "props": { - "w": 44, - "h": 34, - "fill": "hsl(182 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06451": { - "id": "shape:perf:06451", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 4096, - "rot": 0, - "props": { - "w": 43, - "h": 33, - "fill": "hsl(277 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06452": { - "id": "shape:perf:06452", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 4096, - "rot": 0, - "props": { - "w": 34, - "h": 33, - "fill": "hsl(60 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06453": { - "id": "shape:perf:06453", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 4096, - "rot": 0, - "props": { - "w": 46, - "h": 29, - "fill": "hsl(41 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06454": { - "id": "shape:perf:06454", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 4096, - "rot": 0, - "props": { - "w": 47, - "h": 41, - "fill": "hsl(242 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06455": { - "id": "shape:perf:06455", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 4096, - "rot": 0, - "props": { - "w": 34, - "h": 24, - "fill": "hsl(337 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06456": { - "id": "shape:perf:06456", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 4096, - "rot": 0, - "props": { - "w": 44, - "h": 41, - "fill": "hsl(44 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06457": { - "id": "shape:perf:06457", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 4096, - "rot": 0, - "props": { - "w": 34, - "h": 31, - "fill": "hsl(303 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06458": { - "id": "shape:perf:06458", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 4096, - "rot": 0, - "props": { - "w": 25, - "h": 41, - "fill": "hsl(343 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06459": { - "id": "shape:perf:06459", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 4096, - "rot": 0, - "props": { - "w": 45, - "h": 36, - "fill": "hsl(44 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06460": { - "id": "shape:perf:06460", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 4096, - "rot": 0, - "props": { - "w": 28, - "h": 44, - "fill": "hsl(242 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06461": { - "id": "shape:perf:06461", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 4096, - "rot": 0, - "props": { - "w": 29, - "h": 44, - "fill": "hsl(307 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06462": { - "id": "shape:perf:06462", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 4096, - "rot": 0, - "props": { - "w": 37, - "h": 24, - "fill": "hsl(309 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06463": { - "id": "shape:perf:06463", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 4096, - "rot": 0, - "props": { - "w": 35, - "h": 34, - "fill": "hsl(145 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06464": { - "id": "shape:perf:06464", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 4096, - "rot": 0, - "props": { - "w": 26, - "h": 40, - "fill": "hsl(122 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06465": { - "id": "shape:perf:06465", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 4096, - "rot": 0, - "props": { - "w": 36, - "h": 36, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06466": { - "id": "shape:perf:06466", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 4096, - "rot": 0, - "props": { - "w": 44, - "h": 25, - "fill": "hsl(166 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06467": { - "id": "shape:perf:06467", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 4096, - "rot": 0, - "props": { - "w": 45, - "h": 28, - "fill": "hsl(33 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06468": { - "id": "shape:perf:06468", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 4096, - "rot": 0, - "props": { - "w": 28, - "h": 45, - "fill": "hsl(215 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06469": { - "id": "shape:perf:06469", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 4096, - "rot": 0, - "props": { - "w": 29, - "h": 41, - "fill": "hsl(234 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06470": { - "id": "shape:perf:06470", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 4096, - "rot": 0, - "props": { - "w": 30, - "h": 41, - "fill": "hsl(91 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06471": { - "id": "shape:perf:06471", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 4096, - "rot": 0, - "props": { - "w": 42, - "h": 40, - "fill": "hsl(2 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06472": { - "id": "shape:perf:06472", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 4096, - "rot": 0, - "props": { - "w": 31, - "h": 28, - "fill": "hsl(292 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06473": { - "id": "shape:perf:06473", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 4096, - "rot": 0, - "props": { - "w": 45, - "h": 28, - "fill": "hsl(302 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06474": { - "id": "shape:perf:06474", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 4096, - "rot": 0, - "props": { - "w": 35, - "h": 31, - "fill": "hsl(0 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06475": { - "id": "shape:perf:06475", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 4096, - "rot": 0, - "props": { - "w": 29, - "h": 30, - "fill": "hsl(33 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06476": { - "id": "shape:perf:06476", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 4096, - "rot": 0, - "props": { - "w": 44, - "h": 28, - "fill": "hsl(120 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06477": { - "id": "shape:perf:06477", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 4096, - "rot": 0, - "props": { - "w": 42, - "h": 44, - "fill": "hsl(253 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06478": { - "id": "shape:perf:06478", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 4096, - "rot": 0, - "props": { - "w": 29, - "h": 47, - "fill": "hsl(282 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06479": { - "id": "shape:perf:06479", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 4096, - "rot": 0, - "props": { - "w": 38, - "h": 32, - "fill": "hsl(150 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06480": { - "id": "shape:perf:06480", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 4096, - "rot": 0, - "props": { - "w": 40, - "h": 26, - "fill": "hsl(60 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06481": { - "id": "shape:perf:06481", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 4096, - "rot": 0, - "props": { - "w": 47, - "h": 25, - "fill": "hsl(78 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06482": { - "id": "shape:perf:06482", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 4096, - "rot": 0, - "props": { - "w": 40, - "h": 46, - "fill": "hsl(254 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06483": { - "id": "shape:perf:06483", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 4096, - "rot": 0, - "props": { - "w": 32, - "h": 25, - "fill": "hsl(232 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06484": { - "id": "shape:perf:06484", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 4096, - "rot": 0, - "props": { - "w": 30, - "h": 42, - "fill": "hsl(272 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06485": { - "id": "shape:perf:06485", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 4096, - "rot": 0, - "props": { - "w": 32, - "h": 33, - "fill": "hsl(123 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06486": { - "id": "shape:perf:06486", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 4096, - "rot": 0, - "props": { - "w": 40, - "h": 32, - "fill": "hsl(18 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06487": { - "id": "shape:perf:06487", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 4096, - "rot": 0, - "props": { - "w": 32, - "h": 31, - "fill": "hsl(156 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06488": { - "id": "shape:perf:06488", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 4096, - "rot": 0, - "props": { - "w": 47, - "h": 44, - "fill": "hsl(282 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06489": { - "id": "shape:perf:06489", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 4096, - "rot": 0, - "props": { - "w": 41, - "h": 39, - "fill": "hsl(194 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06490": { - "id": "shape:perf:06490", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 4096, - "rot": 0, - "props": { - "w": 28, - "h": 37, - "fill": "hsl(297 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06491": { - "id": "shape:perf:06491", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 4096, - "rot": 0, - "props": { - "w": 31, - "h": 26, - "fill": "hsl(156 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06492": { - "id": "shape:perf:06492", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 4096, - "rot": 0, - "props": { - "w": 47, - "h": 38, - "fill": "hsl(34 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06493": { - "id": "shape:perf:06493", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 4096, - "rot": 0, - "props": { - "w": 28, - "h": 37, - "fill": "hsl(284 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06494": { - "id": "shape:perf:06494", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 4096, - "rot": 0, - "props": { - "w": 28, - "h": 45, - "fill": "hsl(338 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06495": { - "id": "shape:perf:06495", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 4096, - "rot": 0, - "props": { - "w": 38, - "h": 47, - "fill": "hsl(291 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06496": { - "id": "shape:perf:06496", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 4096, - "rot": 0, - "props": { - "w": 27, - "h": 45, - "fill": "hsl(24 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06497": { - "id": "shape:perf:06497", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 4096, - "rot": 0, - "props": { - "w": 26, - "h": 25, - "fill": "hsl(250 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06498": { - "id": "shape:perf:06498", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 4096, - "rot": 0, - "props": { - "w": 30, - "h": 38, - "fill": "hsl(186 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06499": { - "id": "shape:perf:06499", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 4096, - "rot": 0, - "props": { - "w": 43, - "h": 36, - "fill": "hsl(152 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06500": { - "id": "shape:perf:06500", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 4160, - "rot": 0, - "props": { - "w": 35, - "h": 32, - "fill": "hsl(36 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06501": { - "id": "shape:perf:06501", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 4160, - "rot": 0, - "props": { - "w": 37, - "h": 32, - "fill": "hsl(166 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06502": { - "id": "shape:perf:06502", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 4160, - "rot": 0, - "props": { - "w": 35, - "h": 38, - "fill": "hsl(19 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06503": { - "id": "shape:perf:06503", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 4160, - "rot": 0, - "props": { - "w": 45, - "h": 25, - "fill": "hsl(58 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06504": { - "id": "shape:perf:06504", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 4160, - "rot": 0, - "props": { - "w": 30, - "h": 38, - "fill": "hsl(6 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06505": { - "id": "shape:perf:06505", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 4160, - "rot": 0, - "props": { - "w": 39, - "h": 28, - "fill": "hsl(277 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06506": { - "id": "shape:perf:06506", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 4160, - "rot": 0, - "props": { - "w": 24, - "h": 40, - "fill": "hsl(154 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06507": { - "id": "shape:perf:06507", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 4160, - "rot": 0, - "props": { - "w": 47, - "h": 29, - "fill": "hsl(8 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06508": { - "id": "shape:perf:06508", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 4160, - "rot": 0, - "props": { - "w": 34, - "h": 28, - "fill": "hsl(191 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06509": { - "id": "shape:perf:06509", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 4160, - "rot": 0, - "props": { - "w": 47, - "h": 25, - "fill": "hsl(314 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06510": { - "id": "shape:perf:06510", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 4160, - "rot": 0, - "props": { - "w": 46, - "h": 37, - "fill": "hsl(349 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06511": { - "id": "shape:perf:06511", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 4160, - "rot": 0, - "props": { - "w": 39, - "h": 32, - "fill": "hsl(331 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06512": { - "id": "shape:perf:06512", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 4160, - "rot": 0, - "props": { - "w": 44, - "h": 26, - "fill": "hsl(44 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06513": { - "id": "shape:perf:06513", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 4160, - "rot": 0, - "props": { - "w": 44, - "h": 44, - "fill": "hsl(165 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06514": { - "id": "shape:perf:06514", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 4160, - "rot": 0, - "props": { - "w": 34, - "h": 32, - "fill": "hsl(39 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06515": { - "id": "shape:perf:06515", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 4160, - "rot": 0, - "props": { - "w": 39, - "h": 30, - "fill": "hsl(123 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06516": { - "id": "shape:perf:06516", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 4160, - "rot": 0, - "props": { - "w": 24, - "h": 38, - "fill": "hsl(337 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06517": { - "id": "shape:perf:06517", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 4160, - "rot": 0, - "props": { - "w": 36, - "h": 41, - "fill": "hsl(21 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06518": { - "id": "shape:perf:06518", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 4160, - "rot": 0, - "props": { - "w": 36, - "h": 40, - "fill": "hsl(107 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06519": { - "id": "shape:perf:06519", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 4160, - "rot": 0, - "props": { - "w": 31, - "h": 24, - "fill": "hsl(125 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06520": { - "id": "shape:perf:06520", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 4160, - "rot": 0, - "props": { - "w": 24, - "h": 25, - "fill": "hsl(202 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06521": { - "id": "shape:perf:06521", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 4160, - "rot": 0, - "props": { - "w": 47, - "h": 47, - "fill": "hsl(18 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06522": { - "id": "shape:perf:06522", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 4160, - "rot": 0, - "props": { - "w": 33, - "h": 43, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06523": { - "id": "shape:perf:06523", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 4160, - "rot": 0, - "props": { - "w": 47, - "h": 32, - "fill": "hsl(175 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06524": { - "id": "shape:perf:06524", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 4160, - "rot": 0, - "props": { - "w": 36, - "h": 31, - "fill": "hsl(281 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06525": { - "id": "shape:perf:06525", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 4160, - "rot": 0, - "props": { - "w": 33, - "h": 26, - "fill": "hsl(213 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06526": { - "id": "shape:perf:06526", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 4160, - "rot": 0, - "props": { - "w": 40, - "h": 42, - "fill": "hsl(196 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06527": { - "id": "shape:perf:06527", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 4160, - "rot": 0, - "props": { - "w": 35, - "h": 25, - "fill": "hsl(231 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06528": { - "id": "shape:perf:06528", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 4160, - "rot": 0, - "props": { - "w": 44, - "h": 41, - "fill": "hsl(255 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06529": { - "id": "shape:perf:06529", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 4160, - "rot": 0, - "props": { - "w": 36, - "h": 31, - "fill": "hsl(344 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06530": { - "id": "shape:perf:06530", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 4160, - "rot": 0, - "props": { - "w": 33, - "h": 40, - "fill": "hsl(210 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06531": { - "id": "shape:perf:06531", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 4160, - "rot": 0, - "props": { - "w": 26, - "h": 43, - "fill": "hsl(332 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06532": { - "id": "shape:perf:06532", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 4160, - "rot": 0, - "props": { - "w": 34, - "h": 29, - "fill": "hsl(305 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06533": { - "id": "shape:perf:06533", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 4160, - "rot": 0, - "props": { - "w": 25, - "h": 41, - "fill": "hsl(54 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06534": { - "id": "shape:perf:06534", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 4160, - "rot": 0, - "props": { - "w": 45, - "h": 38, - "fill": "hsl(292 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06535": { - "id": "shape:perf:06535", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 4160, - "rot": 0, - "props": { - "w": 44, - "h": 32, - "fill": "hsl(18 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06536": { - "id": "shape:perf:06536", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 4160, - "rot": 0, - "props": { - "w": 26, - "h": 45, - "fill": "hsl(352 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06537": { - "id": "shape:perf:06537", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 4160, - "rot": 0, - "props": { - "w": 26, - "h": 47, - "fill": "hsl(289 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06538": { - "id": "shape:perf:06538", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 4160, - "rot": 0, - "props": { - "w": 45, - "h": 44, - "fill": "hsl(354 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06539": { - "id": "shape:perf:06539", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 4160, - "rot": 0, - "props": { - "w": 47, - "h": 24, - "fill": "hsl(325 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06540": { - "id": "shape:perf:06540", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 4160, - "rot": 0, - "props": { - "w": 42, - "h": 39, - "fill": "hsl(353 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06541": { - "id": "shape:perf:06541", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 4160, - "rot": 0, - "props": { - "w": 27, - "h": 43, - "fill": "hsl(232 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06542": { - "id": "shape:perf:06542", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 4160, - "rot": 0, - "props": { - "w": 26, - "h": 24, - "fill": "hsl(101 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06543": { - "id": "shape:perf:06543", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 4160, - "rot": 0, - "props": { - "w": 43, - "h": 37, - "fill": "hsl(41 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06544": { - "id": "shape:perf:06544", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 4160, - "rot": 0, - "props": { - "w": 46, - "h": 46, - "fill": "hsl(338 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06545": { - "id": "shape:perf:06545", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 4160, - "rot": 0, - "props": { - "w": 31, - "h": 24, - "fill": "hsl(41 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06546": { - "id": "shape:perf:06546", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 4160, - "rot": 0, - "props": { - "w": 26, - "h": 30, - "fill": "hsl(308 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06547": { - "id": "shape:perf:06547", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 4160, - "rot": 0, - "props": { - "w": 40, - "h": 41, - "fill": "hsl(348 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06548": { - "id": "shape:perf:06548", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 4160, - "rot": 0, - "props": { - "w": 38, - "h": 24, - "fill": "hsl(47 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06549": { - "id": "shape:perf:06549", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 4160, - "rot": 0, - "props": { - "w": 41, - "h": 38, - "fill": "hsl(329 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06550": { - "id": "shape:perf:06550", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 4160, - "rot": 0, - "props": { - "w": 26, - "h": 26, - "fill": "hsl(195 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06551": { - "id": "shape:perf:06551", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 4160, - "rot": 0, - "props": { - "w": 31, - "h": 45, - "fill": "hsl(329 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06552": { - "id": "shape:perf:06552", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 4160, - "rot": 0, - "props": { - "w": 37, - "h": 46, - "fill": "hsl(282 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06553": { - "id": "shape:perf:06553", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 4160, - "rot": 0, - "props": { - "w": 32, - "h": 37, - "fill": "hsl(187 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06554": { - "id": "shape:perf:06554", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 4160, - "rot": 0, - "props": { - "w": 38, - "h": 25, - "fill": "hsl(269 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06555": { - "id": "shape:perf:06555", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 4160, - "rot": 0, - "props": { - "w": 45, - "h": 28, - "fill": "hsl(173 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06556": { - "id": "shape:perf:06556", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 4160, - "rot": 0, - "props": { - "w": 24, - "h": 38, - "fill": "hsl(252 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06557": { - "id": "shape:perf:06557", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 4160, - "rot": 0, - "props": { - "w": 27, - "h": 45, - "fill": "hsl(353 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06558": { - "id": "shape:perf:06558", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 4160, - "rot": 0, - "props": { - "w": 36, - "h": 31, - "fill": "hsl(252 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06559": { - "id": "shape:perf:06559", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 4160, - "rot": 0, - "props": { - "w": 38, - "h": 39, - "fill": "hsl(148 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06560": { - "id": "shape:perf:06560", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 4160, - "rot": 0, - "props": { - "w": 35, - "h": 25, - "fill": "hsl(31 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06561": { - "id": "shape:perf:06561", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 4160, - "rot": 0, - "props": { - "w": 28, - "h": 24, - "fill": "hsl(196 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06562": { - "id": "shape:perf:06562", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 4160, - "rot": 0, - "props": { - "w": 44, - "h": 33, - "fill": "hsl(213 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06563": { - "id": "shape:perf:06563", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 4160, - "rot": 0, - "props": { - "w": 26, - "h": 27, - "fill": "hsl(94 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06564": { - "id": "shape:perf:06564", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 4160, - "rot": 0, - "props": { - "w": 35, - "h": 24, - "fill": "hsl(84 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06565": { - "id": "shape:perf:06565", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 4160, - "rot": 0, - "props": { - "w": 39, - "h": 32, - "fill": "hsl(314 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06566": { - "id": "shape:perf:06566", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 4160, - "rot": 0, - "props": { - "w": 40, - "h": 47, - "fill": "hsl(113 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06567": { - "id": "shape:perf:06567", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 4160, - "rot": 0, - "props": { - "w": 30, - "h": 36, - "fill": "hsl(307 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06568": { - "id": "shape:perf:06568", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 4160, - "rot": 0, - "props": { - "w": 38, - "h": 35, - "fill": "hsl(317 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06569": { - "id": "shape:perf:06569", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 4160, - "rot": 0, - "props": { - "w": 35, - "h": 42, - "fill": "hsl(346 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06570": { - "id": "shape:perf:06570", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 4160, - "rot": 0, - "props": { - "w": 37, - "h": 40, - "fill": "hsl(286 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06571": { - "id": "shape:perf:06571", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 4160, - "rot": 0, - "props": { - "w": 26, - "h": 38, - "fill": "hsl(91 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06572": { - "id": "shape:perf:06572", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 4160, - "rot": 0, - "props": { - "w": 29, - "h": 31, - "fill": "hsl(137 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06573": { - "id": "shape:perf:06573", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 4160, - "rot": 0, - "props": { - "w": 26, - "h": 33, - "fill": "hsl(358 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06574": { - "id": "shape:perf:06574", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 4160, - "rot": 0, - "props": { - "w": 35, - "h": 38, - "fill": "hsl(54 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06575": { - "id": "shape:perf:06575", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 4160, - "rot": 0, - "props": { - "w": 25, - "h": 45, - "fill": "hsl(79 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06576": { - "id": "shape:perf:06576", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 4160, - "rot": 0, - "props": { - "w": 32, - "h": 47, - "fill": "hsl(14 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06577": { - "id": "shape:perf:06577", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 4160, - "rot": 0, - "props": { - "w": 37, - "h": 46, - "fill": "hsl(255 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06578": { - "id": "shape:perf:06578", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 4160, - "rot": 0, - "props": { - "w": 38, - "h": 41, - "fill": "hsl(55 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06579": { - "id": "shape:perf:06579", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 4160, - "rot": 0, - "props": { - "w": 38, - "h": 31, - "fill": "hsl(94 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06580": { - "id": "shape:perf:06580", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 4160, - "rot": 0, - "props": { - "w": 29, - "h": 37, - "fill": "hsl(73 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06581": { - "id": "shape:perf:06581", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 4160, - "rot": 0, - "props": { - "w": 25, - "h": 47, - "fill": "hsl(29 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06582": { - "id": "shape:perf:06582", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 4160, - "rot": 0, - "props": { - "w": 39, - "h": 28, - "fill": "hsl(267 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06583": { - "id": "shape:perf:06583", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 4160, - "rot": 0, - "props": { - "w": 27, - "h": 38, - "fill": "hsl(270 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06584": { - "id": "shape:perf:06584", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 4160, - "rot": 0, - "props": { - "w": 31, - "h": 28, - "fill": "hsl(357 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06585": { - "id": "shape:perf:06585", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 4160, - "rot": 0, - "props": { - "w": 37, - "h": 46, - "fill": "hsl(126 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06586": { - "id": "shape:perf:06586", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 4160, - "rot": 0, - "props": { - "w": 29, - "h": 43, - "fill": "hsl(201 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06587": { - "id": "shape:perf:06587", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 4160, - "rot": 0, - "props": { - "w": 37, - "h": 29, - "fill": "hsl(273 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06588": { - "id": "shape:perf:06588", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 4160, - "rot": 0, - "props": { - "w": 35, - "h": 46, - "fill": "hsl(278 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06589": { - "id": "shape:perf:06589", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 4160, - "rot": 0, - "props": { - "w": 30, - "h": 37, - "fill": "hsl(251 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06590": { - "id": "shape:perf:06590", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 4160, - "rot": 0, - "props": { - "w": 30, - "h": 42, - "fill": "hsl(272 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06591": { - "id": "shape:perf:06591", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 4160, - "rot": 0, - "props": { - "w": 46, - "h": 25, - "fill": "hsl(191 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06592": { - "id": "shape:perf:06592", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 4160, - "rot": 0, - "props": { - "w": 45, - "h": 28, - "fill": "hsl(260 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06593": { - "id": "shape:perf:06593", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 4160, - "rot": 0, - "props": { - "w": 42, - "h": 41, - "fill": "hsl(45 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06594": { - "id": "shape:perf:06594", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 4160, - "rot": 0, - "props": { - "w": 33, - "h": 26, - "fill": "hsl(192 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06595": { - "id": "shape:perf:06595", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 4160, - "rot": 0, - "props": { - "w": 27, - "h": 43, - "fill": "hsl(274 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06596": { - "id": "shape:perf:06596", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 4160, - "rot": 0, - "props": { - "w": 28, - "h": 39, - "fill": "hsl(37 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06597": { - "id": "shape:perf:06597", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 4160, - "rot": 0, - "props": { - "w": 26, - "h": 29, - "fill": "hsl(112 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06598": { - "id": "shape:perf:06598", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 4160, - "rot": 0, - "props": { - "w": 42, - "h": 27, - "fill": "hsl(66 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06599": { - "id": "shape:perf:06599", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 4160, - "rot": 0, - "props": { - "w": 36, - "h": 35, - "fill": "hsl(48 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06600": { - "id": "shape:perf:06600", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 4224, - "rot": 0, - "props": { - "w": 41, - "h": 41, - "fill": "hsl(39 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06601": { - "id": "shape:perf:06601", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 4224, - "rot": 0, - "props": { - "w": 38, - "h": 46, - "fill": "hsl(194 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06602": { - "id": "shape:perf:06602", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 4224, - "rot": 0, - "props": { - "w": 44, - "h": 45, - "fill": "hsl(206 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06603": { - "id": "shape:perf:06603", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 4224, - "rot": 0, - "props": { - "w": 47, - "h": 42, - "fill": "hsl(265 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06604": { - "id": "shape:perf:06604", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 4224, - "rot": 0, - "props": { - "w": 46, - "h": 43, - "fill": "hsl(135 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06605": { - "id": "shape:perf:06605", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 4224, - "rot": 0, - "props": { - "w": 26, - "h": 26, - "fill": "hsl(331 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06606": { - "id": "shape:perf:06606", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 4224, - "rot": 0, - "props": { - "w": 26, - "h": 27, - "fill": "hsl(123 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06607": { - "id": "shape:perf:06607", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 4224, - "rot": 0, - "props": { - "w": 39, - "h": 38, - "fill": "hsl(119 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06608": { - "id": "shape:perf:06608", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 4224, - "rot": 0, - "props": { - "w": 45, - "h": 25, - "fill": "hsl(197 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06609": { - "id": "shape:perf:06609", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 4224, - "rot": 0, - "props": { - "w": 25, - "h": 43, - "fill": "hsl(194 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06610": { - "id": "shape:perf:06610", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 4224, - "rot": 0, - "props": { - "w": 44, - "h": 25, - "fill": "hsl(105 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06611": { - "id": "shape:perf:06611", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 4224, - "rot": 0, - "props": { - "w": 35, - "h": 28, - "fill": "hsl(219 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06612": { - "id": "shape:perf:06612", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 4224, - "rot": 0, - "props": { - "w": 37, - "h": 45, - "fill": "hsl(171 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06613": { - "id": "shape:perf:06613", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 4224, - "rot": 0, - "props": { - "w": 35, - "h": 36, - "fill": "hsl(89 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06614": { - "id": "shape:perf:06614", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 4224, - "rot": 0, - "props": { - "w": 28, - "h": 39, - "fill": "hsl(244 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06615": { - "id": "shape:perf:06615", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 4224, - "rot": 0, - "props": { - "w": 30, - "h": 42, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06616": { - "id": "shape:perf:06616", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 4224, - "rot": 0, - "props": { - "w": 45, - "h": 35, - "fill": "hsl(331 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06617": { - "id": "shape:perf:06617", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 4224, - "rot": 0, - "props": { - "w": 26, - "h": 46, - "fill": "hsl(78 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06618": { - "id": "shape:perf:06618", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 4224, - "rot": 0, - "props": { - "w": 24, - "h": 35, - "fill": "hsl(146 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06619": { - "id": "shape:perf:06619", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 4224, - "rot": 0, - "props": { - "w": 25, - "h": 46, - "fill": "hsl(290 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06620": { - "id": "shape:perf:06620", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 4224, - "rot": 0, - "props": { - "w": 41, - "h": 37, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06621": { - "id": "shape:perf:06621", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 4224, - "rot": 0, - "props": { - "w": 46, - "h": 42, - "fill": "hsl(178 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06622": { - "id": "shape:perf:06622", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 4224, - "rot": 0, - "props": { - "w": 43, - "h": 27, - "fill": "hsl(140 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06623": { - "id": "shape:perf:06623", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 4224, - "rot": 0, - "props": { - "w": 37, - "h": 26, - "fill": "hsl(105 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06624": { - "id": "shape:perf:06624", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 4224, - "rot": 0, - "props": { - "w": 35, - "h": 24, - "fill": "hsl(303 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06625": { - "id": "shape:perf:06625", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 4224, - "rot": 0, - "props": { - "w": 24, - "h": 44, - "fill": "hsl(44 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06626": { - "id": "shape:perf:06626", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 4224, - "rot": 0, - "props": { - "w": 38, - "h": 38, - "fill": "hsl(178 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06627": { - "id": "shape:perf:06627", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 4224, - "rot": 0, - "props": { - "w": 36, - "h": 30, - "fill": "hsl(134 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06628": { - "id": "shape:perf:06628", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 4224, - "rot": 0, - "props": { - "w": 38, - "h": 26, - "fill": "hsl(272 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06629": { - "id": "shape:perf:06629", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 4224, - "rot": 0, - "props": { - "w": 26, - "h": 47, - "fill": "hsl(238 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06630": { - "id": "shape:perf:06630", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 4224, - "rot": 0, - "props": { - "w": 42, - "h": 37, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06631": { - "id": "shape:perf:06631", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 4224, - "rot": 0, - "props": { - "w": 41, - "h": 25, - "fill": "hsl(306 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06632": { - "id": "shape:perf:06632", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 4224, - "rot": 0, - "props": { - "w": 35, - "h": 26, - "fill": "hsl(91 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06633": { - "id": "shape:perf:06633", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 4224, - "rot": 0, - "props": { - "w": 46, - "h": 32, - "fill": "hsl(32 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06634": { - "id": "shape:perf:06634", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 4224, - "rot": 0, - "props": { - "w": 47, - "h": 24, - "fill": "hsl(217 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06635": { - "id": "shape:perf:06635", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 4224, - "rot": 0, - "props": { - "w": 38, - "h": 24, - "fill": "hsl(56 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06636": { - "id": "shape:perf:06636", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 4224, - "rot": 0, - "props": { - "w": 46, - "h": 35, - "fill": "hsl(202 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06637": { - "id": "shape:perf:06637", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 4224, - "rot": 0, - "props": { - "w": 41, - "h": 35, - "fill": "hsl(156 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06638": { - "id": "shape:perf:06638", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 4224, - "rot": 0, - "props": { - "w": 27, - "h": 27, - "fill": "hsl(342 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06639": { - "id": "shape:perf:06639", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 4224, - "rot": 0, - "props": { - "w": 26, - "h": 37, - "fill": "hsl(161 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06640": { - "id": "shape:perf:06640", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 4224, - "rot": 0, - "props": { - "w": 26, - "h": 38, - "fill": "hsl(105 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06641": { - "id": "shape:perf:06641", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 4224, - "rot": 0, - "props": { - "w": 33, - "h": 41, - "fill": "hsl(238 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06642": { - "id": "shape:perf:06642", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 4224, - "rot": 0, - "props": { - "w": 40, - "h": 47, - "fill": "hsl(232 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06643": { - "id": "shape:perf:06643", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 4224, - "rot": 0, - "props": { - "w": 32, - "h": 40, - "fill": "hsl(14 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06644": { - "id": "shape:perf:06644", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 4224, - "rot": 0, - "props": { - "w": 33, - "h": 24, - "fill": "hsl(261 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06645": { - "id": "shape:perf:06645", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 4224, - "rot": 0, - "props": { - "w": 45, - "h": 30, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06646": { - "id": "shape:perf:06646", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 4224, - "rot": 0, - "props": { - "w": 34, - "h": 32, - "fill": "hsl(347 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06647": { - "id": "shape:perf:06647", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 4224, - "rot": 0, - "props": { - "w": 47, - "h": 24, - "fill": "hsl(243 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06648": { - "id": "shape:perf:06648", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 4224, - "rot": 0, - "props": { - "w": 27, - "h": 35, - "fill": "hsl(183 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06649": { - "id": "shape:perf:06649", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 4224, - "rot": 0, - "props": { - "w": 46, - "h": 43, - "fill": "hsl(22 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06650": { - "id": "shape:perf:06650", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 4224, - "rot": 0, - "props": { - "w": 29, - "h": 32, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06651": { - "id": "shape:perf:06651", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 4224, - "rot": 0, - "props": { - "w": 44, - "h": 30, - "fill": "hsl(87 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06652": { - "id": "shape:perf:06652", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 4224, - "rot": 0, - "props": { - "w": 34, - "h": 35, - "fill": "hsl(294 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06653": { - "id": "shape:perf:06653", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 4224, - "rot": 0, - "props": { - "w": 39, - "h": 28, - "fill": "hsl(49 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06654": { - "id": "shape:perf:06654", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 4224, - "rot": 0, - "props": { - "w": 30, - "h": 47, - "fill": "hsl(219 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06655": { - "id": "shape:perf:06655", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 4224, - "rot": 0, - "props": { - "w": 46, - "h": 24, - "fill": "hsl(319 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06656": { - "id": "shape:perf:06656", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 4224, - "rot": 0, - "props": { - "w": 31, - "h": 45, - "fill": "hsl(135 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06657": { - "id": "shape:perf:06657", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 4224, - "rot": 0, - "props": { - "w": 42, - "h": 38, - "fill": "hsl(264 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06658": { - "id": "shape:perf:06658", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 4224, - "rot": 0, - "props": { - "w": 25, - "h": 27, - "fill": "hsl(226 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06659": { - "id": "shape:perf:06659", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 4224, - "rot": 0, - "props": { - "w": 38, - "h": 28, - "fill": "hsl(250 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06660": { - "id": "shape:perf:06660", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 4224, - "rot": 0, - "props": { - "w": 47, - "h": 43, - "fill": "hsl(339 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06661": { - "id": "shape:perf:06661", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 4224, - "rot": 0, - "props": { - "w": 31, - "h": 41, - "fill": "hsl(228 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06662": { - "id": "shape:perf:06662", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 4224, - "rot": 0, - "props": { - "w": 45, - "h": 47, - "fill": "hsl(233 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06663": { - "id": "shape:perf:06663", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 4224, - "rot": 0, - "props": { - "w": 43, - "h": 26, - "fill": "hsl(125 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06664": { - "id": "shape:perf:06664", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 4224, - "rot": 0, - "props": { - "w": 47, - "h": 24, - "fill": "hsl(38 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06665": { - "id": "shape:perf:06665", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 4224, - "rot": 0, - "props": { - "w": 38, - "h": 25, - "fill": "hsl(156 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06666": { - "id": "shape:perf:06666", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 4224, - "rot": 0, - "props": { - "w": 42, - "h": 37, - "fill": "hsl(269 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06667": { - "id": "shape:perf:06667", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 4224, - "rot": 0, - "props": { - "w": 36, - "h": 34, - "fill": "hsl(164 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06668": { - "id": "shape:perf:06668", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 4224, - "rot": 0, - "props": { - "w": 24, - "h": 34, - "fill": "hsl(178 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06669": { - "id": "shape:perf:06669", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 4224, - "rot": 0, - "props": { - "w": 46, - "h": 46, - "fill": "hsl(202 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06670": { - "id": "shape:perf:06670", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 4224, - "rot": 0, - "props": { - "w": 25, - "h": 41, - "fill": "hsl(143 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06671": { - "id": "shape:perf:06671", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 4224, - "rot": 0, - "props": { - "w": 28, - "h": 46, - "fill": "hsl(161 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06672": { - "id": "shape:perf:06672", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 4224, - "rot": 0, - "props": { - "w": 46, - "h": 34, - "fill": "hsl(289 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06673": { - "id": "shape:perf:06673", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 4224, - "rot": 0, - "props": { - "w": 30, - "h": 38, - "fill": "hsl(325 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06674": { - "id": "shape:perf:06674", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 4224, - "rot": 0, - "props": { - "w": 45, - "h": 40, - "fill": "hsl(234 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06675": { - "id": "shape:perf:06675", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 4224, - "rot": 0, - "props": { - "w": 33, - "h": 30, - "fill": "hsl(78 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06676": { - "id": "shape:perf:06676", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 4224, - "rot": 0, - "props": { - "w": 24, - "h": 27, - "fill": "hsl(65 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06677": { - "id": "shape:perf:06677", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 4224, - "rot": 0, - "props": { - "w": 26, - "h": 24, - "fill": "hsl(325 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06678": { - "id": "shape:perf:06678", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 4224, - "rot": 0, - "props": { - "w": 42, - "h": 31, - "fill": "hsl(14 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06679": { - "id": "shape:perf:06679", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 4224, - "rot": 0, - "props": { - "w": 30, - "h": 43, - "fill": "hsl(345 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06680": { - "id": "shape:perf:06680", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 4224, - "rot": 0, - "props": { - "w": 46, - "h": 44, - "fill": "hsl(326 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06681": { - "id": "shape:perf:06681", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 4224, - "rot": 0, - "props": { - "w": 43, - "h": 25, - "fill": "hsl(31 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06682": { - "id": "shape:perf:06682", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 4224, - "rot": 0, - "props": { - "w": 39, - "h": 37, - "fill": "hsl(32 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06683": { - "id": "shape:perf:06683", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 4224, - "rot": 0, - "props": { - "w": 24, - "h": 25, - "fill": "hsl(300 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06684": { - "id": "shape:perf:06684", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 4224, - "rot": 0, - "props": { - "w": 26, - "h": 33, - "fill": "hsl(142 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06685": { - "id": "shape:perf:06685", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 4224, - "rot": 0, - "props": { - "w": 33, - "h": 40, - "fill": "hsl(149 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06686": { - "id": "shape:perf:06686", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 4224, - "rot": 0, - "props": { - "w": 43, - "h": 35, - "fill": "hsl(269 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06687": { - "id": "shape:perf:06687", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 4224, - "rot": 0, - "props": { - "w": 39, - "h": 37, - "fill": "hsl(141 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06688": { - "id": "shape:perf:06688", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 4224, - "rot": 0, - "props": { - "w": 45, - "h": 40, - "fill": "hsl(343 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06689": { - "id": "shape:perf:06689", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 4224, - "rot": 0, - "props": { - "w": 27, - "h": 24, - "fill": "hsl(329 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06690": { - "id": "shape:perf:06690", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 4224, - "rot": 0, - "props": { - "w": 30, - "h": 31, - "fill": "hsl(61 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06691": { - "id": "shape:perf:06691", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 4224, - "rot": 0, - "props": { - "w": 42, - "h": 35, - "fill": "hsl(346 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06692": { - "id": "shape:perf:06692", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 4224, - "rot": 0, - "props": { - "w": 24, - "h": 33, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06693": { - "id": "shape:perf:06693", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 4224, - "rot": 0, - "props": { - "w": 26, - "h": 31, - "fill": "hsl(162 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06694": { - "id": "shape:perf:06694", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 4224, - "rot": 0, - "props": { - "w": 29, - "h": 27, - "fill": "hsl(223 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06695": { - "id": "shape:perf:06695", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 4224, - "rot": 0, - "props": { - "w": 35, - "h": 32, - "fill": "hsl(133 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06696": { - "id": "shape:perf:06696", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 4224, - "rot": 0, - "props": { - "w": 32, - "h": 47, - "fill": "hsl(239 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06697": { - "id": "shape:perf:06697", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 4224, - "rot": 0, - "props": { - "w": 33, - "h": 38, - "fill": "hsl(238 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06698": { - "id": "shape:perf:06698", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 4224, - "rot": 0, - "props": { - "w": 33, - "h": 45, - "fill": "hsl(162 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06699": { - "id": "shape:perf:06699", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 4224, - "rot": 0, - "props": { - "w": 42, - "h": 47, - "fill": "hsl(260 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06700": { - "id": "shape:perf:06700", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 4288, - "rot": 0, - "props": { - "w": 45, - "h": 37, - "fill": "hsl(245 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06701": { - "id": "shape:perf:06701", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 4288, - "rot": 0, - "props": { - "w": 27, - "h": 28, - "fill": "hsl(123 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06702": { - "id": "shape:perf:06702", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 4288, - "rot": 0, - "props": { - "w": 34, - "h": 41, - "fill": "hsl(154 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06703": { - "id": "shape:perf:06703", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 4288, - "rot": 0, - "props": { - "w": 47, - "h": 34, - "fill": "hsl(38 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06704": { - "id": "shape:perf:06704", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 4288, - "rot": 0, - "props": { - "w": 26, - "h": 47, - "fill": "hsl(114 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06705": { - "id": "shape:perf:06705", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 4288, - "rot": 0, - "props": { - "w": 37, - "h": 26, - "fill": "hsl(309 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06706": { - "id": "shape:perf:06706", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 4288, - "rot": 0, - "props": { - "w": 29, - "h": 40, - "fill": "hsl(302 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06707": { - "id": "shape:perf:06707", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 4288, - "rot": 0, - "props": { - "w": 41, - "h": 42, - "fill": "hsl(161 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06708": { - "id": "shape:perf:06708", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 4288, - "rot": 0, - "props": { - "w": 47, - "h": 42, - "fill": "hsl(189 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06709": { - "id": "shape:perf:06709", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 4288, - "rot": 0, - "props": { - "w": 42, - "h": 25, - "fill": "hsl(123 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06710": { - "id": "shape:perf:06710", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 4288, - "rot": 0, - "props": { - "w": 31, - "h": 38, - "fill": "hsl(62 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06711": { - "id": "shape:perf:06711", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 4288, - "rot": 0, - "props": { - "w": 47, - "h": 41, - "fill": "hsl(327 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06712": { - "id": "shape:perf:06712", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 4288, - "rot": 0, - "props": { - "w": 29, - "h": 32, - "fill": "hsl(164 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06713": { - "id": "shape:perf:06713", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 4288, - "rot": 0, - "props": { - "w": 24, - "h": 36, - "fill": "hsl(274 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06714": { - "id": "shape:perf:06714", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 4288, - "rot": 0, - "props": { - "w": 34, - "h": 30, - "fill": "hsl(111 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06715": { - "id": "shape:perf:06715", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 4288, - "rot": 0, - "props": { - "w": 28, - "h": 42, - "fill": "hsl(174 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06716": { - "id": "shape:perf:06716", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 4288, - "rot": 0, - "props": { - "w": 25, - "h": 43, - "fill": "hsl(120 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06717": { - "id": "shape:perf:06717", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 4288, - "rot": 0, - "props": { - "w": 34, - "h": 25, - "fill": "hsl(44 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06718": { - "id": "shape:perf:06718", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 4288, - "rot": 0, - "props": { - "w": 47, - "h": 35, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06719": { - "id": "shape:perf:06719", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 4288, - "rot": 0, - "props": { - "w": 41, - "h": 44, - "fill": "hsl(279 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06720": { - "id": "shape:perf:06720", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 4288, - "rot": 0, - "props": { - "w": 35, - "h": 44, - "fill": "hsl(330 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06721": { - "id": "shape:perf:06721", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 4288, - "rot": 0, - "props": { - "w": 31, - "h": 47, - "fill": "hsl(139 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06722": { - "id": "shape:perf:06722", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 4288, - "rot": 0, - "props": { - "w": 40, - "h": 24, - "fill": "hsl(157 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06723": { - "id": "shape:perf:06723", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 4288, - "rot": 0, - "props": { - "w": 34, - "h": 27, - "fill": "hsl(18 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06724": { - "id": "shape:perf:06724", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 4288, - "rot": 0, - "props": { - "w": 39, - "h": 40, - "fill": "hsl(69 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06725": { - "id": "shape:perf:06725", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 4288, - "rot": 0, - "props": { - "w": 46, - "h": 24, - "fill": "hsl(308 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06726": { - "id": "shape:perf:06726", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 4288, - "rot": 0, - "props": { - "w": 34, - "h": 24, - "fill": "hsl(259 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06727": { - "id": "shape:perf:06727", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 4288, - "rot": 0, - "props": { - "w": 25, - "h": 36, - "fill": "hsl(16 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06728": { - "id": "shape:perf:06728", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 4288, - "rot": 0, - "props": { - "w": 44, - "h": 33, - "fill": "hsl(45 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06729": { - "id": "shape:perf:06729", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 4288, - "rot": 0, - "props": { - "w": 40, - "h": 39, - "fill": "hsl(44 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06730": { - "id": "shape:perf:06730", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 4288, - "rot": 0, - "props": { - "w": 36, - "h": 31, - "fill": "hsl(264 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06731": { - "id": "shape:perf:06731", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 4288, - "rot": 0, - "props": { - "w": 47, - "h": 27, - "fill": "hsl(63 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06732": { - "id": "shape:perf:06732", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 4288, - "rot": 0, - "props": { - "w": 47, - "h": 36, - "fill": "hsl(208 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06733": { - "id": "shape:perf:06733", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 4288, - "rot": 0, - "props": { - "w": 28, - "h": 42, - "fill": "hsl(302 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06734": { - "id": "shape:perf:06734", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 4288, - "rot": 0, - "props": { - "w": 25, - "h": 36, - "fill": "hsl(43 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06735": { - "id": "shape:perf:06735", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 4288, - "rot": 0, - "props": { - "w": 41, - "h": 28, - "fill": "hsl(31 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06736": { - "id": "shape:perf:06736", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 4288, - "rot": 0, - "props": { - "w": 42, - "h": 27, - "fill": "hsl(276 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06737": { - "id": "shape:perf:06737", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 4288, - "rot": 0, - "props": { - "w": 30, - "h": 42, - "fill": "hsl(317 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06738": { - "id": "shape:perf:06738", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 4288, - "rot": 0, - "props": { - "w": 33, - "h": 45, - "fill": "hsl(291 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06739": { - "id": "shape:perf:06739", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 4288, - "rot": 0, - "props": { - "w": 34, - "h": 24, - "fill": "hsl(245 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06740": { - "id": "shape:perf:06740", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 4288, - "rot": 0, - "props": { - "w": 27, - "h": 41, - "fill": "hsl(320 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06741": { - "id": "shape:perf:06741", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 4288, - "rot": 0, - "props": { - "w": 35, - "h": 29, - "fill": "hsl(246 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06742": { - "id": "shape:perf:06742", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 4288, - "rot": 0, - "props": { - "w": 44, - "h": 36, - "fill": "hsl(166 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06743": { - "id": "shape:perf:06743", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 4288, - "rot": 0, - "props": { - "w": 40, - "h": 27, - "fill": "hsl(33 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06744": { - "id": "shape:perf:06744", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 4288, - "rot": 0, - "props": { - "w": 24, - "h": 41, - "fill": "hsl(257 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06745": { - "id": "shape:perf:06745", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 4288, - "rot": 0, - "props": { - "w": 36, - "h": 34, - "fill": "hsl(295 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06746": { - "id": "shape:perf:06746", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 4288, - "rot": 0, - "props": { - "w": 28, - "h": 32, - "fill": "hsl(120 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06747": { - "id": "shape:perf:06747", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 4288, - "rot": 0, - "props": { - "w": 32, - "h": 36, - "fill": "hsl(86 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06748": { - "id": "shape:perf:06748", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 4288, - "rot": 0, - "props": { - "w": 34, - "h": 25, - "fill": "hsl(115 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06749": { - "id": "shape:perf:06749", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 4288, - "rot": 0, - "props": { - "w": 38, - "h": 32, - "fill": "hsl(29 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06750": { - "id": "shape:perf:06750", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 4288, - "rot": 0, - "props": { - "w": 33, - "h": 35, - "fill": "hsl(276 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06751": { - "id": "shape:perf:06751", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 4288, - "rot": 0, - "props": { - "w": 30, - "h": 36, - "fill": "hsl(324 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06752": { - "id": "shape:perf:06752", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 4288, - "rot": 0, - "props": { - "w": 41, - "h": 30, - "fill": "hsl(108 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06753": { - "id": "shape:perf:06753", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 4288, - "rot": 0, - "props": { - "w": 36, - "h": 29, - "fill": "hsl(232 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06754": { - "id": "shape:perf:06754", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 4288, - "rot": 0, - "props": { - "w": 42, - "h": 41, - "fill": "hsl(293 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06755": { - "id": "shape:perf:06755", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 4288, - "rot": 0, - "props": { - "w": 46, - "h": 37, - "fill": "hsl(173 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06756": { - "id": "shape:perf:06756", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 4288, - "rot": 0, - "props": { - "w": 27, - "h": 46, - "fill": "hsl(9 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06757": { - "id": "shape:perf:06757", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 4288, - "rot": 0, - "props": { - "w": 24, - "h": 43, - "fill": "hsl(39 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06758": { - "id": "shape:perf:06758", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 4288, - "rot": 0, - "props": { - "w": 46, - "h": 41, - "fill": "hsl(256 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06759": { - "id": "shape:perf:06759", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 4288, - "rot": 0, - "props": { - "w": 44, - "h": 31, - "fill": "hsl(320 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06760": { - "id": "shape:perf:06760", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 4288, - "rot": 0, - "props": { - "w": 43, - "h": 42, - "fill": "hsl(322 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06761": { - "id": "shape:perf:06761", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 4288, - "rot": 0, - "props": { - "w": 36, - "h": 31, - "fill": "hsl(158 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06762": { - "id": "shape:perf:06762", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 4288, - "rot": 0, - "props": { - "w": 28, - "h": 47, - "fill": "hsl(69 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06763": { - "id": "shape:perf:06763", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 4288, - "rot": 0, - "props": { - "w": 28, - "h": 29, - "fill": "hsl(66 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06764": { - "id": "shape:perf:06764", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 4288, - "rot": 0, - "props": { - "w": 40, - "h": 41, - "fill": "hsl(215 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06765": { - "id": "shape:perf:06765", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 4288, - "rot": 0, - "props": { - "w": 26, - "h": 37, - "fill": "hsl(44 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06766": { - "id": "shape:perf:06766", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 4288, - "rot": 0, - "props": { - "w": 24, - "h": 29, - "fill": "hsl(317 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06767": { - "id": "shape:perf:06767", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 4288, - "rot": 0, - "props": { - "w": 26, - "h": 44, - "fill": "hsl(341 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06768": { - "id": "shape:perf:06768", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 4288, - "rot": 0, - "props": { - "w": 41, - "h": 31, - "fill": "hsl(287 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06769": { - "id": "shape:perf:06769", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 4288, - "rot": 0, - "props": { - "w": 37, - "h": 47, - "fill": "hsl(33 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06770": { - "id": "shape:perf:06770", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 4288, - "rot": 0, - "props": { - "w": 24, - "h": 39, - "fill": "hsl(88 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06771": { - "id": "shape:perf:06771", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 4288, - "rot": 0, - "props": { - "w": 42, - "h": 29, - "fill": "hsl(182 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06772": { - "id": "shape:perf:06772", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 4288, - "rot": 0, - "props": { - "w": 41, - "h": 24, - "fill": "hsl(310 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06773": { - "id": "shape:perf:06773", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 4288, - "rot": 0, - "props": { - "w": 39, - "h": 25, - "fill": "hsl(70 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06774": { - "id": "shape:perf:06774", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 4288, - "rot": 0, - "props": { - "w": 45, - "h": 35, - "fill": "hsl(299 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06775": { - "id": "shape:perf:06775", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 4288, - "rot": 0, - "props": { - "w": 40, - "h": 35, - "fill": "hsl(173 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06776": { - "id": "shape:perf:06776", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 4288, - "rot": 0, - "props": { - "w": 36, - "h": 40, - "fill": "hsl(154 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06777": { - "id": "shape:perf:06777", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 4288, - "rot": 0, - "props": { - "w": 47, - "h": 31, - "fill": "hsl(96 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06778": { - "id": "shape:perf:06778", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 4288, - "rot": 0, - "props": { - "w": 47, - "h": 41, - "fill": "hsl(288 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06779": { - "id": "shape:perf:06779", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 4288, - "rot": 0, - "props": { - "w": 27, - "h": 29, - "fill": "hsl(102 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06780": { - "id": "shape:perf:06780", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 4288, - "rot": 0, - "props": { - "w": 30, - "h": 26, - "fill": "hsl(358 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06781": { - "id": "shape:perf:06781", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 4288, - "rot": 0, - "props": { - "w": 45, - "h": 38, - "fill": "hsl(43 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06782": { - "id": "shape:perf:06782", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 4288, - "rot": 0, - "props": { - "w": 46, - "h": 40, - "fill": "hsl(344 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06783": { - "id": "shape:perf:06783", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 4288, - "rot": 0, - "props": { - "w": 42, - "h": 40, - "fill": "hsl(185 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06784": { - "id": "shape:perf:06784", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 4288, - "rot": 0, - "props": { - "w": 47, - "h": 33, - "fill": "hsl(304 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06785": { - "id": "shape:perf:06785", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 4288, - "rot": 0, - "props": { - "w": 30, - "h": 29, - "fill": "hsl(338 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06786": { - "id": "shape:perf:06786", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 4288, - "rot": 0, - "props": { - "w": 45, - "h": 27, - "fill": "hsl(279 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06787": { - "id": "shape:perf:06787", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 4288, - "rot": 0, - "props": { - "w": 41, - "h": 27, - "fill": "hsl(148 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06788": { - "id": "shape:perf:06788", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 4288, - "rot": 0, - "props": { - "w": 28, - "h": 36, - "fill": "hsl(335 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06789": { - "id": "shape:perf:06789", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 4288, - "rot": 0, - "props": { - "w": 36, - "h": 28, - "fill": "hsl(352 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06790": { - "id": "shape:perf:06790", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 4288, - "rot": 0, - "props": { - "w": 44, - "h": 36, - "fill": "hsl(64 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06791": { - "id": "shape:perf:06791", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 4288, - "rot": 0, - "props": { - "w": 42, - "h": 30, - "fill": "hsl(294 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06792": { - "id": "shape:perf:06792", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 4288, - "rot": 0, - "props": { - "w": 38, - "h": 38, - "fill": "hsl(207 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06793": { - "id": "shape:perf:06793", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 4288, - "rot": 0, - "props": { - "w": 37, - "h": 26, - "fill": "hsl(177 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06794": { - "id": "shape:perf:06794", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 4288, - "rot": 0, - "props": { - "w": 24, - "h": 45, - "fill": "hsl(1 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06795": { - "id": "shape:perf:06795", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 4288, - "rot": 0, - "props": { - "w": 24, - "h": 29, - "fill": "hsl(92 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06796": { - "id": "shape:perf:06796", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 4288, - "rot": 0, - "props": { - "w": 25, - "h": 31, - "fill": "hsl(37 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06797": { - "id": "shape:perf:06797", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 4288, - "rot": 0, - "props": { - "w": 38, - "h": 30, - "fill": "hsl(102 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06798": { - "id": "shape:perf:06798", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 4288, - "rot": 0, - "props": { - "w": 34, - "h": 35, - "fill": "hsl(159 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06799": { - "id": "shape:perf:06799", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 4288, - "rot": 0, - "props": { - "w": 44, - "h": 34, - "fill": "hsl(47 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06800": { - "id": "shape:perf:06800", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 4352, - "rot": 0, - "props": { - "w": 31, - "h": 36, - "fill": "hsl(271 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06801": { - "id": "shape:perf:06801", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 4352, - "rot": 0, - "props": { - "w": 38, - "h": 46, - "fill": "hsl(138 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06802": { - "id": "shape:perf:06802", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 4352, - "rot": 0, - "props": { - "w": 42, - "h": 40, - "fill": "hsl(324 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06803": { - "id": "shape:perf:06803", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 4352, - "rot": 0, - "props": { - "w": 44, - "h": 40, - "fill": "hsl(53 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06804": { - "id": "shape:perf:06804", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 4352, - "rot": 0, - "props": { - "w": 30, - "h": 47, - "fill": "hsl(175 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06805": { - "id": "shape:perf:06805", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 4352, - "rot": 0, - "props": { - "w": 38, - "h": 35, - "fill": "hsl(235 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06806": { - "id": "shape:perf:06806", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 4352, - "rot": 0, - "props": { - "w": 39, - "h": 25, - "fill": "hsl(12 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06807": { - "id": "shape:perf:06807", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 4352, - "rot": 0, - "props": { - "w": 26, - "h": 25, - "fill": "hsl(154 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06808": { - "id": "shape:perf:06808", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 4352, - "rot": 0, - "props": { - "w": 43, - "h": 47, - "fill": "hsl(201 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06809": { - "id": "shape:perf:06809", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 4352, - "rot": 0, - "props": { - "w": 39, - "h": 46, - "fill": "hsl(133 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06810": { - "id": "shape:perf:06810", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 4352, - "rot": 0, - "props": { - "w": 33, - "h": 25, - "fill": "hsl(334 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06811": { - "id": "shape:perf:06811", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 4352, - "rot": 0, - "props": { - "w": 40, - "h": 35, - "fill": "hsl(341 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06812": { - "id": "shape:perf:06812", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 4352, - "rot": 0, - "props": { - "w": 30, - "h": 44, - "fill": "hsl(341 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06813": { - "id": "shape:perf:06813", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 4352, - "rot": 0, - "props": { - "w": 45, - "h": 44, - "fill": "hsl(30 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06814": { - "id": "shape:perf:06814", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 4352, - "rot": 0, - "props": { - "w": 40, - "h": 42, - "fill": "hsl(247 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06815": { - "id": "shape:perf:06815", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 4352, - "rot": 0, - "props": { - "w": 47, - "h": 43, - "fill": "hsl(93 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06816": { - "id": "shape:perf:06816", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 4352, - "rot": 0, - "props": { - "w": 27, - "h": 27, - "fill": "hsl(0 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06817": { - "id": "shape:perf:06817", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 4352, - "rot": 0, - "props": { - "w": 28, - "h": 34, - "fill": "hsl(106 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06818": { - "id": "shape:perf:06818", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 4352, - "rot": 0, - "props": { - "w": 33, - "h": 34, - "fill": "hsl(312 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06819": { - "id": "shape:perf:06819", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 4352, - "rot": 0, - "props": { - "w": 30, - "h": 39, - "fill": "hsl(231 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06820": { - "id": "shape:perf:06820", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 4352, - "rot": 0, - "props": { - "w": 41, - "h": 26, - "fill": "hsl(334 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06821": { - "id": "shape:perf:06821", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 4352, - "rot": 0, - "props": { - "w": 34, - "h": 28, - "fill": "hsl(272 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06822": { - "id": "shape:perf:06822", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 4352, - "rot": 0, - "props": { - "w": 46, - "h": 40, - "fill": "hsl(194 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06823": { - "id": "shape:perf:06823", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 4352, - "rot": 0, - "props": { - "w": 37, - "h": 26, - "fill": "hsl(46 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06824": { - "id": "shape:perf:06824", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 4352, - "rot": 0, - "props": { - "w": 41, - "h": 35, - "fill": "hsl(352 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06825": { - "id": "shape:perf:06825", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 4352, - "rot": 0, - "props": { - "w": 28, - "h": 40, - "fill": "hsl(156 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06826": { - "id": "shape:perf:06826", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 4352, - "rot": 0, - "props": { - "w": 24, - "h": 47, - "fill": "hsl(333 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06827": { - "id": "shape:perf:06827", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 4352, - "rot": 0, - "props": { - "w": 38, - "h": 43, - "fill": "hsl(12 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06828": { - "id": "shape:perf:06828", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 4352, - "rot": 0, - "props": { - "w": 27, - "h": 29, - "fill": "hsl(150 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06829": { - "id": "shape:perf:06829", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 4352, - "rot": 0, - "props": { - "w": 36, - "h": 46, - "fill": "hsl(153 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06830": { - "id": "shape:perf:06830", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 4352, - "rot": 0, - "props": { - "w": 44, - "h": 40, - "fill": "hsl(312 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06831": { - "id": "shape:perf:06831", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 4352, - "rot": 0, - "props": { - "w": 28, - "h": 33, - "fill": "hsl(351 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06832": { - "id": "shape:perf:06832", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 4352, - "rot": 0, - "props": { - "w": 34, - "h": 27, - "fill": "hsl(243 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06833": { - "id": "shape:perf:06833", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 4352, - "rot": 0, - "props": { - "w": 46, - "h": 39, - "fill": "hsl(146 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06834": { - "id": "shape:perf:06834", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 4352, - "rot": 0, - "props": { - "w": 27, - "h": 24, - "fill": "hsl(222 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06835": { - "id": "shape:perf:06835", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 4352, - "rot": 0, - "props": { - "w": 44, - "h": 46, - "fill": "hsl(173 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06836": { - "id": "shape:perf:06836", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 4352, - "rot": 0, - "props": { - "w": 38, - "h": 26, - "fill": "hsl(91 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06837": { - "id": "shape:perf:06837", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 4352, - "rot": 0, - "props": { - "w": 39, - "h": 29, - "fill": "hsl(128 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06838": { - "id": "shape:perf:06838", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 4352, - "rot": 0, - "props": { - "w": 24, - "h": 45, - "fill": "hsl(233 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06839": { - "id": "shape:perf:06839", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 4352, - "rot": 0, - "props": { - "w": 43, - "h": 29, - "fill": "hsl(245 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06840": { - "id": "shape:perf:06840", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 4352, - "rot": 0, - "props": { - "w": 28, - "h": 33, - "fill": "hsl(95 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06841": { - "id": "shape:perf:06841", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 4352, - "rot": 0, - "props": { - "w": 32, - "h": 37, - "fill": "hsl(237 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06842": { - "id": "shape:perf:06842", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 4352, - "rot": 0, - "props": { - "w": 32, - "h": 25, - "fill": "hsl(182 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06843": { - "id": "shape:perf:06843", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 4352, - "rot": 0, - "props": { - "w": 39, - "h": 36, - "fill": "hsl(250 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06844": { - "id": "shape:perf:06844", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 4352, - "rot": 0, - "props": { - "w": 27, - "h": 43, - "fill": "hsl(260 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06845": { - "id": "shape:perf:06845", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 4352, - "rot": 0, - "props": { - "w": 35, - "h": 33, - "fill": "hsl(302 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06846": { - "id": "shape:perf:06846", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 4352, - "rot": 0, - "props": { - "w": 45, - "h": 29, - "fill": "hsl(336 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06847": { - "id": "shape:perf:06847", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 4352, - "rot": 0, - "props": { - "w": 45, - "h": 46, - "fill": "hsl(239 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06848": { - "id": "shape:perf:06848", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 4352, - "rot": 0, - "props": { - "w": 40, - "h": 25, - "fill": "hsl(328 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06849": { - "id": "shape:perf:06849", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 4352, - "rot": 0, - "props": { - "w": 47, - "h": 47, - "fill": "hsl(178 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06850": { - "id": "shape:perf:06850", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 4352, - "rot": 0, - "props": { - "w": 36, - "h": 27, - "fill": "hsl(258 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06851": { - "id": "shape:perf:06851", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 4352, - "rot": 0, - "props": { - "w": 47, - "h": 46, - "fill": "hsl(219 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06852": { - "id": "shape:perf:06852", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 4352, - "rot": 0, - "props": { - "w": 47, - "h": 40, - "fill": "hsl(174 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06853": { - "id": "shape:perf:06853", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 4352, - "rot": 0, - "props": { - "w": 42, - "h": 34, - "fill": "hsl(88 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06854": { - "id": "shape:perf:06854", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 4352, - "rot": 0, - "props": { - "w": 42, - "h": 43, - "fill": "hsl(15 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06855": { - "id": "shape:perf:06855", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 4352, - "rot": 0, - "props": { - "w": 41, - "h": 29, - "fill": "hsl(184 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06856": { - "id": "shape:perf:06856", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 4352, - "rot": 0, - "props": { - "w": 42, - "h": 44, - "fill": "hsl(40 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06857": { - "id": "shape:perf:06857", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 4352, - "rot": 0, - "props": { - "w": 31, - "h": 28, - "fill": "hsl(243 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06858": { - "id": "shape:perf:06858", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 4352, - "rot": 0, - "props": { - "w": 38, - "h": 27, - "fill": "hsl(103 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06859": { - "id": "shape:perf:06859", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 4352, - "rot": 0, - "props": { - "w": 38, - "h": 32, - "fill": "hsl(111 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06860": { - "id": "shape:perf:06860", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 4352, - "rot": 0, - "props": { - "w": 41, - "h": 29, - "fill": "hsl(291 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06861": { - "id": "shape:perf:06861", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 4352, - "rot": 0, - "props": { - "w": 29, - "h": 34, - "fill": "hsl(241 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06862": { - "id": "shape:perf:06862", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 4352, - "rot": 0, - "props": { - "w": 43, - "h": 43, - "fill": "hsl(196 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06863": { - "id": "shape:perf:06863", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 4352, - "rot": 0, - "props": { - "w": 33, - "h": 42, - "fill": "hsl(254 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06864": { - "id": "shape:perf:06864", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 4352, - "rot": 0, - "props": { - "w": 40, - "h": 29, - "fill": "hsl(115 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06865": { - "id": "shape:perf:06865", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 4352, - "rot": 0, - "props": { - "w": 25, - "h": 24, - "fill": "hsl(209 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06866": { - "id": "shape:perf:06866", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 4352, - "rot": 0, - "props": { - "w": 39, - "h": 29, - "fill": "hsl(111 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06867": { - "id": "shape:perf:06867", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 4352, - "rot": 0, - "props": { - "w": 24, - "h": 42, - "fill": "hsl(4 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06868": { - "id": "shape:perf:06868", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 4352, - "rot": 0, - "props": { - "w": 47, - "h": 31, - "fill": "hsl(40 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06869": { - "id": "shape:perf:06869", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 4352, - "rot": 0, - "props": { - "w": 44, - "h": 33, - "fill": "hsl(42 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06870": { - "id": "shape:perf:06870", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 4352, - "rot": 0, - "props": { - "w": 39, - "h": 45, - "fill": "hsl(30 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06871": { - "id": "shape:perf:06871", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 4352, - "rot": 0, - "props": { - "w": 34, - "h": 28, - "fill": "hsl(135 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06872": { - "id": "shape:perf:06872", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 4352, - "rot": 0, - "props": { - "w": 24, - "h": 42, - "fill": "hsl(327 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06873": { - "id": "shape:perf:06873", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 4352, - "rot": 0, - "props": { - "w": 40, - "h": 38, - "fill": "hsl(336 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06874": { - "id": "shape:perf:06874", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 4352, - "rot": 0, - "props": { - "w": 31, - "h": 29, - "fill": "hsl(327 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06875": { - "id": "shape:perf:06875", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 4352, - "rot": 0, - "props": { - "w": 27, - "h": 32, - "fill": "hsl(48 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06876": { - "id": "shape:perf:06876", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 4352, - "rot": 0, - "props": { - "w": 31, - "h": 32, - "fill": "hsl(294 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06877": { - "id": "shape:perf:06877", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 4352, - "rot": 0, - "props": { - "w": 46, - "h": 33, - "fill": "hsl(94 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06878": { - "id": "shape:perf:06878", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 4352, - "rot": 0, - "props": { - "w": 26, - "h": 25, - "fill": "hsl(0 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06879": { - "id": "shape:perf:06879", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 4352, - "rot": 0, - "props": { - "w": 42, - "h": 34, - "fill": "hsl(56 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06880": { - "id": "shape:perf:06880", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 4352, - "rot": 0, - "props": { - "w": 39, - "h": 25, - "fill": "hsl(155 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06881": { - "id": "shape:perf:06881", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 4352, - "rot": 0, - "props": { - "w": 36, - "h": 44, - "fill": "hsl(34 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06882": { - "id": "shape:perf:06882", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 4352, - "rot": 0, - "props": { - "w": 38, - "h": 29, - "fill": "hsl(10 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06883": { - "id": "shape:perf:06883", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 4352, - "rot": 0, - "props": { - "w": 31, - "h": 26, - "fill": "hsl(143 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06884": { - "id": "shape:perf:06884", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 4352, - "rot": 0, - "props": { - "w": 38, - "h": 35, - "fill": "hsl(189 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06885": { - "id": "shape:perf:06885", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 4352, - "rot": 0, - "props": { - "w": 30, - "h": 29, - "fill": "hsl(275 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06886": { - "id": "shape:perf:06886", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 4352, - "rot": 0, - "props": { - "w": 37, - "h": 36, - "fill": "hsl(272 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06887": { - "id": "shape:perf:06887", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 4352, - "rot": 0, - "props": { - "w": 36, - "h": 27, - "fill": "hsl(20 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06888": { - "id": "shape:perf:06888", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 4352, - "rot": 0, - "props": { - "w": 30, - "h": 30, - "fill": "hsl(68 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06889": { - "id": "shape:perf:06889", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 4352, - "rot": 0, - "props": { - "w": 36, - "h": 24, - "fill": "hsl(325 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06890": { - "id": "shape:perf:06890", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 4352, - "rot": 0, - "props": { - "w": 41, - "h": 25, - "fill": "hsl(0 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06891": { - "id": "shape:perf:06891", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 4352, - "rot": 0, - "props": { - "w": 27, - "h": 46, - "fill": "hsl(2 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06892": { - "id": "shape:perf:06892", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 4352, - "rot": 0, - "props": { - "w": 33, - "h": 41, - "fill": "hsl(181 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06893": { - "id": "shape:perf:06893", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 4352, - "rot": 0, - "props": { - "w": 35, - "h": 44, - "fill": "hsl(54 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06894": { - "id": "shape:perf:06894", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 4352, - "rot": 0, - "props": { - "w": 28, - "h": 35, - "fill": "hsl(68 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06895": { - "id": "shape:perf:06895", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 4352, - "rot": 0, - "props": { - "w": 28, - "h": 45, - "fill": "hsl(158 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06896": { - "id": "shape:perf:06896", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 4352, - "rot": 0, - "props": { - "w": 25, - "h": 29, - "fill": "hsl(48 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06897": { - "id": "shape:perf:06897", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 4352, - "rot": 0, - "props": { - "w": 41, - "h": 40, - "fill": "hsl(32 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06898": { - "id": "shape:perf:06898", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 4352, - "rot": 0, - "props": { - "w": 43, - "h": 27, - "fill": "hsl(347 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06899": { - "id": "shape:perf:06899", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 4352, - "rot": 0, - "props": { - "w": 37, - "h": 27, - "fill": "hsl(321 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06900": { - "id": "shape:perf:06900", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 4416, - "rot": 0, - "props": { - "w": 45, - "h": 40, - "fill": "hsl(166 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06901": { - "id": "shape:perf:06901", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 4416, - "rot": 0, - "props": { - "w": 30, - "h": 43, - "fill": "hsl(93 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06902": { - "id": "shape:perf:06902", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 4416, - "rot": 0, - "props": { - "w": 43, - "h": 46, - "fill": "hsl(209 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06903": { - "id": "shape:perf:06903", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 4416, - "rot": 0, - "props": { - "w": 31, - "h": 29, - "fill": "hsl(15 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06904": { - "id": "shape:perf:06904", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 4416, - "rot": 0, - "props": { - "w": 40, - "h": 44, - "fill": "hsl(21 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06905": { - "id": "shape:perf:06905", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 4416, - "rot": 0, - "props": { - "w": 43, - "h": 46, - "fill": "hsl(92 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06906": { - "id": "shape:perf:06906", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 4416, - "rot": 0, - "props": { - "w": 29, - "h": 47, - "fill": "hsl(31 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06907": { - "id": "shape:perf:06907", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 4416, - "rot": 0, - "props": { - "w": 43, - "h": 39, - "fill": "hsl(5 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06908": { - "id": "shape:perf:06908", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 4416, - "rot": 0, - "props": { - "w": 27, - "h": 37, - "fill": "hsl(246 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06909": { - "id": "shape:perf:06909", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 4416, - "rot": 0, - "props": { - "w": 46, - "h": 31, - "fill": "hsl(88 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06910": { - "id": "shape:perf:06910", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 4416, - "rot": 0, - "props": { - "w": 46, - "h": 24, - "fill": "hsl(186 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06911": { - "id": "shape:perf:06911", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 4416, - "rot": 0, - "props": { - "w": 26, - "h": 28, - "fill": "hsl(16 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06912": { - "id": "shape:perf:06912", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 4416, - "rot": 0, - "props": { - "w": 39, - "h": 40, - "fill": "hsl(41 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06913": { - "id": "shape:perf:06913", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 4416, - "rot": 0, - "props": { - "w": 44, - "h": 47, - "fill": "hsl(147 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06914": { - "id": "shape:perf:06914", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 4416, - "rot": 0, - "props": { - "w": 41, - "h": 46, - "fill": "hsl(209 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06915": { - "id": "shape:perf:06915", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 4416, - "rot": 0, - "props": { - "w": 42, - "h": 34, - "fill": "hsl(260 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06916": { - "id": "shape:perf:06916", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 4416, - "rot": 0, - "props": { - "w": 37, - "h": 46, - "fill": "hsl(155 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06917": { - "id": "shape:perf:06917", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 4416, - "rot": 0, - "props": { - "w": 40, - "h": 32, - "fill": "hsl(53 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06918": { - "id": "shape:perf:06918", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 4416, - "rot": 0, - "props": { - "w": 28, - "h": 39, - "fill": "hsl(210 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06919": { - "id": "shape:perf:06919", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 4416, - "rot": 0, - "props": { - "w": 47, - "h": 31, - "fill": "hsl(82 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06920": { - "id": "shape:perf:06920", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 4416, - "rot": 0, - "props": { - "w": 25, - "h": 33, - "fill": "hsl(228 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06921": { - "id": "shape:perf:06921", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 4416, - "rot": 0, - "props": { - "w": 27, - "h": 46, - "fill": "hsl(22 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06922": { - "id": "shape:perf:06922", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 4416, - "rot": 0, - "props": { - "w": 42, - "h": 32, - "fill": "hsl(200 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06923": { - "id": "shape:perf:06923", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 4416, - "rot": 0, - "props": { - "w": 45, - "h": 33, - "fill": "hsl(70 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06924": { - "id": "shape:perf:06924", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 4416, - "rot": 0, - "props": { - "w": 38, - "h": 24, - "fill": "hsl(243 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06925": { - "id": "shape:perf:06925", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 4416, - "rot": 0, - "props": { - "w": 32, - "h": 32, - "fill": "hsl(8 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06926": { - "id": "shape:perf:06926", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 4416, - "rot": 0, - "props": { - "w": 24, - "h": 46, - "fill": "hsl(306 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06927": { - "id": "shape:perf:06927", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 4416, - "rot": 0, - "props": { - "w": 33, - "h": 40, - "fill": "hsl(68 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06928": { - "id": "shape:perf:06928", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 4416, - "rot": 0, - "props": { - "w": 31, - "h": 26, - "fill": "hsl(100 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06929": { - "id": "shape:perf:06929", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 4416, - "rot": 0, - "props": { - "w": 41, - "h": 28, - "fill": "hsl(319 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06930": { - "id": "shape:perf:06930", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 4416, - "rot": 0, - "props": { - "w": 24, - "h": 25, - "fill": "hsl(238 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06931": { - "id": "shape:perf:06931", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 4416, - "rot": 0, - "props": { - "w": 40, - "h": 27, - "fill": "hsl(328 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06932": { - "id": "shape:perf:06932", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 4416, - "rot": 0, - "props": { - "w": 28, - "h": 38, - "fill": "hsl(56 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06933": { - "id": "shape:perf:06933", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 4416, - "rot": 0, - "props": { - "w": 42, - "h": 42, - "fill": "hsl(227 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06934": { - "id": "shape:perf:06934", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 4416, - "rot": 0, - "props": { - "w": 38, - "h": 29, - "fill": "hsl(73 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06935": { - "id": "shape:perf:06935", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 4416, - "rot": 0, - "props": { - "w": 40, - "h": 34, - "fill": "hsl(214 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06936": { - "id": "shape:perf:06936", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 4416, - "rot": 0, - "props": { - "w": 42, - "h": 35, - "fill": "hsl(174 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06937": { - "id": "shape:perf:06937", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 4416, - "rot": 0, - "props": { - "w": 36, - "h": 40, - "fill": "hsl(345 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06938": { - "id": "shape:perf:06938", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 4416, - "rot": 0, - "props": { - "w": 32, - "h": 37, - "fill": "hsl(204 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06939": { - "id": "shape:perf:06939", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 4416, - "rot": 0, - "props": { - "w": 44, - "h": 44, - "fill": "hsl(80 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06940": { - "id": "shape:perf:06940", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 4416, - "rot": 0, - "props": { - "w": 39, - "h": 32, - "fill": "hsl(262 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06941": { - "id": "shape:perf:06941", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 4416, - "rot": 0, - "props": { - "w": 36, - "h": 36, - "fill": "hsl(253 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06942": { - "id": "shape:perf:06942", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 4416, - "rot": 0, - "props": { - "w": 31, - "h": 33, - "fill": "hsl(161 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06943": { - "id": "shape:perf:06943", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 4416, - "rot": 0, - "props": { - "w": 40, - "h": 38, - "fill": "hsl(192 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06944": { - "id": "shape:perf:06944", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 4416, - "rot": 0, - "props": { - "w": 46, - "h": 46, - "fill": "hsl(78 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06945": { - "id": "shape:perf:06945", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 4416, - "rot": 0, - "props": { - "w": 27, - "h": 47, - "fill": "hsl(189 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06946": { - "id": "shape:perf:06946", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 4416, - "rot": 0, - "props": { - "w": 26, - "h": 26, - "fill": "hsl(86 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06947": { - "id": "shape:perf:06947", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 4416, - "rot": 0, - "props": { - "w": 43, - "h": 34, - "fill": "hsl(343 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06948": { - "id": "shape:perf:06948", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 4416, - "rot": 0, - "props": { - "w": 24, - "h": 43, - "fill": "hsl(9 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06949": { - "id": "shape:perf:06949", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 4416, - "rot": 0, - "props": { - "w": 39, - "h": 29, - "fill": "hsl(270 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06950": { - "id": "shape:perf:06950", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 4416, - "rot": 0, - "props": { - "w": 32, - "h": 25, - "fill": "hsl(91 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06951": { - "id": "shape:perf:06951", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 4416, - "rot": 0, - "props": { - "w": 45, - "h": 27, - "fill": "hsl(322 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06952": { - "id": "shape:perf:06952", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 4416, - "rot": 0, - "props": { - "w": 43, - "h": 40, - "fill": "hsl(22 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06953": { - "id": "shape:perf:06953", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 4416, - "rot": 0, - "props": { - "w": 47, - "h": 47, - "fill": "hsl(130 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06954": { - "id": "shape:perf:06954", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 4416, - "rot": 0, - "props": { - "w": 36, - "h": 36, - "fill": "hsl(7 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06955": { - "id": "shape:perf:06955", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 4416, - "rot": 0, - "props": { - "w": 25, - "h": 27, - "fill": "hsl(31 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06956": { - "id": "shape:perf:06956", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 4416, - "rot": 0, - "props": { - "w": 41, - "h": 25, - "fill": "hsl(165 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06957": { - "id": "shape:perf:06957", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 4416, - "rot": 0, - "props": { - "w": 34, - "h": 28, - "fill": "hsl(162 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06958": { - "id": "shape:perf:06958", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 4416, - "rot": 0, - "props": { - "w": 36, - "h": 26, - "fill": "hsl(324 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06959": { - "id": "shape:perf:06959", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 4416, - "rot": 0, - "props": { - "w": 30, - "h": 34, - "fill": "hsl(306 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06960": { - "id": "shape:perf:06960", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 4416, - "rot": 0, - "props": { - "w": 38, - "h": 35, - "fill": "hsl(220 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06961": { - "id": "shape:perf:06961", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 4416, - "rot": 0, - "props": { - "w": 24, - "h": 44, - "fill": "hsl(247 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06962": { - "id": "shape:perf:06962", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 4416, - "rot": 0, - "props": { - "w": 39, - "h": 38, - "fill": "hsl(196 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06963": { - "id": "shape:perf:06963", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 4416, - "rot": 0, - "props": { - "w": 40, - "h": 27, - "fill": "hsl(182 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06964": { - "id": "shape:perf:06964", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 4416, - "rot": 0, - "props": { - "w": 25, - "h": 39, - "fill": "hsl(181 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06965": { - "id": "shape:perf:06965", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 4416, - "rot": 0, - "props": { - "w": 28, - "h": 30, - "fill": "hsl(211 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06966": { - "id": "shape:perf:06966", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 4416, - "rot": 0, - "props": { - "w": 40, - "h": 47, - "fill": "hsl(304 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06967": { - "id": "shape:perf:06967", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 4416, - "rot": 0, - "props": { - "w": 35, - "h": 47, - "fill": "hsl(125 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06968": { - "id": "shape:perf:06968", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 4416, - "rot": 0, - "props": { - "w": 41, - "h": 36, - "fill": "hsl(55 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06969": { - "id": "shape:perf:06969", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 4416, - "rot": 0, - "props": { - "w": 30, - "h": 33, - "fill": "hsl(228 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06970": { - "id": "shape:perf:06970", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 4416, - "rot": 0, - "props": { - "w": 37, - "h": 30, - "fill": "hsl(165 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06971": { - "id": "shape:perf:06971", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 4416, - "rot": 0, - "props": { - "w": 47, - "h": 24, - "fill": "hsl(285 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06972": { - "id": "shape:perf:06972", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 4416, - "rot": 0, - "props": { - "w": 44, - "h": 31, - "fill": "hsl(109 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06973": { - "id": "shape:perf:06973", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 4416, - "rot": 0, - "props": { - "w": 28, - "h": 37, - "fill": "hsl(200 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06974": { - "id": "shape:perf:06974", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 4416, - "rot": 0, - "props": { - "w": 31, - "h": 28, - "fill": "hsl(27 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06975": { - "id": "shape:perf:06975", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 4416, - "rot": 0, - "props": { - "w": 38, - "h": 33, - "fill": "hsl(258 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06976": { - "id": "shape:perf:06976", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 4416, - "rot": 0, - "props": { - "w": 31, - "h": 31, - "fill": "hsl(252 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06977": { - "id": "shape:perf:06977", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 4416, - "rot": 0, - "props": { - "w": 41, - "h": 32, - "fill": "hsl(103 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06978": { - "id": "shape:perf:06978", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 4416, - "rot": 0, - "props": { - "w": 44, - "h": 41, - "fill": "hsl(337 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06979": { - "id": "shape:perf:06979", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 4416, - "rot": 0, - "props": { - "w": 24, - "h": 45, - "fill": "hsl(31 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06980": { - "id": "shape:perf:06980", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 4416, - "rot": 0, - "props": { - "w": 40, - "h": 28, - "fill": "hsl(214 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06981": { - "id": "shape:perf:06981", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 4416, - "rot": 0, - "props": { - "w": 38, - "h": 42, - "fill": "hsl(157 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06982": { - "id": "shape:perf:06982", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 4416, - "rot": 0, - "props": { - "w": 30, - "h": 45, - "fill": "hsl(117 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06983": { - "id": "shape:perf:06983", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 4416, - "rot": 0, - "props": { - "w": 44, - "h": 46, - "fill": "hsl(112 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06984": { - "id": "shape:perf:06984", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 4416, - "rot": 0, - "props": { - "w": 35, - "h": 43, - "fill": "hsl(108 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06985": { - "id": "shape:perf:06985", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 4416, - "rot": 0, - "props": { - "w": 38, - "h": 36, - "fill": "hsl(101 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06986": { - "id": "shape:perf:06986", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 4416, - "rot": 0, - "props": { - "w": 30, - "h": 45, - "fill": "hsl(13 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06987": { - "id": "shape:perf:06987", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 4416, - "rot": 0, - "props": { - "w": 32, - "h": 33, - "fill": "hsl(11 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06988": { - "id": "shape:perf:06988", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 4416, - "rot": 0, - "props": { - "w": 42, - "h": 40, - "fill": "hsl(337 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06989": { - "id": "shape:perf:06989", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 4416, - "rot": 0, - "props": { - "w": 37, - "h": 38, - "fill": "hsl(223 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06990": { - "id": "shape:perf:06990", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 4416, - "rot": 0, - "props": { - "w": 26, - "h": 37, - "fill": "hsl(16 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06991": { - "id": "shape:perf:06991", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 4416, - "rot": 0, - "props": { - "w": 29, - "h": 45, - "fill": "hsl(75 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06992": { - "id": "shape:perf:06992", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 4416, - "rot": 0, - "props": { - "w": 44, - "h": 31, - "fill": "hsl(250 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06993": { - "id": "shape:perf:06993", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 4416, - "rot": 0, - "props": { - "w": 43, - "h": 43, - "fill": "hsl(350 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06994": { - "id": "shape:perf:06994", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 4416, - "rot": 0, - "props": { - "w": 24, - "h": 44, - "fill": "hsl(303 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:06995": { - "id": "shape:perf:06995", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 4416, - "rot": 0, - "props": { - "w": 44, - "h": 41, - "fill": "hsl(268 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:06996": { - "id": "shape:perf:06996", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 4416, - "rot": 0, - "props": { - "w": 47, - "h": 42, - "fill": "hsl(94 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:06997": { - "id": "shape:perf:06997", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 4416, - "rot": 0, - "props": { - "w": 28, - "h": 42, - "fill": "hsl(1 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:06998": { - "id": "shape:perf:06998", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 4416, - "rot": 0, - "props": { - "w": 36, - "h": 38, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:06999": { - "id": "shape:perf:06999", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 4416, - "rot": 0, - "props": { - "w": 31, - "h": 45, - "fill": "hsl(358 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07000": { - "id": "shape:perf:07000", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 4480, - "rot": 0, - "props": { - "w": 32, - "h": 43, - "fill": "hsl(89 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07001": { - "id": "shape:perf:07001", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 4480, - "rot": 0, - "props": { - "w": 28, - "h": 43, - "fill": "hsl(51 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07002": { - "id": "shape:perf:07002", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 4480, - "rot": 0, - "props": { - "w": 25, - "h": 26, - "fill": "hsl(159 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07003": { - "id": "shape:perf:07003", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 4480, - "rot": 0, - "props": { - "w": 33, - "h": 45, - "fill": "hsl(320 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07004": { - "id": "shape:perf:07004", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 4480, - "rot": 0, - "props": { - "w": 36, - "h": 44, - "fill": "hsl(260 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07005": { - "id": "shape:perf:07005", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 4480, - "rot": 0, - "props": { - "w": 41, - "h": 47, - "fill": "hsl(268 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07006": { - "id": "shape:perf:07006", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 4480, - "rot": 0, - "props": { - "w": 29, - "h": 24, - "fill": "hsl(7 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07007": { - "id": "shape:perf:07007", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 4480, - "rot": 0, - "props": { - "w": 27, - "h": 44, - "fill": "hsl(209 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07008": { - "id": "shape:perf:07008", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 4480, - "rot": 0, - "props": { - "w": 25, - "h": 45, - "fill": "hsl(82 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07009": { - "id": "shape:perf:07009", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 4480, - "rot": 0, - "props": { - "w": 46, - "h": 34, - "fill": "hsl(112 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07010": { - "id": "shape:perf:07010", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 4480, - "rot": 0, - "props": { - "w": 46, - "h": 32, - "fill": "hsl(250 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07011": { - "id": "shape:perf:07011", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 4480, - "rot": 0, - "props": { - "w": 44, - "h": 38, - "fill": "hsl(276 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07012": { - "id": "shape:perf:07012", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 4480, - "rot": 0, - "props": { - "w": 33, - "h": 30, - "fill": "hsl(315 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07013": { - "id": "shape:perf:07013", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 4480, - "rot": 0, - "props": { - "w": 46, - "h": 36, - "fill": "hsl(211 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07014": { - "id": "shape:perf:07014", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 4480, - "rot": 0, - "props": { - "w": 26, - "h": 32, - "fill": "hsl(66 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07015": { - "id": "shape:perf:07015", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 4480, - "rot": 0, - "props": { - "w": 26, - "h": 47, - "fill": "hsl(43 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07016": { - "id": "shape:perf:07016", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 4480, - "rot": 0, - "props": { - "w": 47, - "h": 33, - "fill": "hsl(135 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07017": { - "id": "shape:perf:07017", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 4480, - "rot": 0, - "props": { - "w": 27, - "h": 32, - "fill": "hsl(204 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07018": { - "id": "shape:perf:07018", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 4480, - "rot": 0, - "props": { - "w": 41, - "h": 44, - "fill": "hsl(299 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07019": { - "id": "shape:perf:07019", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 4480, - "rot": 0, - "props": { - "w": 46, - "h": 26, - "fill": "hsl(186 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07020": { - "id": "shape:perf:07020", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 4480, - "rot": 0, - "props": { - "w": 41, - "h": 33, - "fill": "hsl(53 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07021": { - "id": "shape:perf:07021", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 4480, - "rot": 0, - "props": { - "w": 24, - "h": 46, - "fill": "hsl(261 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07022": { - "id": "shape:perf:07022", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 4480, - "rot": 0, - "props": { - "w": 35, - "h": 36, - "fill": "hsl(110 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07023": { - "id": "shape:perf:07023", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 4480, - "rot": 0, - "props": { - "w": 46, - "h": 31, - "fill": "hsl(343 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07024": { - "id": "shape:perf:07024", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 4480, - "rot": 0, - "props": { - "w": 33, - "h": 29, - "fill": "hsl(285 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07025": { - "id": "shape:perf:07025", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 4480, - "rot": 0, - "props": { - "w": 31, - "h": 26, - "fill": "hsl(356 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07026": { - "id": "shape:perf:07026", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 4480, - "rot": 0, - "props": { - "w": 33, - "h": 29, - "fill": "hsl(310 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07027": { - "id": "shape:perf:07027", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 4480, - "rot": 0, - "props": { - "w": 33, - "h": 39, - "fill": "hsl(124 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07028": { - "id": "shape:perf:07028", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 4480, - "rot": 0, - "props": { - "w": 43, - "h": 26, - "fill": "hsl(231 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07029": { - "id": "shape:perf:07029", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 4480, - "rot": 0, - "props": { - "w": 31, - "h": 32, - "fill": "hsl(97 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07030": { - "id": "shape:perf:07030", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 4480, - "rot": 0, - "props": { - "w": 30, - "h": 38, - "fill": "hsl(322 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07031": { - "id": "shape:perf:07031", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 4480, - "rot": 0, - "props": { - "w": 40, - "h": 28, - "fill": "hsl(226 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07032": { - "id": "shape:perf:07032", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 4480, - "rot": 0, - "props": { - "w": 30, - "h": 29, - "fill": "hsl(52 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07033": { - "id": "shape:perf:07033", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 4480, - "rot": 0, - "props": { - "w": 24, - "h": 26, - "fill": "hsl(220 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07034": { - "id": "shape:perf:07034", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 4480, - "rot": 0, - "props": { - "w": 37, - "h": 26, - "fill": "hsl(281 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07035": { - "id": "shape:perf:07035", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 4480, - "rot": 0, - "props": { - "w": 42, - "h": 26, - "fill": "hsl(298 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07036": { - "id": "shape:perf:07036", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 4480, - "rot": 0, - "props": { - "w": 29, - "h": 27, - "fill": "hsl(90 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07037": { - "id": "shape:perf:07037", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 4480, - "rot": 0, - "props": { - "w": 35, - "h": 34, - "fill": "hsl(83 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07038": { - "id": "shape:perf:07038", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 4480, - "rot": 0, - "props": { - "w": 37, - "h": 27, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07039": { - "id": "shape:perf:07039", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 4480, - "rot": 0, - "props": { - "w": 46, - "h": 40, - "fill": "hsl(0 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07040": { - "id": "shape:perf:07040", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 4480, - "rot": 0, - "props": { - "w": 28, - "h": 30, - "fill": "hsl(61 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07041": { - "id": "shape:perf:07041", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 4480, - "rot": 0, - "props": { - "w": 35, - "h": 34, - "fill": "hsl(353 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07042": { - "id": "shape:perf:07042", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 4480, - "rot": 0, - "props": { - "w": 34, - "h": 44, - "fill": "hsl(217 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07043": { - "id": "shape:perf:07043", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 4480, - "rot": 0, - "props": { - "w": 44, - "h": 42, - "fill": "hsl(100 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07044": { - "id": "shape:perf:07044", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 4480, - "rot": 0, - "props": { - "w": 34, - "h": 39, - "fill": "hsl(20 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07045": { - "id": "shape:perf:07045", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 4480, - "rot": 0, - "props": { - "w": 46, - "h": 38, - "fill": "hsl(36 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07046": { - "id": "shape:perf:07046", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 4480, - "rot": 0, - "props": { - "w": 35, - "h": 42, - "fill": "hsl(15 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07047": { - "id": "shape:perf:07047", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 4480, - "rot": 0, - "props": { - "w": 43, - "h": 37, - "fill": "hsl(129 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07048": { - "id": "shape:perf:07048", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 4480, - "rot": 0, - "props": { - "w": 31, - "h": 24, - "fill": "hsl(187 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07049": { - "id": "shape:perf:07049", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 4480, - "rot": 0, - "props": { - "w": 35, - "h": 36, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07050": { - "id": "shape:perf:07050", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 4480, - "rot": 0, - "props": { - "w": 26, - "h": 36, - "fill": "hsl(74 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07051": { - "id": "shape:perf:07051", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 4480, - "rot": 0, - "props": { - "w": 39, - "h": 44, - "fill": "hsl(63 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07052": { - "id": "shape:perf:07052", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 4480, - "rot": 0, - "props": { - "w": 32, - "h": 34, - "fill": "hsl(28 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07053": { - "id": "shape:perf:07053", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 4480, - "rot": 0, - "props": { - "w": 37, - "h": 42, - "fill": "hsl(355 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07054": { - "id": "shape:perf:07054", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 4480, - "rot": 0, - "props": { - "w": 35, - "h": 41, - "fill": "hsl(18 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07055": { - "id": "shape:perf:07055", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 4480, - "rot": 0, - "props": { - "w": 34, - "h": 32, - "fill": "hsl(233 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07056": { - "id": "shape:perf:07056", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 4480, - "rot": 0, - "props": { - "w": 30, - "h": 29, - "fill": "hsl(315 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07057": { - "id": "shape:perf:07057", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 4480, - "rot": 0, - "props": { - "w": 46, - "h": 37, - "fill": "hsl(270 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07058": { - "id": "shape:perf:07058", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 4480, - "rot": 0, - "props": { - "w": 25, - "h": 38, - "fill": "hsl(355 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07059": { - "id": "shape:perf:07059", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 4480, - "rot": 0, - "props": { - "w": 40, - "h": 45, - "fill": "hsl(236 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07060": { - "id": "shape:perf:07060", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 4480, - "rot": 0, - "props": { - "w": 41, - "h": 26, - "fill": "hsl(113 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07061": { - "id": "shape:perf:07061", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 4480, - "rot": 0, - "props": { - "w": 26, - "h": 40, - "fill": "hsl(105 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07062": { - "id": "shape:perf:07062", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 4480, - "rot": 0, - "props": { - "w": 40, - "h": 41, - "fill": "hsl(83 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07063": { - "id": "shape:perf:07063", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 4480, - "rot": 0, - "props": { - "w": 44, - "h": 44, - "fill": "hsl(263 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07064": { - "id": "shape:perf:07064", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 4480, - "rot": 0, - "props": { - "w": 32, - "h": 39, - "fill": "hsl(152 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07065": { - "id": "shape:perf:07065", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 4480, - "rot": 0, - "props": { - "w": 25, - "h": 41, - "fill": "hsl(157 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07066": { - "id": "shape:perf:07066", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 4480, - "rot": 0, - "props": { - "w": 30, - "h": 26, - "fill": "hsl(114 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07067": { - "id": "shape:perf:07067", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 4480, - "rot": 0, - "props": { - "w": 34, - "h": 41, - "fill": "hsl(20 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07068": { - "id": "shape:perf:07068", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 4480, - "rot": 0, - "props": { - "w": 35, - "h": 27, - "fill": "hsl(37 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07069": { - "id": "shape:perf:07069", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 4480, - "rot": 0, - "props": { - "w": 47, - "h": 41, - "fill": "hsl(353 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07070": { - "id": "shape:perf:07070", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 4480, - "rot": 0, - "props": { - "w": 24, - "h": 34, - "fill": "hsl(345 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07071": { - "id": "shape:perf:07071", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 4480, - "rot": 0, - "props": { - "w": 43, - "h": 24, - "fill": "hsl(267 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07072": { - "id": "shape:perf:07072", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 4480, - "rot": 0, - "props": { - "w": 28, - "h": 35, - "fill": "hsl(214 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07073": { - "id": "shape:perf:07073", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 4480, - "rot": 0, - "props": { - "w": 24, - "h": 30, - "fill": "hsl(157 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07074": { - "id": "shape:perf:07074", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 4480, - "rot": 0, - "props": { - "w": 31, - "h": 36, - "fill": "hsl(301 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07075": { - "id": "shape:perf:07075", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 4480, - "rot": 0, - "props": { - "w": 39, - "h": 39, - "fill": "hsl(196 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07076": { - "id": "shape:perf:07076", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 4480, - "rot": 0, - "props": { - "w": 33, - "h": 26, - "fill": "hsl(280 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07077": { - "id": "shape:perf:07077", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 4480, - "rot": 0, - "props": { - "w": 42, - "h": 42, - "fill": "hsl(141 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07078": { - "id": "shape:perf:07078", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 4480, - "rot": 0, - "props": { - "w": 44, - "h": 40, - "fill": "hsl(338 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07079": { - "id": "shape:perf:07079", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 4480, - "rot": 0, - "props": { - "w": 44, - "h": 44, - "fill": "hsl(162 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07080": { - "id": "shape:perf:07080", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 4480, - "rot": 0, - "props": { - "w": 39, - "h": 32, - "fill": "hsl(58 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07081": { - "id": "shape:perf:07081", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 4480, - "rot": 0, - "props": { - "w": 46, - "h": 32, - "fill": "hsl(192 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07082": { - "id": "shape:perf:07082", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 4480, - "rot": 0, - "props": { - "w": 24, - "h": 46, - "fill": "hsl(194 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07083": { - "id": "shape:perf:07083", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 4480, - "rot": 0, - "props": { - "w": 38, - "h": 45, - "fill": "hsl(281 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07084": { - "id": "shape:perf:07084", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 4480, - "rot": 0, - "props": { - "w": 29, - "h": 47, - "fill": "hsl(242 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07085": { - "id": "shape:perf:07085", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 4480, - "rot": 0, - "props": { - "w": 28, - "h": 36, - "fill": "hsl(227 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07086": { - "id": "shape:perf:07086", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 4480, - "rot": 0, - "props": { - "w": 27, - "h": 40, - "fill": "hsl(345 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07087": { - "id": "shape:perf:07087", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 4480, - "rot": 0, - "props": { - "w": 45, - "h": 27, - "fill": "hsl(271 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07088": { - "id": "shape:perf:07088", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 4480, - "rot": 0, - "props": { - "w": 47, - "h": 45, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07089": { - "id": "shape:perf:07089", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 4480, - "rot": 0, - "props": { - "w": 30, - "h": 43, - "fill": "hsl(13 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07090": { - "id": "shape:perf:07090", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 4480, - "rot": 0, - "props": { - "w": 27, - "h": 27, - "fill": "hsl(243 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07091": { - "id": "shape:perf:07091", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 4480, - "rot": 0, - "props": { - "w": 24, - "h": 38, - "fill": "hsl(242 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07092": { - "id": "shape:perf:07092", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 4480, - "rot": 0, - "props": { - "w": 29, - "h": 35, - "fill": "hsl(142 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07093": { - "id": "shape:perf:07093", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 4480, - "rot": 0, - "props": { - "w": 45, - "h": 24, - "fill": "hsl(177 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07094": { - "id": "shape:perf:07094", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 4480, - "rot": 0, - "props": { - "w": 33, - "h": 41, - "fill": "hsl(159 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07095": { - "id": "shape:perf:07095", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 4480, - "rot": 0, - "props": { - "w": 42, - "h": 44, - "fill": "hsl(63 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07096": { - "id": "shape:perf:07096", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 4480, - "rot": 0, - "props": { - "w": 35, - "h": 46, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07097": { - "id": "shape:perf:07097", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 4480, - "rot": 0, - "props": { - "w": 34, - "h": 36, - "fill": "hsl(96 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07098": { - "id": "shape:perf:07098", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 4480, - "rot": 0, - "props": { - "w": 41, - "h": 44, - "fill": "hsl(168 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07099": { - "id": "shape:perf:07099", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 4480, - "rot": 0, - "props": { - "w": 26, - "h": 41, - "fill": "hsl(61 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07100": { - "id": "shape:perf:07100", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 4544, - "rot": 0, - "props": { - "w": 34, - "h": 37, - "fill": "hsl(161 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07101": { - "id": "shape:perf:07101", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 4544, - "rot": 0, - "props": { - "w": 30, - "h": 38, - "fill": "hsl(354 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07102": { - "id": "shape:perf:07102", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 4544, - "rot": 0, - "props": { - "w": 35, - "h": 36, - "fill": "hsl(298 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07103": { - "id": "shape:perf:07103", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 4544, - "rot": 0, - "props": { - "w": 45, - "h": 34, - "fill": "hsl(165 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07104": { - "id": "shape:perf:07104", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 4544, - "rot": 0, - "props": { - "w": 27, - "h": 26, - "fill": "hsl(99 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07105": { - "id": "shape:perf:07105", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 4544, - "rot": 0, - "props": { - "w": 33, - "h": 43, - "fill": "hsl(214 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07106": { - "id": "shape:perf:07106", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 4544, - "rot": 0, - "props": { - "w": 34, - "h": 24, - "fill": "hsl(233 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07107": { - "id": "shape:perf:07107", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 4544, - "rot": 0, - "props": { - "w": 41, - "h": 42, - "fill": "hsl(47 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07108": { - "id": "shape:perf:07108", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 4544, - "rot": 0, - "props": { - "w": 27, - "h": 41, - "fill": "hsl(50 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07109": { - "id": "shape:perf:07109", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 4544, - "rot": 0, - "props": { - "w": 35, - "h": 30, - "fill": "hsl(141 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07110": { - "id": "shape:perf:07110", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 4544, - "rot": 0, - "props": { - "w": 34, - "h": 40, - "fill": "hsl(271 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07111": { - "id": "shape:perf:07111", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 4544, - "rot": 0, - "props": { - "w": 41, - "h": 24, - "fill": "hsl(77 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07112": { - "id": "shape:perf:07112", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 4544, - "rot": 0, - "props": { - "w": 25, - "h": 24, - "fill": "hsl(339 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07113": { - "id": "shape:perf:07113", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 4544, - "rot": 0, - "props": { - "w": 41, - "h": 38, - "fill": "hsl(10 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07114": { - "id": "shape:perf:07114", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 4544, - "rot": 0, - "props": { - "w": 37, - "h": 26, - "fill": "hsl(284 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07115": { - "id": "shape:perf:07115", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 4544, - "rot": 0, - "props": { - "w": 40, - "h": 30, - "fill": "hsl(88 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07116": { - "id": "shape:perf:07116", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 4544, - "rot": 0, - "props": { - "w": 43, - "h": 43, - "fill": "hsl(298 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07117": { - "id": "shape:perf:07117", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 4544, - "rot": 0, - "props": { - "w": 34, - "h": 43, - "fill": "hsl(324 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07118": { - "id": "shape:perf:07118", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 4544, - "rot": 0, - "props": { - "w": 40, - "h": 36, - "fill": "hsl(18 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07119": { - "id": "shape:perf:07119", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 4544, - "rot": 0, - "props": { - "w": 43, - "h": 29, - "fill": "hsl(225 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07120": { - "id": "shape:perf:07120", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 4544, - "rot": 0, - "props": { - "w": 39, - "h": 33, - "fill": "hsl(139 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07121": { - "id": "shape:perf:07121", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 4544, - "rot": 0, - "props": { - "w": 45, - "h": 31, - "fill": "hsl(141 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07122": { - "id": "shape:perf:07122", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 4544, - "rot": 0, - "props": { - "w": 43, - "h": 36, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07123": { - "id": "shape:perf:07123", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 4544, - "rot": 0, - "props": { - "w": 40, - "h": 26, - "fill": "hsl(12 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07124": { - "id": "shape:perf:07124", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 4544, - "rot": 0, - "props": { - "w": 25, - "h": 27, - "fill": "hsl(164 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07125": { - "id": "shape:perf:07125", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 4544, - "rot": 0, - "props": { - "w": 46, - "h": 27, - "fill": "hsl(290 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07126": { - "id": "shape:perf:07126", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 4544, - "rot": 0, - "props": { - "w": 37, - "h": 38, - "fill": "hsl(202 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07127": { - "id": "shape:perf:07127", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 4544, - "rot": 0, - "props": { - "w": 28, - "h": 24, - "fill": "hsl(79 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07128": { - "id": "shape:perf:07128", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 4544, - "rot": 0, - "props": { - "w": 38, - "h": 26, - "fill": "hsl(170 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07129": { - "id": "shape:perf:07129", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 4544, - "rot": 0, - "props": { - "w": 41, - "h": 36, - "fill": "hsl(12 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07130": { - "id": "shape:perf:07130", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 4544, - "rot": 0, - "props": { - "w": 24, - "h": 24, - "fill": "hsl(83 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07131": { - "id": "shape:perf:07131", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 4544, - "rot": 0, - "props": { - "w": 25, - "h": 41, - "fill": "hsl(325 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07132": { - "id": "shape:perf:07132", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 4544, - "rot": 0, - "props": { - "w": 29, - "h": 44, - "fill": "hsl(147 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07133": { - "id": "shape:perf:07133", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 4544, - "rot": 0, - "props": { - "w": 42, - "h": 25, - "fill": "hsl(88 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07134": { - "id": "shape:perf:07134", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 4544, - "rot": 0, - "props": { - "w": 24, - "h": 35, - "fill": "hsl(272 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07135": { - "id": "shape:perf:07135", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 4544, - "rot": 0, - "props": { - "w": 37, - "h": 24, - "fill": "hsl(253 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07136": { - "id": "shape:perf:07136", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 4544, - "rot": 0, - "props": { - "w": 42, - "h": 30, - "fill": "hsl(247 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07137": { - "id": "shape:perf:07137", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 4544, - "rot": 0, - "props": { - "w": 40, - "h": 39, - "fill": "hsl(47 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07138": { - "id": "shape:perf:07138", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 4544, - "rot": 0, - "props": { - "w": 41, - "h": 33, - "fill": "hsl(131 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07139": { - "id": "shape:perf:07139", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 4544, - "rot": 0, - "props": { - "w": 42, - "h": 45, - "fill": "hsl(86 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07140": { - "id": "shape:perf:07140", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 4544, - "rot": 0, - "props": { - "w": 46, - "h": 45, - "fill": "hsl(248 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07141": { - "id": "shape:perf:07141", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 4544, - "rot": 0, - "props": { - "w": 24, - "h": 46, - "fill": "hsl(194 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07142": { - "id": "shape:perf:07142", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 4544, - "rot": 0, - "props": { - "w": 24, - "h": 37, - "fill": "hsl(63 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07143": { - "id": "shape:perf:07143", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 4544, - "rot": 0, - "props": { - "w": 47, - "h": 28, - "fill": "hsl(309 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07144": { - "id": "shape:perf:07144", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 4544, - "rot": 0, - "props": { - "w": 46, - "h": 42, - "fill": "hsl(251 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07145": { - "id": "shape:perf:07145", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 4544, - "rot": 0, - "props": { - "w": 36, - "h": 31, - "fill": "hsl(187 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07146": { - "id": "shape:perf:07146", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 4544, - "rot": 0, - "props": { - "w": 30, - "h": 43, - "fill": "hsl(177 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07147": { - "id": "shape:perf:07147", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 4544, - "rot": 0, - "props": { - "w": 26, - "h": 41, - "fill": "hsl(222 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07148": { - "id": "shape:perf:07148", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 4544, - "rot": 0, - "props": { - "w": 32, - "h": 35, - "fill": "hsl(142 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07149": { - "id": "shape:perf:07149", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 4544, - "rot": 0, - "props": { - "w": 25, - "h": 33, - "fill": "hsl(22 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07150": { - "id": "shape:perf:07150", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 4544, - "rot": 0, - "props": { - "w": 39, - "h": 47, - "fill": "hsl(239 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07151": { - "id": "shape:perf:07151", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 4544, - "rot": 0, - "props": { - "w": 24, - "h": 40, - "fill": "hsl(182 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07152": { - "id": "shape:perf:07152", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 4544, - "rot": 0, - "props": { - "w": 25, - "h": 31, - "fill": "hsl(95 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07153": { - "id": "shape:perf:07153", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 4544, - "rot": 0, - "props": { - "w": 42, - "h": 33, - "fill": "hsl(45 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07154": { - "id": "shape:perf:07154", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 4544, - "rot": 0, - "props": { - "w": 27, - "h": 40, - "fill": "hsl(356 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07155": { - "id": "shape:perf:07155", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 4544, - "rot": 0, - "props": { - "w": 25, - "h": 25, - "fill": "hsl(5 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07156": { - "id": "shape:perf:07156", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 4544, - "rot": 0, - "props": { - "w": 35, - "h": 32, - "fill": "hsl(188 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07157": { - "id": "shape:perf:07157", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 4544, - "rot": 0, - "props": { - "w": 32, - "h": 36, - "fill": "hsl(246 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07158": { - "id": "shape:perf:07158", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 4544, - "rot": 0, - "props": { - "w": 28, - "h": 34, - "fill": "hsl(161 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07159": { - "id": "shape:perf:07159", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 4544, - "rot": 0, - "props": { - "w": 39, - "h": 28, - "fill": "hsl(186 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07160": { - "id": "shape:perf:07160", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 4544, - "rot": 0, - "props": { - "w": 42, - "h": 47, - "fill": "hsl(153 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07161": { - "id": "shape:perf:07161", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 4544, - "rot": 0, - "props": { - "w": 30, - "h": 30, - "fill": "hsl(332 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07162": { - "id": "shape:perf:07162", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 4544, - "rot": 0, - "props": { - "w": 40, - "h": 27, - "fill": "hsl(66 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07163": { - "id": "shape:perf:07163", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 4544, - "rot": 0, - "props": { - "w": 25, - "h": 47, - "fill": "hsl(44 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07164": { - "id": "shape:perf:07164", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 4544, - "rot": 0, - "props": { - "w": 43, - "h": 29, - "fill": "hsl(22 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07165": { - "id": "shape:perf:07165", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 4544, - "rot": 0, - "props": { - "w": 31, - "h": 47, - "fill": "hsl(281 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07166": { - "id": "shape:perf:07166", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 4544, - "rot": 0, - "props": { - "w": 24, - "h": 28, - "fill": "hsl(1 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07167": { - "id": "shape:perf:07167", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 4544, - "rot": 0, - "props": { - "w": 34, - "h": 30, - "fill": "hsl(327 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07168": { - "id": "shape:perf:07168", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 4544, - "rot": 0, - "props": { - "w": 31, - "h": 38, - "fill": "hsl(3 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07169": { - "id": "shape:perf:07169", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 4544, - "rot": 0, - "props": { - "w": 47, - "h": 31, - "fill": "hsl(175 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07170": { - "id": "shape:perf:07170", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 4544, - "rot": 0, - "props": { - "w": 46, - "h": 26, - "fill": "hsl(141 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07171": { - "id": "shape:perf:07171", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 4544, - "rot": 0, - "props": { - "w": 30, - "h": 45, - "fill": "hsl(260 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07172": { - "id": "shape:perf:07172", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 4544, - "rot": 0, - "props": { - "w": 31, - "h": 29, - "fill": "hsl(153 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07173": { - "id": "shape:perf:07173", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 4544, - "rot": 0, - "props": { - "w": 28, - "h": 29, - "fill": "hsl(288 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07174": { - "id": "shape:perf:07174", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 4544, - "rot": 0, - "props": { - "w": 26, - "h": 31, - "fill": "hsl(263 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07175": { - "id": "shape:perf:07175", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 4544, - "rot": 0, - "props": { - "w": 39, - "h": 32, - "fill": "hsl(352 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07176": { - "id": "shape:perf:07176", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 4544, - "rot": 0, - "props": { - "w": 36, - "h": 29, - "fill": "hsl(171 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07177": { - "id": "shape:perf:07177", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 4544, - "rot": 0, - "props": { - "w": 40, - "h": 43, - "fill": "hsl(27 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07178": { - "id": "shape:perf:07178", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 4544, - "rot": 0, - "props": { - "w": 27, - "h": 44, - "fill": "hsl(274 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07179": { - "id": "shape:perf:07179", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 4544, - "rot": 0, - "props": { - "w": 40, - "h": 39, - "fill": "hsl(34 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07180": { - "id": "shape:perf:07180", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 4544, - "rot": 0, - "props": { - "w": 46, - "h": 34, - "fill": "hsl(63 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07181": { - "id": "shape:perf:07181", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 4544, - "rot": 0, - "props": { - "w": 34, - "h": 47, - "fill": "hsl(140 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07182": { - "id": "shape:perf:07182", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 4544, - "rot": 0, - "props": { - "w": 38, - "h": 35, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07183": { - "id": "shape:perf:07183", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 4544, - "rot": 0, - "props": { - "w": 35, - "h": 24, - "fill": "hsl(189 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07184": { - "id": "shape:perf:07184", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 4544, - "rot": 0, - "props": { - "w": 35, - "h": 42, - "fill": "hsl(13 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07185": { - "id": "shape:perf:07185", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 4544, - "rot": 0, - "props": { - "w": 41, - "h": 29, - "fill": "hsl(112 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07186": { - "id": "shape:perf:07186", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 4544, - "rot": 0, - "props": { - "w": 29, - "h": 25, - "fill": "hsl(334 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07187": { - "id": "shape:perf:07187", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 4544, - "rot": 0, - "props": { - "w": 37, - "h": 28, - "fill": "hsl(189 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07188": { - "id": "shape:perf:07188", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 4544, - "rot": 0, - "props": { - "w": 44, - "h": 39, - "fill": "hsl(27 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07189": { - "id": "shape:perf:07189", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 4544, - "rot": 0, - "props": { - "w": 27, - "h": 24, - "fill": "hsl(36 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07190": { - "id": "shape:perf:07190", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 4544, - "rot": 0, - "props": { - "w": 45, - "h": 34, - "fill": "hsl(287 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07191": { - "id": "shape:perf:07191", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 4544, - "rot": 0, - "props": { - "w": 33, - "h": 28, - "fill": "hsl(41 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07192": { - "id": "shape:perf:07192", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 4544, - "rot": 0, - "props": { - "w": 27, - "h": 38, - "fill": "hsl(43 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07193": { - "id": "shape:perf:07193", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 4544, - "rot": 0, - "props": { - "w": 47, - "h": 35, - "fill": "hsl(139 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07194": { - "id": "shape:perf:07194", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 4544, - "rot": 0, - "props": { - "w": 39, - "h": 40, - "fill": "hsl(171 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07195": { - "id": "shape:perf:07195", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 4544, - "rot": 0, - "props": { - "w": 34, - "h": 37, - "fill": "hsl(305 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07196": { - "id": "shape:perf:07196", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 4544, - "rot": 0, - "props": { - "w": 44, - "h": 40, - "fill": "hsl(158 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07197": { - "id": "shape:perf:07197", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 4544, - "rot": 0, - "props": { - "w": 24, - "h": 35, - "fill": "hsl(226 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07198": { - "id": "shape:perf:07198", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 4544, - "rot": 0, - "props": { - "w": 47, - "h": 26, - "fill": "hsl(55 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07199": { - "id": "shape:perf:07199", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 4544, - "rot": 0, - "props": { - "w": 35, - "h": 27, - "fill": "hsl(146 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07200": { - "id": "shape:perf:07200", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 4608, - "rot": 0, - "props": { - "w": 38, - "h": 29, - "fill": "hsl(46 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07201": { - "id": "shape:perf:07201", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 4608, - "rot": 0, - "props": { - "w": 38, - "h": 25, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07202": { - "id": "shape:perf:07202", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 4608, - "rot": 0, - "props": { - "w": 44, - "h": 24, - "fill": "hsl(78 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07203": { - "id": "shape:perf:07203", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 4608, - "rot": 0, - "props": { - "w": 46, - "h": 46, - "fill": "hsl(22 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07204": { - "id": "shape:perf:07204", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 4608, - "rot": 0, - "props": { - "w": 28, - "h": 36, - "fill": "hsl(290 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07205": { - "id": "shape:perf:07205", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 4608, - "rot": 0, - "props": { - "w": 42, - "h": 27, - "fill": "hsl(233 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07206": { - "id": "shape:perf:07206", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 4608, - "rot": 0, - "props": { - "w": 25, - "h": 45, - "fill": "hsl(281 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07207": { - "id": "shape:perf:07207", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 4608, - "rot": 0, - "props": { - "w": 40, - "h": 38, - "fill": "hsl(203 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07208": { - "id": "shape:perf:07208", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 4608, - "rot": 0, - "props": { - "w": 29, - "h": 27, - "fill": "hsl(186 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07209": { - "id": "shape:perf:07209", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 4608, - "rot": 0, - "props": { - "w": 30, - "h": 43, - "fill": "hsl(13 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07210": { - "id": "shape:perf:07210", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 4608, - "rot": 0, - "props": { - "w": 39, - "h": 44, - "fill": "hsl(105 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07211": { - "id": "shape:perf:07211", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 4608, - "rot": 0, - "props": { - "w": 41, - "h": 26, - "fill": "hsl(5 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07212": { - "id": "shape:perf:07212", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 4608, - "rot": 0, - "props": { - "w": 33, - "h": 42, - "fill": "hsl(333 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07213": { - "id": "shape:perf:07213", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 4608, - "rot": 0, - "props": { - "w": 26, - "h": 34, - "fill": "hsl(63 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07214": { - "id": "shape:perf:07214", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 4608, - "rot": 0, - "props": { - "w": 35, - "h": 24, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07215": { - "id": "shape:perf:07215", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 4608, - "rot": 0, - "props": { - "w": 37, - "h": 26, - "fill": "hsl(256 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07216": { - "id": "shape:perf:07216", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 4608, - "rot": 0, - "props": { - "w": 42, - "h": 33, - "fill": "hsl(65 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07217": { - "id": "shape:perf:07217", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 4608, - "rot": 0, - "props": { - "w": 47, - "h": 41, - "fill": "hsl(285 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07218": { - "id": "shape:perf:07218", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 4608, - "rot": 0, - "props": { - "w": 47, - "h": 34, - "fill": "hsl(23 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07219": { - "id": "shape:perf:07219", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 4608, - "rot": 0, - "props": { - "w": 35, - "h": 36, - "fill": "hsl(47 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07220": { - "id": "shape:perf:07220", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 4608, - "rot": 0, - "props": { - "w": 25, - "h": 40, - "fill": "hsl(15 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07221": { - "id": "shape:perf:07221", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 4608, - "rot": 0, - "props": { - "w": 31, - "h": 30, - "fill": "hsl(192 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07222": { - "id": "shape:perf:07222", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 4608, - "rot": 0, - "props": { - "w": 25, - "h": 25, - "fill": "hsl(44 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07223": { - "id": "shape:perf:07223", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 4608, - "rot": 0, - "props": { - "w": 37, - "h": 40, - "fill": "hsl(158 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07224": { - "id": "shape:perf:07224", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 4608, - "rot": 0, - "props": { - "w": 45, - "h": 45, - "fill": "hsl(55 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07225": { - "id": "shape:perf:07225", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 4608, - "rot": 0, - "props": { - "w": 34, - "h": 31, - "fill": "hsl(54 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07226": { - "id": "shape:perf:07226", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 4608, - "rot": 0, - "props": { - "w": 33, - "h": 45, - "fill": "hsl(302 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07227": { - "id": "shape:perf:07227", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 4608, - "rot": 0, - "props": { - "w": 24, - "h": 28, - "fill": "hsl(84 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07228": { - "id": "shape:perf:07228", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 4608, - "rot": 0, - "props": { - "w": 24, - "h": 47, - "fill": "hsl(187 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07229": { - "id": "shape:perf:07229", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 4608, - "rot": 0, - "props": { - "w": 37, - "h": 40, - "fill": "hsl(301 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07230": { - "id": "shape:perf:07230", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 4608, - "rot": 0, - "props": { - "w": 37, - "h": 32, - "fill": "hsl(42 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07231": { - "id": "shape:perf:07231", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 4608, - "rot": 0, - "props": { - "w": 44, - "h": 25, - "fill": "hsl(149 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07232": { - "id": "shape:perf:07232", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 4608, - "rot": 0, - "props": { - "w": 24, - "h": 43, - "fill": "hsl(225 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07233": { - "id": "shape:perf:07233", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 4608, - "rot": 0, - "props": { - "w": 46, - "h": 24, - "fill": "hsl(92 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07234": { - "id": "shape:perf:07234", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 4608, - "rot": 0, - "props": { - "w": 30, - "h": 31, - "fill": "hsl(145 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07235": { - "id": "shape:perf:07235", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 4608, - "rot": 0, - "props": { - "w": 32, - "h": 31, - "fill": "hsl(139 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07236": { - "id": "shape:perf:07236", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 4608, - "rot": 0, - "props": { - "w": 42, - "h": 47, - "fill": "hsl(266 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07237": { - "id": "shape:perf:07237", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 4608, - "rot": 0, - "props": { - "w": 33, - "h": 31, - "fill": "hsl(26 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07238": { - "id": "shape:perf:07238", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 4608, - "rot": 0, - "props": { - "w": 41, - "h": 37, - "fill": "hsl(181 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07239": { - "id": "shape:perf:07239", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 4608, - "rot": 0, - "props": { - "w": 42, - "h": 45, - "fill": "hsl(358 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07240": { - "id": "shape:perf:07240", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 4608, - "rot": 0, - "props": { - "w": 38, - "h": 28, - "fill": "hsl(98 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07241": { - "id": "shape:perf:07241", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 4608, - "rot": 0, - "props": { - "w": 44, - "h": 32, - "fill": "hsl(1 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07242": { - "id": "shape:perf:07242", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 4608, - "rot": 0, - "props": { - "w": 39, - "h": 30, - "fill": "hsl(126 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07243": { - "id": "shape:perf:07243", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 4608, - "rot": 0, - "props": { - "w": 25, - "h": 47, - "fill": "hsl(304 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07244": { - "id": "shape:perf:07244", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 4608, - "rot": 0, - "props": { - "w": 38, - "h": 32, - "fill": "hsl(126 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07245": { - "id": "shape:perf:07245", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 4608, - "rot": 0, - "props": { - "w": 26, - "h": 40, - "fill": "hsl(262 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07246": { - "id": "shape:perf:07246", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 4608, - "rot": 0, - "props": { - "w": 31, - "h": 30, - "fill": "hsl(357 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07247": { - "id": "shape:perf:07247", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 4608, - "rot": 0, - "props": { - "w": 42, - "h": 33, - "fill": "hsl(351 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07248": { - "id": "shape:perf:07248", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 4608, - "rot": 0, - "props": { - "w": 32, - "h": 33, - "fill": "hsl(319 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07249": { - "id": "shape:perf:07249", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 4608, - "rot": 0, - "props": { - "w": 41, - "h": 40, - "fill": "hsl(63 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07250": { - "id": "shape:perf:07250", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 4608, - "rot": 0, - "props": { - "w": 34, - "h": 47, - "fill": "hsl(88 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07251": { - "id": "shape:perf:07251", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 4608, - "rot": 0, - "props": { - "w": 29, - "h": 28, - "fill": "hsl(9 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07252": { - "id": "shape:perf:07252", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 4608, - "rot": 0, - "props": { - "w": 28, - "h": 37, - "fill": "hsl(292 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07253": { - "id": "shape:perf:07253", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 4608, - "rot": 0, - "props": { - "w": 39, - "h": 33, - "fill": "hsl(354 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07254": { - "id": "shape:perf:07254", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 4608, - "rot": 0, - "props": { - "w": 40, - "h": 42, - "fill": "hsl(279 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07255": { - "id": "shape:perf:07255", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 4608, - "rot": 0, - "props": { - "w": 45, - "h": 35, - "fill": "hsl(117 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07256": { - "id": "shape:perf:07256", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 4608, - "rot": 0, - "props": { - "w": 31, - "h": 43, - "fill": "hsl(117 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07257": { - "id": "shape:perf:07257", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 4608, - "rot": 0, - "props": { - "w": 45, - "h": 28, - "fill": "hsl(70 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07258": { - "id": "shape:perf:07258", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 4608, - "rot": 0, - "props": { - "w": 42, - "h": 24, - "fill": "hsl(211 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07259": { - "id": "shape:perf:07259", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 4608, - "rot": 0, - "props": { - "w": 26, - "h": 29, - "fill": "hsl(206 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07260": { - "id": "shape:perf:07260", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 4608, - "rot": 0, - "props": { - "w": 38, - "h": 40, - "fill": "hsl(86 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07261": { - "id": "shape:perf:07261", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 4608, - "rot": 0, - "props": { - "w": 43, - "h": 42, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07262": { - "id": "shape:perf:07262", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 4608, - "rot": 0, - "props": { - "w": 41, - "h": 38, - "fill": "hsl(50 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07263": { - "id": "shape:perf:07263", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 4608, - "rot": 0, - "props": { - "w": 24, - "h": 46, - "fill": "hsl(15 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07264": { - "id": "shape:perf:07264", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 4608, - "rot": 0, - "props": { - "w": 38, - "h": 37, - "fill": "hsl(286 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07265": { - "id": "shape:perf:07265", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 4608, - "rot": 0, - "props": { - "w": 38, - "h": 28, - "fill": "hsl(139 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07266": { - "id": "shape:perf:07266", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 4608, - "rot": 0, - "props": { - "w": 42, - "h": 39, - "fill": "hsl(213 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07267": { - "id": "shape:perf:07267", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 4608, - "rot": 0, - "props": { - "w": 29, - "h": 39, - "fill": "hsl(168 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07268": { - "id": "shape:perf:07268", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 4608, - "rot": 0, - "props": { - "w": 38, - "h": 24, - "fill": "hsl(210 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07269": { - "id": "shape:perf:07269", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 4608, - "rot": 0, - "props": { - "w": 36, - "h": 44, - "fill": "hsl(210 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07270": { - "id": "shape:perf:07270", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 4608, - "rot": 0, - "props": { - "w": 43, - "h": 38, - "fill": "hsl(327 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07271": { - "id": "shape:perf:07271", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 4608, - "rot": 0, - "props": { - "w": 33, - "h": 26, - "fill": "hsl(15 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07272": { - "id": "shape:perf:07272", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 4608, - "rot": 0, - "props": { - "w": 28, - "h": 27, - "fill": "hsl(143 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07273": { - "id": "shape:perf:07273", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 4608, - "rot": 0, - "props": { - "w": 42, - "h": 42, - "fill": "hsl(304 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07274": { - "id": "shape:perf:07274", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 4608, - "rot": 0, - "props": { - "w": 35, - "h": 36, - "fill": "hsl(283 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07275": { - "id": "shape:perf:07275", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 4608, - "rot": 0, - "props": { - "w": 25, - "h": 42, - "fill": "hsl(74 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07276": { - "id": "shape:perf:07276", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 4608, - "rot": 0, - "props": { - "w": 47, - "h": 45, - "fill": "hsl(42 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07277": { - "id": "shape:perf:07277", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 4608, - "rot": 0, - "props": { - "w": 45, - "h": 41, - "fill": "hsl(133 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07278": { - "id": "shape:perf:07278", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 4608, - "rot": 0, - "props": { - "w": 32, - "h": 37, - "fill": "hsl(247 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07279": { - "id": "shape:perf:07279", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 4608, - "rot": 0, - "props": { - "w": 46, - "h": 40, - "fill": "hsl(44 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07280": { - "id": "shape:perf:07280", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 4608, - "rot": 0, - "props": { - "w": 31, - "h": 34, - "fill": "hsl(16 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07281": { - "id": "shape:perf:07281", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 4608, - "rot": 0, - "props": { - "w": 33, - "h": 42, - "fill": "hsl(300 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07282": { - "id": "shape:perf:07282", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 4608, - "rot": 0, - "props": { - "w": 34, - "h": 30, - "fill": "hsl(145 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07283": { - "id": "shape:perf:07283", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 4608, - "rot": 0, - "props": { - "w": 30, - "h": 37, - "fill": "hsl(17 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07284": { - "id": "shape:perf:07284", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 4608, - "rot": 0, - "props": { - "w": 41, - "h": 37, - "fill": "hsl(79 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07285": { - "id": "shape:perf:07285", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 4608, - "rot": 0, - "props": { - "w": 43, - "h": 25, - "fill": "hsl(348 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07286": { - "id": "shape:perf:07286", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 4608, - "rot": 0, - "props": { - "w": 38, - "h": 29, - "fill": "hsl(333 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07287": { - "id": "shape:perf:07287", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 4608, - "rot": 0, - "props": { - "w": 47, - "h": 26, - "fill": "hsl(352 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07288": { - "id": "shape:perf:07288", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 4608, - "rot": 0, - "props": { - "w": 42, - "h": 33, - "fill": "hsl(232 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07289": { - "id": "shape:perf:07289", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 4608, - "rot": 0, - "props": { - "w": 28, - "h": 44, - "fill": "hsl(278 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07290": { - "id": "shape:perf:07290", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 4608, - "rot": 0, - "props": { - "w": 26, - "h": 27, - "fill": "hsl(216 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07291": { - "id": "shape:perf:07291", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 4608, - "rot": 0, - "props": { - "w": 38, - "h": 44, - "fill": "hsl(108 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07292": { - "id": "shape:perf:07292", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 4608, - "rot": 0, - "props": { - "w": 46, - "h": 26, - "fill": "hsl(175 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07293": { - "id": "shape:perf:07293", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 4608, - "rot": 0, - "props": { - "w": 29, - "h": 25, - "fill": "hsl(220 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07294": { - "id": "shape:perf:07294", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 4608, - "rot": 0, - "props": { - "w": 38, - "h": 32, - "fill": "hsl(283 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07295": { - "id": "shape:perf:07295", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 4608, - "rot": 0, - "props": { - "w": 39, - "h": 24, - "fill": "hsl(104 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07296": { - "id": "shape:perf:07296", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 4608, - "rot": 0, - "props": { - "w": 45, - "h": 26, - "fill": "hsl(224 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07297": { - "id": "shape:perf:07297", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 4608, - "rot": 0, - "props": { - "w": 31, - "h": 31, - "fill": "hsl(274 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07298": { - "id": "shape:perf:07298", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 4608, - "rot": 0, - "props": { - "w": 24, - "h": 24, - "fill": "hsl(181 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07299": { - "id": "shape:perf:07299", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 4608, - "rot": 0, - "props": { - "w": 28, - "h": 37, - "fill": "hsl(254 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07300": { - "id": "shape:perf:07300", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 4672, - "rot": 0, - "props": { - "w": 38, - "h": 30, - "fill": "hsl(56 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07301": { - "id": "shape:perf:07301", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 4672, - "rot": 0, - "props": { - "w": 36, - "h": 36, - "fill": "hsl(73 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07302": { - "id": "shape:perf:07302", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 4672, - "rot": 0, - "props": { - "w": 39, - "h": 38, - "fill": "hsl(301 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07303": { - "id": "shape:perf:07303", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 4672, - "rot": 0, - "props": { - "w": 41, - "h": 26, - "fill": "hsl(311 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07304": { - "id": "shape:perf:07304", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 4672, - "rot": 0, - "props": { - "w": 39, - "h": 41, - "fill": "hsl(267 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07305": { - "id": "shape:perf:07305", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 4672, - "rot": 0, - "props": { - "w": 47, - "h": 41, - "fill": "hsl(250 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07306": { - "id": "shape:perf:07306", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 4672, - "rot": 0, - "props": { - "w": 24, - "h": 46, - "fill": "hsl(10 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07307": { - "id": "shape:perf:07307", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 4672, - "rot": 0, - "props": { - "w": 36, - "h": 41, - "fill": "hsl(307 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07308": { - "id": "shape:perf:07308", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 4672, - "rot": 0, - "props": { - "w": 24, - "h": 43, - "fill": "hsl(302 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07309": { - "id": "shape:perf:07309", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 4672, - "rot": 0, - "props": { - "w": 29, - "h": 39, - "fill": "hsl(159 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07310": { - "id": "shape:perf:07310", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 4672, - "rot": 0, - "props": { - "w": 26, - "h": 44, - "fill": "hsl(195 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07311": { - "id": "shape:perf:07311", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 4672, - "rot": 0, - "props": { - "w": 28, - "h": 31, - "fill": "hsl(306 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07312": { - "id": "shape:perf:07312", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 4672, - "rot": 0, - "props": { - "w": 30, - "h": 41, - "fill": "hsl(89 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07313": { - "id": "shape:perf:07313", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 4672, - "rot": 0, - "props": { - "w": 35, - "h": 32, - "fill": "hsl(325 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07314": { - "id": "shape:perf:07314", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 4672, - "rot": 0, - "props": { - "w": 45, - "h": 29, - "fill": "hsl(197 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07315": { - "id": "shape:perf:07315", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 4672, - "rot": 0, - "props": { - "w": 47, - "h": 31, - "fill": "hsl(243 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07316": { - "id": "shape:perf:07316", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 4672, - "rot": 0, - "props": { - "w": 35, - "h": 29, - "fill": "hsl(200 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07317": { - "id": "shape:perf:07317", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 4672, - "rot": 0, - "props": { - "w": 34, - "h": 38, - "fill": "hsl(185 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07318": { - "id": "shape:perf:07318", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 4672, - "rot": 0, - "props": { - "w": 28, - "h": 30, - "fill": "hsl(208 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07319": { - "id": "shape:perf:07319", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 4672, - "rot": 0, - "props": { - "w": 29, - "h": 29, - "fill": "hsl(4 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07320": { - "id": "shape:perf:07320", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 4672, - "rot": 0, - "props": { - "w": 40, - "h": 38, - "fill": "hsl(113 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07321": { - "id": "shape:perf:07321", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 4672, - "rot": 0, - "props": { - "w": 44, - "h": 33, - "fill": "hsl(144 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07322": { - "id": "shape:perf:07322", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 4672, - "rot": 0, - "props": { - "w": 28, - "h": 31, - "fill": "hsl(126 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07323": { - "id": "shape:perf:07323", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 4672, - "rot": 0, - "props": { - "w": 43, - "h": 45, - "fill": "hsl(358 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07324": { - "id": "shape:perf:07324", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 4672, - "rot": 0, - "props": { - "w": 24, - "h": 28, - "fill": "hsl(37 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07325": { - "id": "shape:perf:07325", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 4672, - "rot": 0, - "props": { - "w": 35, - "h": 45, - "fill": "hsl(129 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07326": { - "id": "shape:perf:07326", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 4672, - "rot": 0, - "props": { - "w": 34, - "h": 36, - "fill": "hsl(344 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07327": { - "id": "shape:perf:07327", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 4672, - "rot": 0, - "props": { - "w": 42, - "h": 27, - "fill": "hsl(18 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07328": { - "id": "shape:perf:07328", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 4672, - "rot": 0, - "props": { - "w": 24, - "h": 40, - "fill": "hsl(291 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07329": { - "id": "shape:perf:07329", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 4672, - "rot": 0, - "props": { - "w": 44, - "h": 47, - "fill": "hsl(237 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07330": { - "id": "shape:perf:07330", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 4672, - "rot": 0, - "props": { - "w": 39, - "h": 44, - "fill": "hsl(336 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07331": { - "id": "shape:perf:07331", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 4672, - "rot": 0, - "props": { - "w": 45, - "h": 25, - "fill": "hsl(56 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07332": { - "id": "shape:perf:07332", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 4672, - "rot": 0, - "props": { - "w": 45, - "h": 40, - "fill": "hsl(261 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07333": { - "id": "shape:perf:07333", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 4672, - "rot": 0, - "props": { - "w": 42, - "h": 39, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07334": { - "id": "shape:perf:07334", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 4672, - "rot": 0, - "props": { - "w": 32, - "h": 26, - "fill": "hsl(343 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07335": { - "id": "shape:perf:07335", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 4672, - "rot": 0, - "props": { - "w": 42, - "h": 42, - "fill": "hsl(4 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07336": { - "id": "shape:perf:07336", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 4672, - "rot": 0, - "props": { - "w": 40, - "h": 42, - "fill": "hsl(133 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07337": { - "id": "shape:perf:07337", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 4672, - "rot": 0, - "props": { - "w": 24, - "h": 30, - "fill": "hsl(343 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07338": { - "id": "shape:perf:07338", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 4672, - "rot": 0, - "props": { - "w": 35, - "h": 41, - "fill": "hsl(28 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07339": { - "id": "shape:perf:07339", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 4672, - "rot": 0, - "props": { - "w": 44, - "h": 42, - "fill": "hsl(246 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07340": { - "id": "shape:perf:07340", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 4672, - "rot": 0, - "props": { - "w": 46, - "h": 30, - "fill": "hsl(30 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07341": { - "id": "shape:perf:07341", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 4672, - "rot": 0, - "props": { - "w": 33, - "h": 37, - "fill": "hsl(107 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07342": { - "id": "shape:perf:07342", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 4672, - "rot": 0, - "props": { - "w": 30, - "h": 42, - "fill": "hsl(311 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07343": { - "id": "shape:perf:07343", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 4672, - "rot": 0, - "props": { - "w": 45, - "h": 47, - "fill": "hsl(268 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07344": { - "id": "shape:perf:07344", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 4672, - "rot": 0, - "props": { - "w": 31, - "h": 46, - "fill": "hsl(286 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07345": { - "id": "shape:perf:07345", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 4672, - "rot": 0, - "props": { - "w": 39, - "h": 42, - "fill": "hsl(104 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07346": { - "id": "shape:perf:07346", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 4672, - "rot": 0, - "props": { - "w": 37, - "h": 29, - "fill": "hsl(275 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07347": { - "id": "shape:perf:07347", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 4672, - "rot": 0, - "props": { - "w": 43, - "h": 27, - "fill": "hsl(10 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07348": { - "id": "shape:perf:07348", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 4672, - "rot": 0, - "props": { - "w": 35, - "h": 32, - "fill": "hsl(204 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07349": { - "id": "shape:perf:07349", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 4672, - "rot": 0, - "props": { - "w": 47, - "h": 44, - "fill": "hsl(62 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07350": { - "id": "shape:perf:07350", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 4672, - "rot": 0, - "props": { - "w": 40, - "h": 44, - "fill": "hsl(203 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07351": { - "id": "shape:perf:07351", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 4672, - "rot": 0, - "props": { - "w": 40, - "h": 33, - "fill": "hsl(150 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07352": { - "id": "shape:perf:07352", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 4672, - "rot": 0, - "props": { - "w": 37, - "h": 36, - "fill": "hsl(268 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07353": { - "id": "shape:perf:07353", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 4672, - "rot": 0, - "props": { - "w": 47, - "h": 30, - "fill": "hsl(311 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07354": { - "id": "shape:perf:07354", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 4672, - "rot": 0, - "props": { - "w": 29, - "h": 32, - "fill": "hsl(317 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07355": { - "id": "shape:perf:07355", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 4672, - "rot": 0, - "props": { - "w": 39, - "h": 44, - "fill": "hsl(135 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07356": { - "id": "shape:perf:07356", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 4672, - "rot": 0, - "props": { - "w": 42, - "h": 45, - "fill": "hsl(319 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07357": { - "id": "shape:perf:07357", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 4672, - "rot": 0, - "props": { - "w": 43, - "h": 42, - "fill": "hsl(296 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07358": { - "id": "shape:perf:07358", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 4672, - "rot": 0, - "props": { - "w": 44, - "h": 44, - "fill": "hsl(315 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07359": { - "id": "shape:perf:07359", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 4672, - "rot": 0, - "props": { - "w": 38, - "h": 35, - "fill": "hsl(37 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07360": { - "id": "shape:perf:07360", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 4672, - "rot": 0, - "props": { - "w": 41, - "h": 47, - "fill": "hsl(269 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07361": { - "id": "shape:perf:07361", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 4672, - "rot": 0, - "props": { - "w": 30, - "h": 41, - "fill": "hsl(39 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07362": { - "id": "shape:perf:07362", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 4672, - "rot": 0, - "props": { - "w": 26, - "h": 45, - "fill": "hsl(274 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07363": { - "id": "shape:perf:07363", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 4672, - "rot": 0, - "props": { - "w": 26, - "h": 31, - "fill": "hsl(183 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07364": { - "id": "shape:perf:07364", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 4672, - "rot": 0, - "props": { - "w": 24, - "h": 35, - "fill": "hsl(3 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07365": { - "id": "shape:perf:07365", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 4672, - "rot": 0, - "props": { - "w": 33, - "h": 27, - "fill": "hsl(158 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07366": { - "id": "shape:perf:07366", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 4672, - "rot": 0, - "props": { - "w": 39, - "h": 45, - "fill": "hsl(272 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07367": { - "id": "shape:perf:07367", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 4672, - "rot": 0, - "props": { - "w": 30, - "h": 44, - "fill": "hsl(154 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07368": { - "id": "shape:perf:07368", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 4672, - "rot": 0, - "props": { - "w": 27, - "h": 47, - "fill": "hsl(194 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07369": { - "id": "shape:perf:07369", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 4672, - "rot": 0, - "props": { - "w": 26, - "h": 40, - "fill": "hsl(103 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07370": { - "id": "shape:perf:07370", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 4672, - "rot": 0, - "props": { - "w": 38, - "h": 45, - "fill": "hsl(188 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07371": { - "id": "shape:perf:07371", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 4672, - "rot": 0, - "props": { - "w": 47, - "h": 35, - "fill": "hsl(264 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07372": { - "id": "shape:perf:07372", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 4672, - "rot": 0, - "props": { - "w": 41, - "h": 29, - "fill": "hsl(134 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07373": { - "id": "shape:perf:07373", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 4672, - "rot": 0, - "props": { - "w": 45, - "h": 42, - "fill": "hsl(111 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07374": { - "id": "shape:perf:07374", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 4672, - "rot": 0, - "props": { - "w": 40, - "h": 35, - "fill": "hsl(107 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07375": { - "id": "shape:perf:07375", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 4672, - "rot": 0, - "props": { - "w": 39, - "h": 46, - "fill": "hsl(101 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07376": { - "id": "shape:perf:07376", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 4672, - "rot": 0, - "props": { - "w": 31, - "h": 31, - "fill": "hsl(247 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07377": { - "id": "shape:perf:07377", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 4672, - "rot": 0, - "props": { - "w": 41, - "h": 27, - "fill": "hsl(238 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07378": { - "id": "shape:perf:07378", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 4672, - "rot": 0, - "props": { - "w": 29, - "h": 24, - "fill": "hsl(79 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07379": { - "id": "shape:perf:07379", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 4672, - "rot": 0, - "props": { - "w": 28, - "h": 27, - "fill": "hsl(312 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07380": { - "id": "shape:perf:07380", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 4672, - "rot": 0, - "props": { - "w": 30, - "h": 26, - "fill": "hsl(161 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07381": { - "id": "shape:perf:07381", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 4672, - "rot": 0, - "props": { - "w": 44, - "h": 30, - "fill": "hsl(0 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07382": { - "id": "shape:perf:07382", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 4672, - "rot": 0, - "props": { - "w": 46, - "h": 47, - "fill": "hsl(196 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07383": { - "id": "shape:perf:07383", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 4672, - "rot": 0, - "props": { - "w": 30, - "h": 26, - "fill": "hsl(210 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07384": { - "id": "shape:perf:07384", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 4672, - "rot": 0, - "props": { - "w": 25, - "h": 28, - "fill": "hsl(198 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07385": { - "id": "shape:perf:07385", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 4672, - "rot": 0, - "props": { - "w": 33, - "h": 28, - "fill": "hsl(75 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07386": { - "id": "shape:perf:07386", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 4672, - "rot": 0, - "props": { - "w": 47, - "h": 25, - "fill": "hsl(291 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07387": { - "id": "shape:perf:07387", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 4672, - "rot": 0, - "props": { - "w": 36, - "h": 47, - "fill": "hsl(107 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07388": { - "id": "shape:perf:07388", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 4672, - "rot": 0, - "props": { - "w": 45, - "h": 41, - "fill": "hsl(209 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07389": { - "id": "shape:perf:07389", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 4672, - "rot": 0, - "props": { - "w": 39, - "h": 27, - "fill": "hsl(47 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07390": { - "id": "shape:perf:07390", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 4672, - "rot": 0, - "props": { - "w": 37, - "h": 38, - "fill": "hsl(34 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07391": { - "id": "shape:perf:07391", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 4672, - "rot": 0, - "props": { - "w": 39, - "h": 42, - "fill": "hsl(44 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07392": { - "id": "shape:perf:07392", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 4672, - "rot": 0, - "props": { - "w": 32, - "h": 30, - "fill": "hsl(196 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07393": { - "id": "shape:perf:07393", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 4672, - "rot": 0, - "props": { - "w": 39, - "h": 40, - "fill": "hsl(329 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07394": { - "id": "shape:perf:07394", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 4672, - "rot": 0, - "props": { - "w": 46, - "h": 32, - "fill": "hsl(337 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07395": { - "id": "shape:perf:07395", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 4672, - "rot": 0, - "props": { - "w": 35, - "h": 38, - "fill": "hsl(33 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07396": { - "id": "shape:perf:07396", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 4672, - "rot": 0, - "props": { - "w": 45, - "h": 27, - "fill": "hsl(65 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07397": { - "id": "shape:perf:07397", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 4672, - "rot": 0, - "props": { - "w": 35, - "h": 36, - "fill": "hsl(244 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07398": { - "id": "shape:perf:07398", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 4672, - "rot": 0, - "props": { - "w": 47, - "h": 45, - "fill": "hsl(203 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07399": { - "id": "shape:perf:07399", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 4672, - "rot": 0, - "props": { - "w": 42, - "h": 25, - "fill": "hsl(160 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07400": { - "id": "shape:perf:07400", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 4736, - "rot": 0, - "props": { - "w": 44, - "h": 29, - "fill": "hsl(257 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07401": { - "id": "shape:perf:07401", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 4736, - "rot": 0, - "props": { - "w": 26, - "h": 39, - "fill": "hsl(225 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07402": { - "id": "shape:perf:07402", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 4736, - "rot": 0, - "props": { - "w": 36, - "h": 35, - "fill": "hsl(187 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07403": { - "id": "shape:perf:07403", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 4736, - "rot": 0, - "props": { - "w": 29, - "h": 30, - "fill": "hsl(65 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07404": { - "id": "shape:perf:07404", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 4736, - "rot": 0, - "props": { - "w": 31, - "h": 34, - "fill": "hsl(64 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07405": { - "id": "shape:perf:07405", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 4736, - "rot": 0, - "props": { - "w": 41, - "h": 36, - "fill": "hsl(309 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07406": { - "id": "shape:perf:07406", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 4736, - "rot": 0, - "props": { - "w": 33, - "h": 45, - "fill": "hsl(291 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07407": { - "id": "shape:perf:07407", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 4736, - "rot": 0, - "props": { - "w": 31, - "h": 44, - "fill": "hsl(298 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07408": { - "id": "shape:perf:07408", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 4736, - "rot": 0, - "props": { - "w": 36, - "h": 38, - "fill": "hsl(223 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07409": { - "id": "shape:perf:07409", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 4736, - "rot": 0, - "props": { - "w": 40, - "h": 31, - "fill": "hsl(163 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07410": { - "id": "shape:perf:07410", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 4736, - "rot": 0, - "props": { - "w": 39, - "h": 41, - "fill": "hsl(55 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07411": { - "id": "shape:perf:07411", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 4736, - "rot": 0, - "props": { - "w": 39, - "h": 34, - "fill": "hsl(213 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07412": { - "id": "shape:perf:07412", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 4736, - "rot": 0, - "props": { - "w": 37, - "h": 41, - "fill": "hsl(305 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07413": { - "id": "shape:perf:07413", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 4736, - "rot": 0, - "props": { - "w": 31, - "h": 44, - "fill": "hsl(208 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07414": { - "id": "shape:perf:07414", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 4736, - "rot": 0, - "props": { - "w": 35, - "h": 47, - "fill": "hsl(1 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07415": { - "id": "shape:perf:07415", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 4736, - "rot": 0, - "props": { - "w": 38, - "h": 43, - "fill": "hsl(104 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07416": { - "id": "shape:perf:07416", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 4736, - "rot": 0, - "props": { - "w": 42, - "h": 38, - "fill": "hsl(196 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07417": { - "id": "shape:perf:07417", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 4736, - "rot": 0, - "props": { - "w": 35, - "h": 29, - "fill": "hsl(269 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07418": { - "id": "shape:perf:07418", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 4736, - "rot": 0, - "props": { - "w": 36, - "h": 26, - "fill": "hsl(122 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07419": { - "id": "shape:perf:07419", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 4736, - "rot": 0, - "props": { - "w": 31, - "h": 29, - "fill": "hsl(273 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07420": { - "id": "shape:perf:07420", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 4736, - "rot": 0, - "props": { - "w": 45, - "h": 26, - "fill": "hsl(320 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07421": { - "id": "shape:perf:07421", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 4736, - "rot": 0, - "props": { - "w": 47, - "h": 39, - "fill": "hsl(155 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07422": { - "id": "shape:perf:07422", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 4736, - "rot": 0, - "props": { - "w": 35, - "h": 41, - "fill": "hsl(180 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07423": { - "id": "shape:perf:07423", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 4736, - "rot": 0, - "props": { - "w": 40, - "h": 26, - "fill": "hsl(240 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07424": { - "id": "shape:perf:07424", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 4736, - "rot": 0, - "props": { - "w": 40, - "h": 30, - "fill": "hsl(1 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07425": { - "id": "shape:perf:07425", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 4736, - "rot": 0, - "props": { - "w": 31, - "h": 25, - "fill": "hsl(233 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07426": { - "id": "shape:perf:07426", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 4736, - "rot": 0, - "props": { - "w": 38, - "h": 44, - "fill": "hsl(178 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07427": { - "id": "shape:perf:07427", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 4736, - "rot": 0, - "props": { - "w": 43, - "h": 36, - "fill": "hsl(316 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07428": { - "id": "shape:perf:07428", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 4736, - "rot": 0, - "props": { - "w": 40, - "h": 32, - "fill": "hsl(312 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07429": { - "id": "shape:perf:07429", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 4736, - "rot": 0, - "props": { - "w": 47, - "h": 42, - "fill": "hsl(99 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07430": { - "id": "shape:perf:07430", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 4736, - "rot": 0, - "props": { - "w": 38, - "h": 26, - "fill": "hsl(192 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07431": { - "id": "shape:perf:07431", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 4736, - "rot": 0, - "props": { - "w": 35, - "h": 27, - "fill": "hsl(283 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07432": { - "id": "shape:perf:07432", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 4736, - "rot": 0, - "props": { - "w": 43, - "h": 30, - "fill": "hsl(204 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07433": { - "id": "shape:perf:07433", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 4736, - "rot": 0, - "props": { - "w": 35, - "h": 28, - "fill": "hsl(60 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07434": { - "id": "shape:perf:07434", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 4736, - "rot": 0, - "props": { - "w": 44, - "h": 30, - "fill": "hsl(291 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07435": { - "id": "shape:perf:07435", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 4736, - "rot": 0, - "props": { - "w": 38, - "h": 27, - "fill": "hsl(125 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07436": { - "id": "shape:perf:07436", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 4736, - "rot": 0, - "props": { - "w": 32, - "h": 33, - "fill": "hsl(336 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07437": { - "id": "shape:perf:07437", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 4736, - "rot": 0, - "props": { - "w": 30, - "h": 30, - "fill": "hsl(127 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07438": { - "id": "shape:perf:07438", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 4736, - "rot": 0, - "props": { - "w": 42, - "h": 37, - "fill": "hsl(249 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07439": { - "id": "shape:perf:07439", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 4736, - "rot": 0, - "props": { - "w": 27, - "h": 43, - "fill": "hsl(232 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07440": { - "id": "shape:perf:07440", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 4736, - "rot": 0, - "props": { - "w": 45, - "h": 24, - "fill": "hsl(3 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07441": { - "id": "shape:perf:07441", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 4736, - "rot": 0, - "props": { - "w": 37, - "h": 27, - "fill": "hsl(311 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07442": { - "id": "shape:perf:07442", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 4736, - "rot": 0, - "props": { - "w": 34, - "h": 44, - "fill": "hsl(321 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07443": { - "id": "shape:perf:07443", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 4736, - "rot": 0, - "props": { - "w": 39, - "h": 34, - "fill": "hsl(89 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07444": { - "id": "shape:perf:07444", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 4736, - "rot": 0, - "props": { - "w": 35, - "h": 46, - "fill": "hsl(314 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07445": { - "id": "shape:perf:07445", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 4736, - "rot": 0, - "props": { - "w": 35, - "h": 29, - "fill": "hsl(359 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07446": { - "id": "shape:perf:07446", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 4736, - "rot": 0, - "props": { - "w": 38, - "h": 27, - "fill": "hsl(92 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07447": { - "id": "shape:perf:07447", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 4736, - "rot": 0, - "props": { - "w": 26, - "h": 46, - "fill": "hsl(252 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07448": { - "id": "shape:perf:07448", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 4736, - "rot": 0, - "props": { - "w": 36, - "h": 45, - "fill": "hsl(270 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07449": { - "id": "shape:perf:07449", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 4736, - "rot": 0, - "props": { - "w": 32, - "h": 44, - "fill": "hsl(22 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07450": { - "id": "shape:perf:07450", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 4736, - "rot": 0, - "props": { - "w": 35, - "h": 25, - "fill": "hsl(89 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07451": { - "id": "shape:perf:07451", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 4736, - "rot": 0, - "props": { - "w": 36, - "h": 28, - "fill": "hsl(323 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07452": { - "id": "shape:perf:07452", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 4736, - "rot": 0, - "props": { - "w": 28, - "h": 26, - "fill": "hsl(168 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07453": { - "id": "shape:perf:07453", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 4736, - "rot": 0, - "props": { - "w": 27, - "h": 47, - "fill": "hsl(317 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07454": { - "id": "shape:perf:07454", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 4736, - "rot": 0, - "props": { - "w": 40, - "h": 43, - "fill": "hsl(108 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07455": { - "id": "shape:perf:07455", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 4736, - "rot": 0, - "props": { - "w": 42, - "h": 26, - "fill": "hsl(71 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07456": { - "id": "shape:perf:07456", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 4736, - "rot": 0, - "props": { - "w": 30, - "h": 30, - "fill": "hsl(226 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07457": { - "id": "shape:perf:07457", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 4736, - "rot": 0, - "props": { - "w": 39, - "h": 42, - "fill": "hsl(229 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07458": { - "id": "shape:perf:07458", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 4736, - "rot": 0, - "props": { - "w": 35, - "h": 30, - "fill": "hsl(195 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07459": { - "id": "shape:perf:07459", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 4736, - "rot": 0, - "props": { - "w": 42, - "h": 43, - "fill": "hsl(171 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07460": { - "id": "shape:perf:07460", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 4736, - "rot": 0, - "props": { - "w": 45, - "h": 27, - "fill": "hsl(54 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07461": { - "id": "shape:perf:07461", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 4736, - "rot": 0, - "props": { - "w": 41, - "h": 37, - "fill": "hsl(298 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07462": { - "id": "shape:perf:07462", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 4736, - "rot": 0, - "props": { - "w": 31, - "h": 41, - "fill": "hsl(230 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07463": { - "id": "shape:perf:07463", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 4736, - "rot": 0, - "props": { - "w": 35, - "h": 40, - "fill": "hsl(203 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07464": { - "id": "shape:perf:07464", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 4736, - "rot": 0, - "props": { - "w": 25, - "h": 47, - "fill": "hsl(347 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07465": { - "id": "shape:perf:07465", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 4736, - "rot": 0, - "props": { - "w": 33, - "h": 38, - "fill": "hsl(134 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07466": { - "id": "shape:perf:07466", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 4736, - "rot": 0, - "props": { - "w": 41, - "h": 26, - "fill": "hsl(254 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07467": { - "id": "shape:perf:07467", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 4736, - "rot": 0, - "props": { - "w": 35, - "h": 43, - "fill": "hsl(247 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07468": { - "id": "shape:perf:07468", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 4736, - "rot": 0, - "props": { - "w": 34, - "h": 31, - "fill": "hsl(5 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07469": { - "id": "shape:perf:07469", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 4736, - "rot": 0, - "props": { - "w": 32, - "h": 34, - "fill": "hsl(74 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07470": { - "id": "shape:perf:07470", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 4736, - "rot": 0, - "props": { - "w": 30, - "h": 37, - "fill": "hsl(206 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07471": { - "id": "shape:perf:07471", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 4736, - "rot": 0, - "props": { - "w": 35, - "h": 33, - "fill": "hsl(316 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07472": { - "id": "shape:perf:07472", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 4736, - "rot": 0, - "props": { - "w": 47, - "h": 34, - "fill": "hsl(344 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07473": { - "id": "shape:perf:07473", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 4736, - "rot": 0, - "props": { - "w": 39, - "h": 27, - "fill": "hsl(311 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07474": { - "id": "shape:perf:07474", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 4736, - "rot": 0, - "props": { - "w": 29, - "h": 32, - "fill": "hsl(299 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07475": { - "id": "shape:perf:07475", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 4736, - "rot": 0, - "props": { - "w": 40, - "h": 42, - "fill": "hsl(184 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07476": { - "id": "shape:perf:07476", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 4736, - "rot": 0, - "props": { - "w": 35, - "h": 37, - "fill": "hsl(29 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07477": { - "id": "shape:perf:07477", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 4736, - "rot": 0, - "props": { - "w": 33, - "h": 36, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07478": { - "id": "shape:perf:07478", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 4736, - "rot": 0, - "props": { - "w": 31, - "h": 24, - "fill": "hsl(161 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07479": { - "id": "shape:perf:07479", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 4736, - "rot": 0, - "props": { - "w": 47, - "h": 44, - "fill": "hsl(136 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07480": { - "id": "shape:perf:07480", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 4736, - "rot": 0, - "props": { - "w": 26, - "h": 26, - "fill": "hsl(140 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07481": { - "id": "shape:perf:07481", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 4736, - "rot": 0, - "props": { - "w": 40, - "h": 41, - "fill": "hsl(359 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07482": { - "id": "shape:perf:07482", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 4736, - "rot": 0, - "props": { - "w": 45, - "h": 31, - "fill": "hsl(321 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07483": { - "id": "shape:perf:07483", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 4736, - "rot": 0, - "props": { - "w": 47, - "h": 29, - "fill": "hsl(359 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07484": { - "id": "shape:perf:07484", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 4736, - "rot": 0, - "props": { - "w": 46, - "h": 38, - "fill": "hsl(330 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07485": { - "id": "shape:perf:07485", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 4736, - "rot": 0, - "props": { - "w": 42, - "h": 45, - "fill": "hsl(235 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07486": { - "id": "shape:perf:07486", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 4736, - "rot": 0, - "props": { - "w": 39, - "h": 27, - "fill": "hsl(11 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07487": { - "id": "shape:perf:07487", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 4736, - "rot": 0, - "props": { - "w": 28, - "h": 42, - "fill": "hsl(18 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07488": { - "id": "shape:perf:07488", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 4736, - "rot": 0, - "props": { - "w": 26, - "h": 25, - "fill": "hsl(228 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07489": { - "id": "shape:perf:07489", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 4736, - "rot": 0, - "props": { - "w": 28, - "h": 36, - "fill": "hsl(355 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07490": { - "id": "shape:perf:07490", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 4736, - "rot": 0, - "props": { - "w": 45, - "h": 24, - "fill": "hsl(98 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07491": { - "id": "shape:perf:07491", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 4736, - "rot": 0, - "props": { - "w": 28, - "h": 34, - "fill": "hsl(51 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07492": { - "id": "shape:perf:07492", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 4736, - "rot": 0, - "props": { - "w": 32, - "h": 43, - "fill": "hsl(203 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07493": { - "id": "shape:perf:07493", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 4736, - "rot": 0, - "props": { - "w": 36, - "h": 26, - "fill": "hsl(163 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07494": { - "id": "shape:perf:07494", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 4736, - "rot": 0, - "props": { - "w": 40, - "h": 27, - "fill": "hsl(248 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07495": { - "id": "shape:perf:07495", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 4736, - "rot": 0, - "props": { - "w": 38, - "h": 31, - "fill": "hsl(102 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07496": { - "id": "shape:perf:07496", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 4736, - "rot": 0, - "props": { - "w": 40, - "h": 27, - "fill": "hsl(353 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07497": { - "id": "shape:perf:07497", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 4736, - "rot": 0, - "props": { - "w": 38, - "h": 36, - "fill": "hsl(349 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07498": { - "id": "shape:perf:07498", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 4736, - "rot": 0, - "props": { - "w": 38, - "h": 37, - "fill": "hsl(40 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07499": { - "id": "shape:perf:07499", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 4736, - "rot": 0, - "props": { - "w": 43, - "h": 43, - "fill": "hsl(290 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07500": { - "id": "shape:perf:07500", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 4800, - "rot": 0, - "props": { - "w": 45, - "h": 29, - "fill": "hsl(272 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07501": { - "id": "shape:perf:07501", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 4800, - "rot": 0, - "props": { - "w": 24, - "h": 37, - "fill": "hsl(307 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07502": { - "id": "shape:perf:07502", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 4800, - "rot": 0, - "props": { - "w": 37, - "h": 43, - "fill": "hsl(144 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07503": { - "id": "shape:perf:07503", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 4800, - "rot": 0, - "props": { - "w": 24, - "h": 37, - "fill": "hsl(205 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07504": { - "id": "shape:perf:07504", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 4800, - "rot": 0, - "props": { - "w": 42, - "h": 25, - "fill": "hsl(100 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07505": { - "id": "shape:perf:07505", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 4800, - "rot": 0, - "props": { - "w": 30, - "h": 43, - "fill": "hsl(65 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07506": { - "id": "shape:perf:07506", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 4800, - "rot": 0, - "props": { - "w": 38, - "h": 35, - "fill": "hsl(162 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07507": { - "id": "shape:perf:07507", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 4800, - "rot": 0, - "props": { - "w": 31, - "h": 29, - "fill": "hsl(254 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07508": { - "id": "shape:perf:07508", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 4800, - "rot": 0, - "props": { - "w": 29, - "h": 43, - "fill": "hsl(171 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07509": { - "id": "shape:perf:07509", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 4800, - "rot": 0, - "props": { - "w": 25, - "h": 37, - "fill": "hsl(114 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07510": { - "id": "shape:perf:07510", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 4800, - "rot": 0, - "props": { - "w": 30, - "h": 28, - "fill": "hsl(198 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07511": { - "id": "shape:perf:07511", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 4800, - "rot": 0, - "props": { - "w": 26, - "h": 43, - "fill": "hsl(97 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07512": { - "id": "shape:perf:07512", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 4800, - "rot": 0, - "props": { - "w": 33, - "h": 33, - "fill": "hsl(319 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07513": { - "id": "shape:perf:07513", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 4800, - "rot": 0, - "props": { - "w": 43, - "h": 47, - "fill": "hsl(238 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07514": { - "id": "shape:perf:07514", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 4800, - "rot": 0, - "props": { - "w": 29, - "h": 29, - "fill": "hsl(74 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07515": { - "id": "shape:perf:07515", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 4800, - "rot": 0, - "props": { - "w": 29, - "h": 34, - "fill": "hsl(171 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07516": { - "id": "shape:perf:07516", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 4800, - "rot": 0, - "props": { - "w": 28, - "h": 31, - "fill": "hsl(289 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07517": { - "id": "shape:perf:07517", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 4800, - "rot": 0, - "props": { - "w": 24, - "h": 29, - "fill": "hsl(339 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07518": { - "id": "shape:perf:07518", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 4800, - "rot": 0, - "props": { - "w": 42, - "h": 36, - "fill": "hsl(201 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07519": { - "id": "shape:perf:07519", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 4800, - "rot": 0, - "props": { - "w": 36, - "h": 39, - "fill": "hsl(168 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07520": { - "id": "shape:perf:07520", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 4800, - "rot": 0, - "props": { - "w": 43, - "h": 45, - "fill": "hsl(335 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07521": { - "id": "shape:perf:07521", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 4800, - "rot": 0, - "props": { - "w": 40, - "h": 45, - "fill": "hsl(200 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07522": { - "id": "shape:perf:07522", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 4800, - "rot": 0, - "props": { - "w": 27, - "h": 43, - "fill": "hsl(341 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07523": { - "id": "shape:perf:07523", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 4800, - "rot": 0, - "props": { - "w": 42, - "h": 36, - "fill": "hsl(276 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07524": { - "id": "shape:perf:07524", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 4800, - "rot": 0, - "props": { - "w": 29, - "h": 44, - "fill": "hsl(33 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07525": { - "id": "shape:perf:07525", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 4800, - "rot": 0, - "props": { - "w": 46, - "h": 29, - "fill": "hsl(283 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07526": { - "id": "shape:perf:07526", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 4800, - "rot": 0, - "props": { - "w": 25, - "h": 42, - "fill": "hsl(116 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07527": { - "id": "shape:perf:07527", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 4800, - "rot": 0, - "props": { - "w": 32, - "h": 36, - "fill": "hsl(303 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07528": { - "id": "shape:perf:07528", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 4800, - "rot": 0, - "props": { - "w": 46, - "h": 41, - "fill": "hsl(322 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07529": { - "id": "shape:perf:07529", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 4800, - "rot": 0, - "props": { - "w": 37, - "h": 46, - "fill": "hsl(343 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07530": { - "id": "shape:perf:07530", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 4800, - "rot": 0, - "props": { - "w": 35, - "h": 28, - "fill": "hsl(177 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07531": { - "id": "shape:perf:07531", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 4800, - "rot": 0, - "props": { - "w": 27, - "h": 28, - "fill": "hsl(158 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07532": { - "id": "shape:perf:07532", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 4800, - "rot": 0, - "props": { - "w": 46, - "h": 47, - "fill": "hsl(161 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07533": { - "id": "shape:perf:07533", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 4800, - "rot": 0, - "props": { - "w": 44, - "h": 31, - "fill": "hsl(267 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07534": { - "id": "shape:perf:07534", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 4800, - "rot": 0, - "props": { - "w": 36, - "h": 39, - "fill": "hsl(165 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07535": { - "id": "shape:perf:07535", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 4800, - "rot": 0, - "props": { - "w": 41, - "h": 44, - "fill": "hsl(233 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07536": { - "id": "shape:perf:07536", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 4800, - "rot": 0, - "props": { - "w": 46, - "h": 40, - "fill": "hsl(176 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07537": { - "id": "shape:perf:07537", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 4800, - "rot": 0, - "props": { - "w": 47, - "h": 31, - "fill": "hsl(114 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07538": { - "id": "shape:perf:07538", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 4800, - "rot": 0, - "props": { - "w": 26, - "h": 45, - "fill": "hsl(108 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07539": { - "id": "shape:perf:07539", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 4800, - "rot": 0, - "props": { - "w": 47, - "h": 44, - "fill": "hsl(288 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07540": { - "id": "shape:perf:07540", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 4800, - "rot": 0, - "props": { - "w": 45, - "h": 24, - "fill": "hsl(189 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07541": { - "id": "shape:perf:07541", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 4800, - "rot": 0, - "props": { - "w": 30, - "h": 39, - "fill": "hsl(352 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07542": { - "id": "shape:perf:07542", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 4800, - "rot": 0, - "props": { - "w": 43, - "h": 36, - "fill": "hsl(130 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07543": { - "id": "shape:perf:07543", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 4800, - "rot": 0, - "props": { - "w": 30, - "h": 28, - "fill": "hsl(259 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07544": { - "id": "shape:perf:07544", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 4800, - "rot": 0, - "props": { - "w": 33, - "h": 44, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07545": { - "id": "shape:perf:07545", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 4800, - "rot": 0, - "props": { - "w": 42, - "h": 46, - "fill": "hsl(156 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07546": { - "id": "shape:perf:07546", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 4800, - "rot": 0, - "props": { - "w": 36, - "h": 25, - "fill": "hsl(252 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07547": { - "id": "shape:perf:07547", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 4800, - "rot": 0, - "props": { - "w": 29, - "h": 36, - "fill": "hsl(322 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07548": { - "id": "shape:perf:07548", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 4800, - "rot": 0, - "props": { - "w": 42, - "h": 38, - "fill": "hsl(230 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07549": { - "id": "shape:perf:07549", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 4800, - "rot": 0, - "props": { - "w": 33, - "h": 45, - "fill": "hsl(343 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07550": { - "id": "shape:perf:07550", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 4800, - "rot": 0, - "props": { - "w": 45, - "h": 35, - "fill": "hsl(28 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07551": { - "id": "shape:perf:07551", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 4800, - "rot": 0, - "props": { - "w": 38, - "h": 39, - "fill": "hsl(204 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07552": { - "id": "shape:perf:07552", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 4800, - "rot": 0, - "props": { - "w": 37, - "h": 37, - "fill": "hsl(50 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07553": { - "id": "shape:perf:07553", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 4800, - "rot": 0, - "props": { - "w": 46, - "h": 31, - "fill": "hsl(351 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07554": { - "id": "shape:perf:07554", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 4800, - "rot": 0, - "props": { - "w": 36, - "h": 44, - "fill": "hsl(330 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07555": { - "id": "shape:perf:07555", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 4800, - "rot": 0, - "props": { - "w": 32, - "h": 35, - "fill": "hsl(318 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07556": { - "id": "shape:perf:07556", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 4800, - "rot": 0, - "props": { - "w": 25, - "h": 26, - "fill": "hsl(63 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07557": { - "id": "shape:perf:07557", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 4800, - "rot": 0, - "props": { - "w": 36, - "h": 30, - "fill": "hsl(350 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07558": { - "id": "shape:perf:07558", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 4800, - "rot": 0, - "props": { - "w": 33, - "h": 28, - "fill": "hsl(0 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07559": { - "id": "shape:perf:07559", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 4800, - "rot": 0, - "props": { - "w": 28, - "h": 44, - "fill": "hsl(187 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07560": { - "id": "shape:perf:07560", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 4800, - "rot": 0, - "props": { - "w": 25, - "h": 36, - "fill": "hsl(67 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07561": { - "id": "shape:perf:07561", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 4800, - "rot": 0, - "props": { - "w": 31, - "h": 27, - "fill": "hsl(209 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07562": { - "id": "shape:perf:07562", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 4800, - "rot": 0, - "props": { - "w": 42, - "h": 33, - "fill": "hsl(326 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07563": { - "id": "shape:perf:07563", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 4800, - "rot": 0, - "props": { - "w": 32, - "h": 44, - "fill": "hsl(170 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07564": { - "id": "shape:perf:07564", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 4800, - "rot": 0, - "props": { - "w": 37, - "h": 24, - "fill": "hsl(117 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07565": { - "id": "shape:perf:07565", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 4800, - "rot": 0, - "props": { - "w": 44, - "h": 33, - "fill": "hsl(121 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07566": { - "id": "shape:perf:07566", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 4800, - "rot": 0, - "props": { - "w": 31, - "h": 27, - "fill": "hsl(127 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07567": { - "id": "shape:perf:07567", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 4800, - "rot": 0, - "props": { - "w": 44, - "h": 28, - "fill": "hsl(335 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07568": { - "id": "shape:perf:07568", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 4800, - "rot": 0, - "props": { - "w": 41, - "h": 40, - "fill": "hsl(290 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07569": { - "id": "shape:perf:07569", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 4800, - "rot": 0, - "props": { - "w": 33, - "h": 42, - "fill": "hsl(191 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07570": { - "id": "shape:perf:07570", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 4800, - "rot": 0, - "props": { - "w": 29, - "h": 42, - "fill": "hsl(7 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07571": { - "id": "shape:perf:07571", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 4800, - "rot": 0, - "props": { - "w": 32, - "h": 44, - "fill": "hsl(141 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07572": { - "id": "shape:perf:07572", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 4800, - "rot": 0, - "props": { - "w": 45, - "h": 45, - "fill": "hsl(52 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07573": { - "id": "shape:perf:07573", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 4800, - "rot": 0, - "props": { - "w": 42, - "h": 39, - "fill": "hsl(4 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07574": { - "id": "shape:perf:07574", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 4800, - "rot": 0, - "props": { - "w": 26, - "h": 46, - "fill": "hsl(183 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07575": { - "id": "shape:perf:07575", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 4800, - "rot": 0, - "props": { - "w": 45, - "h": 27, - "fill": "hsl(163 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07576": { - "id": "shape:perf:07576", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 4800, - "rot": 0, - "props": { - "w": 29, - "h": 38, - "fill": "hsl(62 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07577": { - "id": "shape:perf:07577", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 4800, - "rot": 0, - "props": { - "w": 26, - "h": 32, - "fill": "hsl(344 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07578": { - "id": "shape:perf:07578", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 4800, - "rot": 0, - "props": { - "w": 26, - "h": 45, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07579": { - "id": "shape:perf:07579", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 4800, - "rot": 0, - "props": { - "w": 35, - "h": 46, - "fill": "hsl(343 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07580": { - "id": "shape:perf:07580", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 4800, - "rot": 0, - "props": { - "w": 34, - "h": 40, - "fill": "hsl(321 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07581": { - "id": "shape:perf:07581", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 4800, - "rot": 0, - "props": { - "w": 40, - "h": 44, - "fill": "hsl(326 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07582": { - "id": "shape:perf:07582", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 4800, - "rot": 0, - "props": { - "w": 46, - "h": 28, - "fill": "hsl(41 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07583": { - "id": "shape:perf:07583", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 4800, - "rot": 0, - "props": { - "w": 36, - "h": 27, - "fill": "hsl(133 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07584": { - "id": "shape:perf:07584", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 4800, - "rot": 0, - "props": { - "w": 27, - "h": 35, - "fill": "hsl(208 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07585": { - "id": "shape:perf:07585", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 4800, - "rot": 0, - "props": { - "w": 45, - "h": 24, - "fill": "hsl(232 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07586": { - "id": "shape:perf:07586", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 4800, - "rot": 0, - "props": { - "w": 29, - "h": 37, - "fill": "hsl(215 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07587": { - "id": "shape:perf:07587", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 4800, - "rot": 0, - "props": { - "w": 41, - "h": 45, - "fill": "hsl(241 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07588": { - "id": "shape:perf:07588", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 4800, - "rot": 0, - "props": { - "w": 39, - "h": 37, - "fill": "hsl(253 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07589": { - "id": "shape:perf:07589", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 4800, - "rot": 0, - "props": { - "w": 40, - "h": 28, - "fill": "hsl(244 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07590": { - "id": "shape:perf:07590", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 4800, - "rot": 0, - "props": { - "w": 32, - "h": 28, - "fill": "hsl(6 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07591": { - "id": "shape:perf:07591", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 4800, - "rot": 0, - "props": { - "w": 26, - "h": 41, - "fill": "hsl(359 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07592": { - "id": "shape:perf:07592", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 4800, - "rot": 0, - "props": { - "w": 33, - "h": 34, - "fill": "hsl(194 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07593": { - "id": "shape:perf:07593", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 4800, - "rot": 0, - "props": { - "w": 36, - "h": 42, - "fill": "hsl(137 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07594": { - "id": "shape:perf:07594", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 4800, - "rot": 0, - "props": { - "w": 33, - "h": 36, - "fill": "hsl(352 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07595": { - "id": "shape:perf:07595", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 4800, - "rot": 0, - "props": { - "w": 24, - "h": 31, - "fill": "hsl(333 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07596": { - "id": "shape:perf:07596", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 4800, - "rot": 0, - "props": { - "w": 39, - "h": 41, - "fill": "hsl(211 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07597": { - "id": "shape:perf:07597", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 4800, - "rot": 0, - "props": { - "w": 29, - "h": 37, - "fill": "hsl(41 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07598": { - "id": "shape:perf:07598", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 4800, - "rot": 0, - "props": { - "w": 28, - "h": 26, - "fill": "hsl(8 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07599": { - "id": "shape:perf:07599", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 4800, - "rot": 0, - "props": { - "w": 44, - "h": 45, - "fill": "hsl(49 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07600": { - "id": "shape:perf:07600", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 4864, - "rot": 0, - "props": { - "w": 47, - "h": 45, - "fill": "hsl(55 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07601": { - "id": "shape:perf:07601", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 4864, - "rot": 0, - "props": { - "w": 32, - "h": 24, - "fill": "hsl(306 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07602": { - "id": "shape:perf:07602", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 4864, - "rot": 0, - "props": { - "w": 32, - "h": 36, - "fill": "hsl(115 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07603": { - "id": "shape:perf:07603", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 4864, - "rot": 0, - "props": { - "w": 45, - "h": 38, - "fill": "hsl(262 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07604": { - "id": "shape:perf:07604", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 4864, - "rot": 0, - "props": { - "w": 45, - "h": 34, - "fill": "hsl(253 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07605": { - "id": "shape:perf:07605", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 4864, - "rot": 0, - "props": { - "w": 26, - "h": 27, - "fill": "hsl(31 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07606": { - "id": "shape:perf:07606", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 4864, - "rot": 0, - "props": { - "w": 45, - "h": 34, - "fill": "hsl(162 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07607": { - "id": "shape:perf:07607", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 4864, - "rot": 0, - "props": { - "w": 30, - "h": 44, - "fill": "hsl(214 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07608": { - "id": "shape:perf:07608", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 4864, - "rot": 0, - "props": { - "w": 47, - "h": 43, - "fill": "hsl(298 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07609": { - "id": "shape:perf:07609", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 4864, - "rot": 0, - "props": { - "w": 28, - "h": 29, - "fill": "hsl(48 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07610": { - "id": "shape:perf:07610", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 4864, - "rot": 0, - "props": { - "w": 45, - "h": 42, - "fill": "hsl(65 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07611": { - "id": "shape:perf:07611", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 4864, - "rot": 0, - "props": { - "w": 47, - "h": 44, - "fill": "hsl(179 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07612": { - "id": "shape:perf:07612", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 4864, - "rot": 0, - "props": { - "w": 39, - "h": 35, - "fill": "hsl(352 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07613": { - "id": "shape:perf:07613", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 4864, - "rot": 0, - "props": { - "w": 30, - "h": 28, - "fill": "hsl(15 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07614": { - "id": "shape:perf:07614", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 4864, - "rot": 0, - "props": { - "w": 25, - "h": 33, - "fill": "hsl(185 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07615": { - "id": "shape:perf:07615", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 4864, - "rot": 0, - "props": { - "w": 40, - "h": 25, - "fill": "hsl(282 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07616": { - "id": "shape:perf:07616", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 4864, - "rot": 0, - "props": { - "w": 45, - "h": 34, - "fill": "hsl(98 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07617": { - "id": "shape:perf:07617", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 4864, - "rot": 0, - "props": { - "w": 41, - "h": 26, - "fill": "hsl(260 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07618": { - "id": "shape:perf:07618", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 4864, - "rot": 0, - "props": { - "w": 34, - "h": 47, - "fill": "hsl(178 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07619": { - "id": "shape:perf:07619", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 4864, - "rot": 0, - "props": { - "w": 42, - "h": 34, - "fill": "hsl(337 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07620": { - "id": "shape:perf:07620", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 4864, - "rot": 0, - "props": { - "w": 27, - "h": 38, - "fill": "hsl(9 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07621": { - "id": "shape:perf:07621", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 4864, - "rot": 0, - "props": { - "w": 41, - "h": 36, - "fill": "hsl(28 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07622": { - "id": "shape:perf:07622", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 4864, - "rot": 0, - "props": { - "w": 32, - "h": 40, - "fill": "hsl(175 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07623": { - "id": "shape:perf:07623", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 4864, - "rot": 0, - "props": { - "w": 24, - "h": 38, - "fill": "hsl(122 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07624": { - "id": "shape:perf:07624", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 4864, - "rot": 0, - "props": { - "w": 32, - "h": 33, - "fill": "hsl(302 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07625": { - "id": "shape:perf:07625", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 4864, - "rot": 0, - "props": { - "w": 37, - "h": 43, - "fill": "hsl(49 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07626": { - "id": "shape:perf:07626", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 4864, - "rot": 0, - "props": { - "w": 40, - "h": 41, - "fill": "hsl(331 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07627": { - "id": "shape:perf:07627", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 4864, - "rot": 0, - "props": { - "w": 26, - "h": 45, - "fill": "hsl(346 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07628": { - "id": "shape:perf:07628", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 4864, - "rot": 0, - "props": { - "w": 44, - "h": 29, - "fill": "hsl(135 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07629": { - "id": "shape:perf:07629", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 4864, - "rot": 0, - "props": { - "w": 42, - "h": 40, - "fill": "hsl(207 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07630": { - "id": "shape:perf:07630", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 4864, - "rot": 0, - "props": { - "w": 40, - "h": 44, - "fill": "hsl(262 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07631": { - "id": "shape:perf:07631", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 4864, - "rot": 0, - "props": { - "w": 36, - "h": 44, - "fill": "hsl(310 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07632": { - "id": "shape:perf:07632", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 4864, - "rot": 0, - "props": { - "w": 24, - "h": 38, - "fill": "hsl(56 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07633": { - "id": "shape:perf:07633", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 4864, - "rot": 0, - "props": { - "w": 41, - "h": 45, - "fill": "hsl(27 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07634": { - "id": "shape:perf:07634", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 4864, - "rot": 0, - "props": { - "w": 45, - "h": 24, - "fill": "hsl(356 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07635": { - "id": "shape:perf:07635", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 4864, - "rot": 0, - "props": { - "w": 29, - "h": 42, - "fill": "hsl(250 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07636": { - "id": "shape:perf:07636", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 4864, - "rot": 0, - "props": { - "w": 24, - "h": 43, - "fill": "hsl(7 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07637": { - "id": "shape:perf:07637", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 4864, - "rot": 0, - "props": { - "w": 44, - "h": 26, - "fill": "hsl(141 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07638": { - "id": "shape:perf:07638", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 4864, - "rot": 0, - "props": { - "w": 40, - "h": 30, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07639": { - "id": "shape:perf:07639", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 4864, - "rot": 0, - "props": { - "w": 31, - "h": 35, - "fill": "hsl(237 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07640": { - "id": "shape:perf:07640", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 4864, - "rot": 0, - "props": { - "w": 44, - "h": 40, - "fill": "hsl(27 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07641": { - "id": "shape:perf:07641", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 4864, - "rot": 0, - "props": { - "w": 44, - "h": 47, - "fill": "hsl(51 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07642": { - "id": "shape:perf:07642", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 4864, - "rot": 0, - "props": { - "w": 28, - "h": 37, - "fill": "hsl(28 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07643": { - "id": "shape:perf:07643", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 4864, - "rot": 0, - "props": { - "w": 29, - "h": 26, - "fill": "hsl(182 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07644": { - "id": "shape:perf:07644", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 4864, - "rot": 0, - "props": { - "w": 41, - "h": 41, - "fill": "hsl(98 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07645": { - "id": "shape:perf:07645", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 4864, - "rot": 0, - "props": { - "w": 41, - "h": 26, - "fill": "hsl(220 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07646": { - "id": "shape:perf:07646", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 4864, - "rot": 0, - "props": { - "w": 38, - "h": 37, - "fill": "hsl(164 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07647": { - "id": "shape:perf:07647", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 4864, - "rot": 0, - "props": { - "w": 41, - "h": 39, - "fill": "hsl(216 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07648": { - "id": "shape:perf:07648", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 4864, - "rot": 0, - "props": { - "w": 42, - "h": 43, - "fill": "hsl(340 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07649": { - "id": "shape:perf:07649", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 4864, - "rot": 0, - "props": { - "w": 39, - "h": 33, - "fill": "hsl(50 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07650": { - "id": "shape:perf:07650", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 4864, - "rot": 0, - "props": { - "w": 29, - "h": 31, - "fill": "hsl(66 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07651": { - "id": "shape:perf:07651", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 4864, - "rot": 0, - "props": { - "w": 29, - "h": 28, - "fill": "hsl(50 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07652": { - "id": "shape:perf:07652", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 4864, - "rot": 0, - "props": { - "w": 25, - "h": 43, - "fill": "hsl(338 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07653": { - "id": "shape:perf:07653", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 4864, - "rot": 0, - "props": { - "w": 45, - "h": 32, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07654": { - "id": "shape:perf:07654", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 4864, - "rot": 0, - "props": { - "w": 35, - "h": 39, - "fill": "hsl(131 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07655": { - "id": "shape:perf:07655", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 4864, - "rot": 0, - "props": { - "w": 37, - "h": 42, - "fill": "hsl(1 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07656": { - "id": "shape:perf:07656", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 4864, - "rot": 0, - "props": { - "w": 36, - "h": 31, - "fill": "hsl(64 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07657": { - "id": "shape:perf:07657", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 4864, - "rot": 0, - "props": { - "w": 33, - "h": 36, - "fill": "hsl(328 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07658": { - "id": "shape:perf:07658", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 4864, - "rot": 0, - "props": { - "w": 34, - "h": 28, - "fill": "hsl(185 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07659": { - "id": "shape:perf:07659", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 4864, - "rot": 0, - "props": { - "w": 28, - "h": 36, - "fill": "hsl(318 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07660": { - "id": "shape:perf:07660", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 4864, - "rot": 0, - "props": { - "w": 39, - "h": 30, - "fill": "hsl(284 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07661": { - "id": "shape:perf:07661", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 4864, - "rot": 0, - "props": { - "w": 38, - "h": 40, - "fill": "hsl(82 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07662": { - "id": "shape:perf:07662", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 4864, - "rot": 0, - "props": { - "w": 35, - "h": 33, - "fill": "hsl(23 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07663": { - "id": "shape:perf:07663", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 4864, - "rot": 0, - "props": { - "w": 42, - "h": 31, - "fill": "hsl(215 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07664": { - "id": "shape:perf:07664", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 4864, - "rot": 0, - "props": { - "w": 45, - "h": 41, - "fill": "hsl(50 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07665": { - "id": "shape:perf:07665", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 4864, - "rot": 0, - "props": { - "w": 40, - "h": 45, - "fill": "hsl(274 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07666": { - "id": "shape:perf:07666", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 4864, - "rot": 0, - "props": { - "w": 29, - "h": 36, - "fill": "hsl(323 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07667": { - "id": "shape:perf:07667", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 4864, - "rot": 0, - "props": { - "w": 47, - "h": 27, - "fill": "hsl(294 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07668": { - "id": "shape:perf:07668", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 4864, - "rot": 0, - "props": { - "w": 39, - "h": 35, - "fill": "hsl(134 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07669": { - "id": "shape:perf:07669", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 4864, - "rot": 0, - "props": { - "w": 31, - "h": 30, - "fill": "hsl(226 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07670": { - "id": "shape:perf:07670", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 4864, - "rot": 0, - "props": { - "w": 39, - "h": 43, - "fill": "hsl(245 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07671": { - "id": "shape:perf:07671", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 4864, - "rot": 0, - "props": { - "w": 45, - "h": 25, - "fill": "hsl(195 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07672": { - "id": "shape:perf:07672", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 4864, - "rot": 0, - "props": { - "w": 28, - "h": 32, - "fill": "hsl(129 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07673": { - "id": "shape:perf:07673", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 4864, - "rot": 0, - "props": { - "w": 39, - "h": 31, - "fill": "hsl(151 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07674": { - "id": "shape:perf:07674", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 4864, - "rot": 0, - "props": { - "w": 41, - "h": 24, - "fill": "hsl(357 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07675": { - "id": "shape:perf:07675", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 4864, - "rot": 0, - "props": { - "w": 30, - "h": 30, - "fill": "hsl(38 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07676": { - "id": "shape:perf:07676", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 4864, - "rot": 0, - "props": { - "w": 44, - "h": 45, - "fill": "hsl(37 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07677": { - "id": "shape:perf:07677", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 4864, - "rot": 0, - "props": { - "w": 27, - "h": 42, - "fill": "hsl(318 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07678": { - "id": "shape:perf:07678", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 4864, - "rot": 0, - "props": { - "w": 27, - "h": 42, - "fill": "hsl(161 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07679": { - "id": "shape:perf:07679", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 4864, - "rot": 0, - "props": { - "w": 35, - "h": 40, - "fill": "hsl(184 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07680": { - "id": "shape:perf:07680", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 4864, - "rot": 0, - "props": { - "w": 30, - "h": 34, - "fill": "hsl(10 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07681": { - "id": "shape:perf:07681", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 4864, - "rot": 0, - "props": { - "w": 25, - "h": 40, - "fill": "hsl(210 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07682": { - "id": "shape:perf:07682", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 4864, - "rot": 0, - "props": { - "w": 40, - "h": 31, - "fill": "hsl(117 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07683": { - "id": "shape:perf:07683", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 4864, - "rot": 0, - "props": { - "w": 25, - "h": 29, - "fill": "hsl(135 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07684": { - "id": "shape:perf:07684", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 4864, - "rot": 0, - "props": { - "w": 27, - "h": 24, - "fill": "hsl(250 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07685": { - "id": "shape:perf:07685", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 4864, - "rot": 0, - "props": { - "w": 28, - "h": 33, - "fill": "hsl(94 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07686": { - "id": "shape:perf:07686", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 4864, - "rot": 0, - "props": { - "w": 37, - "h": 30, - "fill": "hsl(152 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07687": { - "id": "shape:perf:07687", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 4864, - "rot": 0, - "props": { - "w": 28, - "h": 38, - "fill": "hsl(302 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07688": { - "id": "shape:perf:07688", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 4864, - "rot": 0, - "props": { - "w": 33, - "h": 28, - "fill": "hsl(304 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07689": { - "id": "shape:perf:07689", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 4864, - "rot": 0, - "props": { - "w": 39, - "h": 36, - "fill": "hsl(8 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07690": { - "id": "shape:perf:07690", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 4864, - "rot": 0, - "props": { - "w": 44, - "h": 42, - "fill": "hsl(46 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07691": { - "id": "shape:perf:07691", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 4864, - "rot": 0, - "props": { - "w": 31, - "h": 44, - "fill": "hsl(48 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07692": { - "id": "shape:perf:07692", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 4864, - "rot": 0, - "props": { - "w": 33, - "h": 37, - "fill": "hsl(319 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07693": { - "id": "shape:perf:07693", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 4864, - "rot": 0, - "props": { - "w": 27, - "h": 38, - "fill": "hsl(216 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07694": { - "id": "shape:perf:07694", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 4864, - "rot": 0, - "props": { - "w": 35, - "h": 32, - "fill": "hsl(343 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07695": { - "id": "shape:perf:07695", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 4864, - "rot": 0, - "props": { - "w": 47, - "h": 24, - "fill": "hsl(264 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07696": { - "id": "shape:perf:07696", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 4864, - "rot": 0, - "props": { - "w": 25, - "h": 39, - "fill": "hsl(49 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07697": { - "id": "shape:perf:07697", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 4864, - "rot": 0, - "props": { - "w": 32, - "h": 32, - "fill": "hsl(84 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07698": { - "id": "shape:perf:07698", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 4864, - "rot": 0, - "props": { - "w": 38, - "h": 40, - "fill": "hsl(355 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07699": { - "id": "shape:perf:07699", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 4864, - "rot": 0, - "props": { - "w": 41, - "h": 42, - "fill": "hsl(93 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07700": { - "id": "shape:perf:07700", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 4928, - "rot": 0, - "props": { - "w": 36, - "h": 29, - "fill": "hsl(176 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07701": { - "id": "shape:perf:07701", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 4928, - "rot": 0, - "props": { - "w": 44, - "h": 42, - "fill": "hsl(5 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07702": { - "id": "shape:perf:07702", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 4928, - "rot": 0, - "props": { - "w": 40, - "h": 36, - "fill": "hsl(7 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07703": { - "id": "shape:perf:07703", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 4928, - "rot": 0, - "props": { - "w": 35, - "h": 40, - "fill": "hsl(196 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07704": { - "id": "shape:perf:07704", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 4928, - "rot": 0, - "props": { - "w": 32, - "h": 24, - "fill": "hsl(114 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07705": { - "id": "shape:perf:07705", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 4928, - "rot": 0, - "props": { - "w": 43, - "h": 29, - "fill": "hsl(240 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07706": { - "id": "shape:perf:07706", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 4928, - "rot": 0, - "props": { - "w": 41, - "h": 45, - "fill": "hsl(116 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07707": { - "id": "shape:perf:07707", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 4928, - "rot": 0, - "props": { - "w": 41, - "h": 38, - "fill": "hsl(201 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07708": { - "id": "shape:perf:07708", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 4928, - "rot": 0, - "props": { - "w": 24, - "h": 30, - "fill": "hsl(269 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07709": { - "id": "shape:perf:07709", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 4928, - "rot": 0, - "props": { - "w": 47, - "h": 35, - "fill": "hsl(52 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07710": { - "id": "shape:perf:07710", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 4928, - "rot": 0, - "props": { - "w": 34, - "h": 41, - "fill": "hsl(117 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07711": { - "id": "shape:perf:07711", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 4928, - "rot": 0, - "props": { - "w": 28, - "h": 34, - "fill": "hsl(34 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07712": { - "id": "shape:perf:07712", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 4928, - "rot": 0, - "props": { - "w": 34, - "h": 42, - "fill": "hsl(235 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07713": { - "id": "shape:perf:07713", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 4928, - "rot": 0, - "props": { - "w": 35, - "h": 35, - "fill": "hsl(186 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07714": { - "id": "shape:perf:07714", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 4928, - "rot": 0, - "props": { - "w": 43, - "h": 24, - "fill": "hsl(235 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07715": { - "id": "shape:perf:07715", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 4928, - "rot": 0, - "props": { - "w": 24, - "h": 24, - "fill": "hsl(138 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07716": { - "id": "shape:perf:07716", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 4928, - "rot": 0, - "props": { - "w": 38, - "h": 34, - "fill": "hsl(359 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07717": { - "id": "shape:perf:07717", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 4928, - "rot": 0, - "props": { - "w": 39, - "h": 44, - "fill": "hsl(353 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07718": { - "id": "shape:perf:07718", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 4928, - "rot": 0, - "props": { - "w": 24, - "h": 44, - "fill": "hsl(95 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07719": { - "id": "shape:perf:07719", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 4928, - "rot": 0, - "props": { - "w": 47, - "h": 31, - "fill": "hsl(30 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07720": { - "id": "shape:perf:07720", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 4928, - "rot": 0, - "props": { - "w": 41, - "h": 45, - "fill": "hsl(122 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07721": { - "id": "shape:perf:07721", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 4928, - "rot": 0, - "props": { - "w": 38, - "h": 41, - "fill": "hsl(22 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07722": { - "id": "shape:perf:07722", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 4928, - "rot": 0, - "props": { - "w": 40, - "h": 35, - "fill": "hsl(252 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07723": { - "id": "shape:perf:07723", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 4928, - "rot": 0, - "props": { - "w": 47, - "h": 29, - "fill": "hsl(107 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07724": { - "id": "shape:perf:07724", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 4928, - "rot": 0, - "props": { - "w": 29, - "h": 33, - "fill": "hsl(240 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07725": { - "id": "shape:perf:07725", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 4928, - "rot": 0, - "props": { - "w": 32, - "h": 36, - "fill": "hsl(84 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07726": { - "id": "shape:perf:07726", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 4928, - "rot": 0, - "props": { - "w": 43, - "h": 24, - "fill": "hsl(232 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07727": { - "id": "shape:perf:07727", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 4928, - "rot": 0, - "props": { - "w": 40, - "h": 28, - "fill": "hsl(194 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07728": { - "id": "shape:perf:07728", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 4928, - "rot": 0, - "props": { - "w": 40, - "h": 29, - "fill": "hsl(317 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07729": { - "id": "shape:perf:07729", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 4928, - "rot": 0, - "props": { - "w": 27, - "h": 38, - "fill": "hsl(211 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07730": { - "id": "shape:perf:07730", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 4928, - "rot": 0, - "props": { - "w": 31, - "h": 37, - "fill": "hsl(103 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07731": { - "id": "shape:perf:07731", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 4928, - "rot": 0, - "props": { - "w": 26, - "h": 45, - "fill": "hsl(299 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07732": { - "id": "shape:perf:07732", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 4928, - "rot": 0, - "props": { - "w": 40, - "h": 24, - "fill": "hsl(198 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07733": { - "id": "shape:perf:07733", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 4928, - "rot": 0, - "props": { - "w": 38, - "h": 35, - "fill": "hsl(102 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07734": { - "id": "shape:perf:07734", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 4928, - "rot": 0, - "props": { - "w": 34, - "h": 24, - "fill": "hsl(92 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07735": { - "id": "shape:perf:07735", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 4928, - "rot": 0, - "props": { - "w": 33, - "h": 32, - "fill": "hsl(124 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07736": { - "id": "shape:perf:07736", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 4928, - "rot": 0, - "props": { - "w": 42, - "h": 45, - "fill": "hsl(289 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07737": { - "id": "shape:perf:07737", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 4928, - "rot": 0, - "props": { - "w": 27, - "h": 27, - "fill": "hsl(310 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07738": { - "id": "shape:perf:07738", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 4928, - "rot": 0, - "props": { - "w": 46, - "h": 42, - "fill": "hsl(18 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07739": { - "id": "shape:perf:07739", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 4928, - "rot": 0, - "props": { - "w": 37, - "h": 26, - "fill": "hsl(98 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07740": { - "id": "shape:perf:07740", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 4928, - "rot": 0, - "props": { - "w": 25, - "h": 43, - "fill": "hsl(157 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07741": { - "id": "shape:perf:07741", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 4928, - "rot": 0, - "props": { - "w": 24, - "h": 40, - "fill": "hsl(250 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07742": { - "id": "shape:perf:07742", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 4928, - "rot": 0, - "props": { - "w": 34, - "h": 42, - "fill": "hsl(91 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07743": { - "id": "shape:perf:07743", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 4928, - "rot": 0, - "props": { - "w": 29, - "h": 34, - "fill": "hsl(295 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07744": { - "id": "shape:perf:07744", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 4928, - "rot": 0, - "props": { - "w": 47, - "h": 39, - "fill": "hsl(237 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07745": { - "id": "shape:perf:07745", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 4928, - "rot": 0, - "props": { - "w": 39, - "h": 28, - "fill": "hsl(57 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07746": { - "id": "shape:perf:07746", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 4928, - "rot": 0, - "props": { - "w": 39, - "h": 24, - "fill": "hsl(353 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07747": { - "id": "shape:perf:07747", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 4928, - "rot": 0, - "props": { - "w": 26, - "h": 26, - "fill": "hsl(193 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07748": { - "id": "shape:perf:07748", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 4928, - "rot": 0, - "props": { - "w": 44, - "h": 33, - "fill": "hsl(3 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07749": { - "id": "shape:perf:07749", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 4928, - "rot": 0, - "props": { - "w": 27, - "h": 39, - "fill": "hsl(97 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07750": { - "id": "shape:perf:07750", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 4928, - "rot": 0, - "props": { - "w": 27, - "h": 45, - "fill": "hsl(117 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07751": { - "id": "shape:perf:07751", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 4928, - "rot": 0, - "props": { - "w": 46, - "h": 27, - "fill": "hsl(132 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07752": { - "id": "shape:perf:07752", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 4928, - "rot": 0, - "props": { - "w": 28, - "h": 34, - "fill": "hsl(129 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07753": { - "id": "shape:perf:07753", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 4928, - "rot": 0, - "props": { - "w": 26, - "h": 35, - "fill": "hsl(315 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07754": { - "id": "shape:perf:07754", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 4928, - "rot": 0, - "props": { - "w": 25, - "h": 47, - "fill": "hsl(272 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07755": { - "id": "shape:perf:07755", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 4928, - "rot": 0, - "props": { - "w": 31, - "h": 43, - "fill": "hsl(36 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07756": { - "id": "shape:perf:07756", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 4928, - "rot": 0, - "props": { - "w": 28, - "h": 24, - "fill": "hsl(33 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07757": { - "id": "shape:perf:07757", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 4928, - "rot": 0, - "props": { - "w": 35, - "h": 39, - "fill": "hsl(246 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07758": { - "id": "shape:perf:07758", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 4928, - "rot": 0, - "props": { - "w": 43, - "h": 32, - "fill": "hsl(256 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07759": { - "id": "shape:perf:07759", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 4928, - "rot": 0, - "props": { - "w": 40, - "h": 34, - "fill": "hsl(65 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07760": { - "id": "shape:perf:07760", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 4928, - "rot": 0, - "props": { - "w": 34, - "h": 46, - "fill": "hsl(291 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07761": { - "id": "shape:perf:07761", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 4928, - "rot": 0, - "props": { - "w": 37, - "h": 38, - "fill": "hsl(243 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07762": { - "id": "shape:perf:07762", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 4928, - "rot": 0, - "props": { - "w": 35, - "h": 36, - "fill": "hsl(323 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07763": { - "id": "shape:perf:07763", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 4928, - "rot": 0, - "props": { - "w": 41, - "h": 45, - "fill": "hsl(352 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07764": { - "id": "shape:perf:07764", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 4928, - "rot": 0, - "props": { - "w": 37, - "h": 28, - "fill": "hsl(69 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07765": { - "id": "shape:perf:07765", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 4928, - "rot": 0, - "props": { - "w": 39, - "h": 41, - "fill": "hsl(247 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07766": { - "id": "shape:perf:07766", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 4928, - "rot": 0, - "props": { - "w": 28, - "h": 26, - "fill": "hsl(355 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07767": { - "id": "shape:perf:07767", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 4928, - "rot": 0, - "props": { - "w": 40, - "h": 46, - "fill": "hsl(7 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07768": { - "id": "shape:perf:07768", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 4928, - "rot": 0, - "props": { - "w": 24, - "h": 29, - "fill": "hsl(311 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07769": { - "id": "shape:perf:07769", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 4928, - "rot": 0, - "props": { - "w": 27, - "h": 39, - "fill": "hsl(84 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07770": { - "id": "shape:perf:07770", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 4928, - "rot": 0, - "props": { - "w": 33, - "h": 24, - "fill": "hsl(265 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07771": { - "id": "shape:perf:07771", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 4928, - "rot": 0, - "props": { - "w": 34, - "h": 34, - "fill": "hsl(283 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07772": { - "id": "shape:perf:07772", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 4928, - "rot": 0, - "props": { - "w": 39, - "h": 32, - "fill": "hsl(128 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07773": { - "id": "shape:perf:07773", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 4928, - "rot": 0, - "props": { - "w": 36, - "h": 42, - "fill": "hsl(306 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07774": { - "id": "shape:perf:07774", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 4928, - "rot": 0, - "props": { - "w": 31, - "h": 45, - "fill": "hsl(258 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07775": { - "id": "shape:perf:07775", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 4928, - "rot": 0, - "props": { - "w": 31, - "h": 46, - "fill": "hsl(16 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07776": { - "id": "shape:perf:07776", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 4928, - "rot": 0, - "props": { - "w": 26, - "h": 37, - "fill": "hsl(208 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07777": { - "id": "shape:perf:07777", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 4928, - "rot": 0, - "props": { - "w": 32, - "h": 47, - "fill": "hsl(182 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07778": { - "id": "shape:perf:07778", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 4928, - "rot": 0, - "props": { - "w": 24, - "h": 25, - "fill": "hsl(71 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07779": { - "id": "shape:perf:07779", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 4928, - "rot": 0, - "props": { - "w": 27, - "h": 30, - "fill": "hsl(308 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07780": { - "id": "shape:perf:07780", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 4928, - "rot": 0, - "props": { - "w": 41, - "h": 36, - "fill": "hsl(121 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07781": { - "id": "shape:perf:07781", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 4928, - "rot": 0, - "props": { - "w": 33, - "h": 27, - "fill": "hsl(318 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07782": { - "id": "shape:perf:07782", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 4928, - "rot": 0, - "props": { - "w": 42, - "h": 46, - "fill": "hsl(312 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07783": { - "id": "shape:perf:07783", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 4928, - "rot": 0, - "props": { - "w": 41, - "h": 29, - "fill": "hsl(254 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07784": { - "id": "shape:perf:07784", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 4928, - "rot": 0, - "props": { - "w": 38, - "h": 42, - "fill": "hsl(290 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07785": { - "id": "shape:perf:07785", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 4928, - "rot": 0, - "props": { - "w": 41, - "h": 31, - "fill": "hsl(211 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07786": { - "id": "shape:perf:07786", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 4928, - "rot": 0, - "props": { - "w": 37, - "h": 47, - "fill": "hsl(140 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07787": { - "id": "shape:perf:07787", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 4928, - "rot": 0, - "props": { - "w": 45, - "h": 30, - "fill": "hsl(147 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07788": { - "id": "shape:perf:07788", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 4928, - "rot": 0, - "props": { - "w": 24, - "h": 29, - "fill": "hsl(26 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07789": { - "id": "shape:perf:07789", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 4928, - "rot": 0, - "props": { - "w": 28, - "h": 27, - "fill": "hsl(191 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07790": { - "id": "shape:perf:07790", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 4928, - "rot": 0, - "props": { - "w": 46, - "h": 44, - "fill": "hsl(21 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07791": { - "id": "shape:perf:07791", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 4928, - "rot": 0, - "props": { - "w": 24, - "h": 44, - "fill": "hsl(255 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07792": { - "id": "shape:perf:07792", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 4928, - "rot": 0, - "props": { - "w": 39, - "h": 39, - "fill": "hsl(23 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07793": { - "id": "shape:perf:07793", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 4928, - "rot": 0, - "props": { - "w": 28, - "h": 29, - "fill": "hsl(44 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07794": { - "id": "shape:perf:07794", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 4928, - "rot": 0, - "props": { - "w": 32, - "h": 33, - "fill": "hsl(359 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07795": { - "id": "shape:perf:07795", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 4928, - "rot": 0, - "props": { - "w": 31, - "h": 35, - "fill": "hsl(285 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07796": { - "id": "shape:perf:07796", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 4928, - "rot": 0, - "props": { - "w": 42, - "h": 28, - "fill": "hsl(181 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07797": { - "id": "shape:perf:07797", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 4928, - "rot": 0, - "props": { - "w": 46, - "h": 36, - "fill": "hsl(356 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07798": { - "id": "shape:perf:07798", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 4928, - "rot": 0, - "props": { - "w": 45, - "h": 40, - "fill": "hsl(230 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07799": { - "id": "shape:perf:07799", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 4928, - "rot": 0, - "props": { - "w": 29, - "h": 32, - "fill": "hsl(13 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07800": { - "id": "shape:perf:07800", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 4992, - "rot": 0, - "props": { - "w": 39, - "h": 30, - "fill": "hsl(271 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07801": { - "id": "shape:perf:07801", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 4992, - "rot": 0, - "props": { - "w": 44, - "h": 44, - "fill": "hsl(103 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07802": { - "id": "shape:perf:07802", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 4992, - "rot": 0, - "props": { - "w": 41, - "h": 24, - "fill": "hsl(186 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07803": { - "id": "shape:perf:07803", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 4992, - "rot": 0, - "props": { - "w": 34, - "h": 46, - "fill": "hsl(285 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07804": { - "id": "shape:perf:07804", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 4992, - "rot": 0, - "props": { - "w": 29, - "h": 33, - "fill": "hsl(233 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07805": { - "id": "shape:perf:07805", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 4992, - "rot": 0, - "props": { - "w": 26, - "h": 32, - "fill": "hsl(338 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07806": { - "id": "shape:perf:07806", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 4992, - "rot": 0, - "props": { - "w": 35, - "h": 41, - "fill": "hsl(194 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07807": { - "id": "shape:perf:07807", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 4992, - "rot": 0, - "props": { - "w": 34, - "h": 34, - "fill": "hsl(8 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07808": { - "id": "shape:perf:07808", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 4992, - "rot": 0, - "props": { - "w": 38, - "h": 32, - "fill": "hsl(237 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07809": { - "id": "shape:perf:07809", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 4992, - "rot": 0, - "props": { - "w": 37, - "h": 45, - "fill": "hsl(110 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07810": { - "id": "shape:perf:07810", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 4992, - "rot": 0, - "props": { - "w": 45, - "h": 35, - "fill": "hsl(100 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07811": { - "id": "shape:perf:07811", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 4992, - "rot": 0, - "props": { - "w": 26, - "h": 36, - "fill": "hsl(0 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07812": { - "id": "shape:perf:07812", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 4992, - "rot": 0, - "props": { - "w": 32, - "h": 43, - "fill": "hsl(16 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07813": { - "id": "shape:perf:07813", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 4992, - "rot": 0, - "props": { - "w": 25, - "h": 32, - "fill": "hsl(35 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07814": { - "id": "shape:perf:07814", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 4992, - "rot": 0, - "props": { - "w": 37, - "h": 41, - "fill": "hsl(350 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07815": { - "id": "shape:perf:07815", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 4992, - "rot": 0, - "props": { - "w": 43, - "h": 41, - "fill": "hsl(186 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07816": { - "id": "shape:perf:07816", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 4992, - "rot": 0, - "props": { - "w": 46, - "h": 47, - "fill": "hsl(283 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07817": { - "id": "shape:perf:07817", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 4992, - "rot": 0, - "props": { - "w": 39, - "h": 28, - "fill": "hsl(208 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07818": { - "id": "shape:perf:07818", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 4992, - "rot": 0, - "props": { - "w": 30, - "h": 24, - "fill": "hsl(100 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07819": { - "id": "shape:perf:07819", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 4992, - "rot": 0, - "props": { - "w": 44, - "h": 27, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07820": { - "id": "shape:perf:07820", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 4992, - "rot": 0, - "props": { - "w": 34, - "h": 43, - "fill": "hsl(172 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07821": { - "id": "shape:perf:07821", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 4992, - "rot": 0, - "props": { - "w": 36, - "h": 34, - "fill": "hsl(128 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07822": { - "id": "shape:perf:07822", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 4992, - "rot": 0, - "props": { - "w": 47, - "h": 42, - "fill": "hsl(333 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07823": { - "id": "shape:perf:07823", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 4992, - "rot": 0, - "props": { - "w": 26, - "h": 47, - "fill": "hsl(27 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07824": { - "id": "shape:perf:07824", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 4992, - "rot": 0, - "props": { - "w": 27, - "h": 44, - "fill": "hsl(176 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07825": { - "id": "shape:perf:07825", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 4992, - "rot": 0, - "props": { - "w": 45, - "h": 28, - "fill": "hsl(114 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07826": { - "id": "shape:perf:07826", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 4992, - "rot": 0, - "props": { - "w": 47, - "h": 34, - "fill": "hsl(305 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07827": { - "id": "shape:perf:07827", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 4992, - "rot": 0, - "props": { - "w": 35, - "h": 34, - "fill": "hsl(359 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07828": { - "id": "shape:perf:07828", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 4992, - "rot": 0, - "props": { - "w": 33, - "h": 46, - "fill": "hsl(8 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07829": { - "id": "shape:perf:07829", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 4992, - "rot": 0, - "props": { - "w": 30, - "h": 31, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07830": { - "id": "shape:perf:07830", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 4992, - "rot": 0, - "props": { - "w": 32, - "h": 43, - "fill": "hsl(167 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07831": { - "id": "shape:perf:07831", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 4992, - "rot": 0, - "props": { - "w": 38, - "h": 35, - "fill": "hsl(88 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07832": { - "id": "shape:perf:07832", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 4992, - "rot": 0, - "props": { - "w": 34, - "h": 31, - "fill": "hsl(335 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07833": { - "id": "shape:perf:07833", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 4992, - "rot": 0, - "props": { - "w": 26, - "h": 24, - "fill": "hsl(283 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07834": { - "id": "shape:perf:07834", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 4992, - "rot": 0, - "props": { - "w": 47, - "h": 26, - "fill": "hsl(39 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07835": { - "id": "shape:perf:07835", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 4992, - "rot": 0, - "props": { - "w": 27, - "h": 41, - "fill": "hsl(41 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07836": { - "id": "shape:perf:07836", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 4992, - "rot": 0, - "props": { - "w": 26, - "h": 29, - "fill": "hsl(144 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07837": { - "id": "shape:perf:07837", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 4992, - "rot": 0, - "props": { - "w": 42, - "h": 47, - "fill": "hsl(112 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07838": { - "id": "shape:perf:07838", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 4992, - "rot": 0, - "props": { - "w": 34, - "h": 38, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07839": { - "id": "shape:perf:07839", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 4992, - "rot": 0, - "props": { - "w": 42, - "h": 24, - "fill": "hsl(321 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07840": { - "id": "shape:perf:07840", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 4992, - "rot": 0, - "props": { - "w": 47, - "h": 37, - "fill": "hsl(304 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07841": { - "id": "shape:perf:07841", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 4992, - "rot": 0, - "props": { - "w": 32, - "h": 43, - "fill": "hsl(31 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07842": { - "id": "shape:perf:07842", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 4992, - "rot": 0, - "props": { - "w": 26, - "h": 46, - "fill": "hsl(95 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07843": { - "id": "shape:perf:07843", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 4992, - "rot": 0, - "props": { - "w": 44, - "h": 24, - "fill": "hsl(96 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07844": { - "id": "shape:perf:07844", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 4992, - "rot": 0, - "props": { - "w": 27, - "h": 33, - "fill": "hsl(235 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07845": { - "id": "shape:perf:07845", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 4992, - "rot": 0, - "props": { - "w": 40, - "h": 44, - "fill": "hsl(252 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07846": { - "id": "shape:perf:07846", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 4992, - "rot": 0, - "props": { - "w": 43, - "h": 26, - "fill": "hsl(203 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07847": { - "id": "shape:perf:07847", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 4992, - "rot": 0, - "props": { - "w": 35, - "h": 41, - "fill": "hsl(214 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07848": { - "id": "shape:perf:07848", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 4992, - "rot": 0, - "props": { - "w": 26, - "h": 24, - "fill": "hsl(218 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07849": { - "id": "shape:perf:07849", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 4992, - "rot": 0, - "props": { - "w": 41, - "h": 33, - "fill": "hsl(180 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07850": { - "id": "shape:perf:07850", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 4992, - "rot": 0, - "props": { - "w": 40, - "h": 36, - "fill": "hsl(244 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07851": { - "id": "shape:perf:07851", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 4992, - "rot": 0, - "props": { - "w": 42, - "h": 37, - "fill": "hsl(252 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07852": { - "id": "shape:perf:07852", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 4992, - "rot": 0, - "props": { - "w": 44, - "h": 27, - "fill": "hsl(43 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07853": { - "id": "shape:perf:07853", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 4992, - "rot": 0, - "props": { - "w": 47, - "h": 45, - "fill": "hsl(277 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07854": { - "id": "shape:perf:07854", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 4992, - "rot": 0, - "props": { - "w": 44, - "h": 46, - "fill": "hsl(312 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07855": { - "id": "shape:perf:07855", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 4992, - "rot": 0, - "props": { - "w": 36, - "h": 44, - "fill": "hsl(41 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07856": { - "id": "shape:perf:07856", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 4992, - "rot": 0, - "props": { - "w": 32, - "h": 35, - "fill": "hsl(226 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07857": { - "id": "shape:perf:07857", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 4992, - "rot": 0, - "props": { - "w": 35, - "h": 24, - "fill": "hsl(147 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07858": { - "id": "shape:perf:07858", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 4992, - "rot": 0, - "props": { - "w": 34, - "h": 28, - "fill": "hsl(282 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07859": { - "id": "shape:perf:07859", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 4992, - "rot": 0, - "props": { - "w": 47, - "h": 44, - "fill": "hsl(347 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07860": { - "id": "shape:perf:07860", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 4992, - "rot": 0, - "props": { - "w": 44, - "h": 33, - "fill": "hsl(267 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07861": { - "id": "shape:perf:07861", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 4992, - "rot": 0, - "props": { - "w": 34, - "h": 31, - "fill": "hsl(332 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07862": { - "id": "shape:perf:07862", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 4992, - "rot": 0, - "props": { - "w": 46, - "h": 40, - "fill": "hsl(194 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07863": { - "id": "shape:perf:07863", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 4992, - "rot": 0, - "props": { - "w": 28, - "h": 27, - "fill": "hsl(323 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07864": { - "id": "shape:perf:07864", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 4992, - "rot": 0, - "props": { - "w": 25, - "h": 36, - "fill": "hsl(20 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07865": { - "id": "shape:perf:07865", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 4992, - "rot": 0, - "props": { - "w": 29, - "h": 44, - "fill": "hsl(275 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07866": { - "id": "shape:perf:07866", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 4992, - "rot": 0, - "props": { - "w": 38, - "h": 30, - "fill": "hsl(290 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07867": { - "id": "shape:perf:07867", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 4992, - "rot": 0, - "props": { - "w": 41, - "h": 38, - "fill": "hsl(259 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07868": { - "id": "shape:perf:07868", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 4992, - "rot": 0, - "props": { - "w": 34, - "h": 47, - "fill": "hsl(237 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07869": { - "id": "shape:perf:07869", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 4992, - "rot": 0, - "props": { - "w": 44, - "h": 33, - "fill": "hsl(118 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07870": { - "id": "shape:perf:07870", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 4992, - "rot": 0, - "props": { - "w": 47, - "h": 33, - "fill": "hsl(64 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07871": { - "id": "shape:perf:07871", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 4992, - "rot": 0, - "props": { - "w": 44, - "h": 25, - "fill": "hsl(247 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07872": { - "id": "shape:perf:07872", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 4992, - "rot": 0, - "props": { - "w": 25, - "h": 27, - "fill": "hsl(282 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07873": { - "id": "shape:perf:07873", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 4992, - "rot": 0, - "props": { - "w": 47, - "h": 34, - "fill": "hsl(46 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07874": { - "id": "shape:perf:07874", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 4992, - "rot": 0, - "props": { - "w": 32, - "h": 34, - "fill": "hsl(103 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07875": { - "id": "shape:perf:07875", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 4992, - "rot": 0, - "props": { - "w": 33, - "h": 27, - "fill": "hsl(215 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07876": { - "id": "shape:perf:07876", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 4992, - "rot": 0, - "props": { - "w": 45, - "h": 42, - "fill": "hsl(47 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07877": { - "id": "shape:perf:07877", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 4992, - "rot": 0, - "props": { - "w": 40, - "h": 43, - "fill": "hsl(357 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07878": { - "id": "shape:perf:07878", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 4992, - "rot": 0, - "props": { - "w": 36, - "h": 28, - "fill": "hsl(139 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07879": { - "id": "shape:perf:07879", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 4992, - "rot": 0, - "props": { - "w": 39, - "h": 29, - "fill": "hsl(49 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07880": { - "id": "shape:perf:07880", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 4992, - "rot": 0, - "props": { - "w": 28, - "h": 46, - "fill": "hsl(281 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07881": { - "id": "shape:perf:07881", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 4992, - "rot": 0, - "props": { - "w": 32, - "h": 34, - "fill": "hsl(96 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07882": { - "id": "shape:perf:07882", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 4992, - "rot": 0, - "props": { - "w": 42, - "h": 43, - "fill": "hsl(152 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07883": { - "id": "shape:perf:07883", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 4992, - "rot": 0, - "props": { - "w": 44, - "h": 35, - "fill": "hsl(43 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07884": { - "id": "shape:perf:07884", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 4992, - "rot": 0, - "props": { - "w": 38, - "h": 34, - "fill": "hsl(279 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07885": { - "id": "shape:perf:07885", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 4992, - "rot": 0, - "props": { - "w": 32, - "h": 47, - "fill": "hsl(141 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07886": { - "id": "shape:perf:07886", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 4992, - "rot": 0, - "props": { - "w": 39, - "h": 44, - "fill": "hsl(279 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07887": { - "id": "shape:perf:07887", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 4992, - "rot": 0, - "props": { - "w": 27, - "h": 45, - "fill": "hsl(198 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07888": { - "id": "shape:perf:07888", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 4992, - "rot": 0, - "props": { - "w": 31, - "h": 24, - "fill": "hsl(264 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07889": { - "id": "shape:perf:07889", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 4992, - "rot": 0, - "props": { - "w": 26, - "h": 25, - "fill": "hsl(116 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07890": { - "id": "shape:perf:07890", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 4992, - "rot": 0, - "props": { - "w": 41, - "h": 39, - "fill": "hsl(80 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07891": { - "id": "shape:perf:07891", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 4992, - "rot": 0, - "props": { - "w": 35, - "h": 46, - "fill": "hsl(254 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07892": { - "id": "shape:perf:07892", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 4992, - "rot": 0, - "props": { - "w": 41, - "h": 47, - "fill": "hsl(41 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07893": { - "id": "shape:perf:07893", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 4992, - "rot": 0, - "props": { - "w": 25, - "h": 28, - "fill": "hsl(239 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07894": { - "id": "shape:perf:07894", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 4992, - "rot": 0, - "props": { - "w": 41, - "h": 38, - "fill": "hsl(281 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07895": { - "id": "shape:perf:07895", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 4992, - "rot": 0, - "props": { - "w": 25, - "h": 24, - "fill": "hsl(227 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07896": { - "id": "shape:perf:07896", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 4992, - "rot": 0, - "props": { - "w": 33, - "h": 31, - "fill": "hsl(356 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07897": { - "id": "shape:perf:07897", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 4992, - "rot": 0, - "props": { - "w": 31, - "h": 33, - "fill": "hsl(188 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07898": { - "id": "shape:perf:07898", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 4992, - "rot": 0, - "props": { - "w": 36, - "h": 39, - "fill": "hsl(173 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07899": { - "id": "shape:perf:07899", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 4992, - "rot": 0, - "props": { - "w": 44, - "h": 47, - "fill": "hsl(258 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07900": { - "id": "shape:perf:07900", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 5056, - "rot": 0, - "props": { - "w": 27, - "h": 35, - "fill": "hsl(152 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07901": { - "id": "shape:perf:07901", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 5056, - "rot": 0, - "props": { - "w": 29, - "h": 32, - "fill": "hsl(133 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07902": { - "id": "shape:perf:07902", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 5056, - "rot": 0, - "props": { - "w": 27, - "h": 38, - "fill": "hsl(98 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07903": { - "id": "shape:perf:07903", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 5056, - "rot": 0, - "props": { - "w": 34, - "h": 38, - "fill": "hsl(117 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07904": { - "id": "shape:perf:07904", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 5056, - "rot": 0, - "props": { - "w": 36, - "h": 37, - "fill": "hsl(297 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07905": { - "id": "shape:perf:07905", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 5056, - "rot": 0, - "props": { - "w": 43, - "h": 29, - "fill": "hsl(176 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07906": { - "id": "shape:perf:07906", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 5056, - "rot": 0, - "props": { - "w": 35, - "h": 33, - "fill": "hsl(197 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07907": { - "id": "shape:perf:07907", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 5056, - "rot": 0, - "props": { - "w": 40, - "h": 37, - "fill": "hsl(205 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07908": { - "id": "shape:perf:07908", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 5056, - "rot": 0, - "props": { - "w": 41, - "h": 38, - "fill": "hsl(324 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07909": { - "id": "shape:perf:07909", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 5056, - "rot": 0, - "props": { - "w": 34, - "h": 46, - "fill": "hsl(286 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07910": { - "id": "shape:perf:07910", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 5056, - "rot": 0, - "props": { - "w": 34, - "h": 24, - "fill": "hsl(3 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07911": { - "id": "shape:perf:07911", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 5056, - "rot": 0, - "props": { - "w": 27, - "h": 29, - "fill": "hsl(260 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07912": { - "id": "shape:perf:07912", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 5056, - "rot": 0, - "props": { - "w": 31, - "h": 43, - "fill": "hsl(8 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07913": { - "id": "shape:perf:07913", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 5056, - "rot": 0, - "props": { - "w": 40, - "h": 31, - "fill": "hsl(23 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07914": { - "id": "shape:perf:07914", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 5056, - "rot": 0, - "props": { - "w": 46, - "h": 27, - "fill": "hsl(331 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07915": { - "id": "shape:perf:07915", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 5056, - "rot": 0, - "props": { - "w": 40, - "h": 33, - "fill": "hsl(328 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07916": { - "id": "shape:perf:07916", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 5056, - "rot": 0, - "props": { - "w": 43, - "h": 40, - "fill": "hsl(60 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07917": { - "id": "shape:perf:07917", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 5056, - "rot": 0, - "props": { - "w": 45, - "h": 31, - "fill": "hsl(308 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07918": { - "id": "shape:perf:07918", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 5056, - "rot": 0, - "props": { - "w": 41, - "h": 39, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07919": { - "id": "shape:perf:07919", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 5056, - "rot": 0, - "props": { - "w": 26, - "h": 24, - "fill": "hsl(1 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07920": { - "id": "shape:perf:07920", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 5056, - "rot": 0, - "props": { - "w": 37, - "h": 34, - "fill": "hsl(272 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07921": { - "id": "shape:perf:07921", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 5056, - "rot": 0, - "props": { - "w": 46, - "h": 36, - "fill": "hsl(266 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07922": { - "id": "shape:perf:07922", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 5056, - "rot": 0, - "props": { - "w": 44, - "h": 29, - "fill": "hsl(236 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07923": { - "id": "shape:perf:07923", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 5056, - "rot": 0, - "props": { - "w": 40, - "h": 27, - "fill": "hsl(314 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07924": { - "id": "shape:perf:07924", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 5056, - "rot": 0, - "props": { - "w": 27, - "h": 30, - "fill": "hsl(13 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07925": { - "id": "shape:perf:07925", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 5056, - "rot": 0, - "props": { - "w": 39, - "h": 28, - "fill": "hsl(187 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07926": { - "id": "shape:perf:07926", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 5056, - "rot": 0, - "props": { - "w": 38, - "h": 26, - "fill": "hsl(331 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07927": { - "id": "shape:perf:07927", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 5056, - "rot": 0, - "props": { - "w": 28, - "h": 45, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07928": { - "id": "shape:perf:07928", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 5056, - "rot": 0, - "props": { - "w": 33, - "h": 45, - "fill": "hsl(288 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07929": { - "id": "shape:perf:07929", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 5056, - "rot": 0, - "props": { - "w": 24, - "h": 45, - "fill": "hsl(224 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07930": { - "id": "shape:perf:07930", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 5056, - "rot": 0, - "props": { - "w": 28, - "h": 26, - "fill": "hsl(209 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07931": { - "id": "shape:perf:07931", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 5056, - "rot": 0, - "props": { - "w": 39, - "h": 25, - "fill": "hsl(127 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07932": { - "id": "shape:perf:07932", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 5056, - "rot": 0, - "props": { - "w": 26, - "h": 32, - "fill": "hsl(230 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07933": { - "id": "shape:perf:07933", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 5056, - "rot": 0, - "props": { - "w": 24, - "h": 41, - "fill": "hsl(298 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07934": { - "id": "shape:perf:07934", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 5056, - "rot": 0, - "props": { - "w": 25, - "h": 37, - "fill": "hsl(102 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07935": { - "id": "shape:perf:07935", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 5056, - "rot": 0, - "props": { - "w": 37, - "h": 47, - "fill": "hsl(225 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07936": { - "id": "shape:perf:07936", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 5056, - "rot": 0, - "props": { - "w": 34, - "h": 42, - "fill": "hsl(9 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07937": { - "id": "shape:perf:07937", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 5056, - "rot": 0, - "props": { - "w": 32, - "h": 38, - "fill": "hsl(353 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07938": { - "id": "shape:perf:07938", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 5056, - "rot": 0, - "props": { - "w": 26, - "h": 40, - "fill": "hsl(117 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07939": { - "id": "shape:perf:07939", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 5056, - "rot": 0, - "props": { - "w": 40, - "h": 24, - "fill": "hsl(146 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07940": { - "id": "shape:perf:07940", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 5056, - "rot": 0, - "props": { - "w": 26, - "h": 46, - "fill": "hsl(303 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07941": { - "id": "shape:perf:07941", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 5056, - "rot": 0, - "props": { - "w": 26, - "h": 37, - "fill": "hsl(161 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07942": { - "id": "shape:perf:07942", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 5056, - "rot": 0, - "props": { - "w": 46, - "h": 46, - "fill": "hsl(301 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07943": { - "id": "shape:perf:07943", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 5056, - "rot": 0, - "props": { - "w": 34, - "h": 39, - "fill": "hsl(117 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07944": { - "id": "shape:perf:07944", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 5056, - "rot": 0, - "props": { - "w": 41, - "h": 39, - "fill": "hsl(90 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07945": { - "id": "shape:perf:07945", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 5056, - "rot": 0, - "props": { - "w": 34, - "h": 28, - "fill": "hsl(119 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07946": { - "id": "shape:perf:07946", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 5056, - "rot": 0, - "props": { - "w": 25, - "h": 37, - "fill": "hsl(58 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07947": { - "id": "shape:perf:07947", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 5056, - "rot": 0, - "props": { - "w": 35, - "h": 40, - "fill": "hsl(232 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07948": { - "id": "shape:perf:07948", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 5056, - "rot": 0, - "props": { - "w": 33, - "h": 39, - "fill": "hsl(349 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07949": { - "id": "shape:perf:07949", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 5056, - "rot": 0, - "props": { - "w": 29, - "h": 35, - "fill": "hsl(294 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07950": { - "id": "shape:perf:07950", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 5056, - "rot": 0, - "props": { - "w": 38, - "h": 25, - "fill": "hsl(250 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07951": { - "id": "shape:perf:07951", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 5056, - "rot": 0, - "props": { - "w": 43, - "h": 39, - "fill": "hsl(353 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07952": { - "id": "shape:perf:07952", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 5056, - "rot": 0, - "props": { - "w": 31, - "h": 30, - "fill": "hsl(128 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07953": { - "id": "shape:perf:07953", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 5056, - "rot": 0, - "props": { - "w": 32, - "h": 32, - "fill": "hsl(39 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07954": { - "id": "shape:perf:07954", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 5056, - "rot": 0, - "props": { - "w": 40, - "h": 41, - "fill": "hsl(235 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07955": { - "id": "shape:perf:07955", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 5056, - "rot": 0, - "props": { - "w": 33, - "h": 27, - "fill": "hsl(271 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07956": { - "id": "shape:perf:07956", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 5056, - "rot": 0, - "props": { - "w": 34, - "h": 27, - "fill": "hsl(310 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07957": { - "id": "shape:perf:07957", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 5056, - "rot": 0, - "props": { - "w": 37, - "h": 27, - "fill": "hsl(300 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07958": { - "id": "shape:perf:07958", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 5056, - "rot": 0, - "props": { - "w": 25, - "h": 41, - "fill": "hsl(188 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07959": { - "id": "shape:perf:07959", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 5056, - "rot": 0, - "props": { - "w": 28, - "h": 33, - "fill": "hsl(300 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07960": { - "id": "shape:perf:07960", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 5056, - "rot": 0, - "props": { - "w": 24, - "h": 40, - "fill": "hsl(272 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07961": { - "id": "shape:perf:07961", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 5056, - "rot": 0, - "props": { - "w": 38, - "h": 26, - "fill": "hsl(322 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07962": { - "id": "shape:perf:07962", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 5056, - "rot": 0, - "props": { - "w": 34, - "h": 34, - "fill": "hsl(49 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07963": { - "id": "shape:perf:07963", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 5056, - "rot": 0, - "props": { - "w": 42, - "h": 43, - "fill": "hsl(7 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07964": { - "id": "shape:perf:07964", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 5056, - "rot": 0, - "props": { - "w": 44, - "h": 45, - "fill": "hsl(78 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07965": { - "id": "shape:perf:07965", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 5056, - "rot": 0, - "props": { - "w": 42, - "h": 33, - "fill": "hsl(40 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07966": { - "id": "shape:perf:07966", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 5056, - "rot": 0, - "props": { - "w": 27, - "h": 47, - "fill": "hsl(241 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07967": { - "id": "shape:perf:07967", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 5056, - "rot": 0, - "props": { - "w": 34, - "h": 24, - "fill": "hsl(103 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07968": { - "id": "shape:perf:07968", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 5056, - "rot": 0, - "props": { - "w": 36, - "h": 33, - "fill": "hsl(51 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07969": { - "id": "shape:perf:07969", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 5056, - "rot": 0, - "props": { - "w": 32, - "h": 40, - "fill": "hsl(69 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07970": { - "id": "shape:perf:07970", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 5056, - "rot": 0, - "props": { - "w": 45, - "h": 36, - "fill": "hsl(355 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07971": { - "id": "shape:perf:07971", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 5056, - "rot": 0, - "props": { - "w": 33, - "h": 37, - "fill": "hsl(349 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07972": { - "id": "shape:perf:07972", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 5056, - "rot": 0, - "props": { - "w": 41, - "h": 24, - "fill": "hsl(102 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07973": { - "id": "shape:perf:07973", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 5056, - "rot": 0, - "props": { - "w": 42, - "h": 36, - "fill": "hsl(286 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07974": { - "id": "shape:perf:07974", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 5056, - "rot": 0, - "props": { - "w": 28, - "h": 33, - "fill": "hsl(35 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07975": { - "id": "shape:perf:07975", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 5056, - "rot": 0, - "props": { - "w": 45, - "h": 33, - "fill": "hsl(111 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07976": { - "id": "shape:perf:07976", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 5056, - "rot": 0, - "props": { - "w": 39, - "h": 37, - "fill": "hsl(210 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07977": { - "id": "shape:perf:07977", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 5056, - "rot": 0, - "props": { - "w": 25, - "h": 39, - "fill": "hsl(283 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07978": { - "id": "shape:perf:07978", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 5056, - "rot": 0, - "props": { - "w": 35, - "h": 27, - "fill": "hsl(257 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07979": { - "id": "shape:perf:07979", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 5056, - "rot": 0, - "props": { - "w": 45, - "h": 30, - "fill": "hsl(11 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07980": { - "id": "shape:perf:07980", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 5056, - "rot": 0, - "props": { - "w": 28, - "h": 42, - "fill": "hsl(294 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07981": { - "id": "shape:perf:07981", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 5056, - "rot": 0, - "props": { - "w": 32, - "h": 29, - "fill": "hsl(338 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07982": { - "id": "shape:perf:07982", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 5056, - "rot": 0, - "props": { - "w": 25, - "h": 37, - "fill": "hsl(44 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07983": { - "id": "shape:perf:07983", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 5056, - "rot": 0, - "props": { - "w": 46, - "h": 35, - "fill": "hsl(317 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07984": { - "id": "shape:perf:07984", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 5056, - "rot": 0, - "props": { - "w": 31, - "h": 37, - "fill": "hsl(320 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07985": { - "id": "shape:perf:07985", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 5056, - "rot": 0, - "props": { - "w": 41, - "h": 35, - "fill": "hsl(235 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07986": { - "id": "shape:perf:07986", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 5056, - "rot": 0, - "props": { - "w": 27, - "h": 28, - "fill": "hsl(312 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07987": { - "id": "shape:perf:07987", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 5056, - "rot": 0, - "props": { - "w": 31, - "h": 42, - "fill": "hsl(101 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07988": { - "id": "shape:perf:07988", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 5056, - "rot": 0, - "props": { - "w": 29, - "h": 40, - "fill": "hsl(142 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07989": { - "id": "shape:perf:07989", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 5056, - "rot": 0, - "props": { - "w": 27, - "h": 36, - "fill": "hsl(167 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07990": { - "id": "shape:perf:07990", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 5056, - "rot": 0, - "props": { - "w": 32, - "h": 31, - "fill": "hsl(354 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07991": { - "id": "shape:perf:07991", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 5056, - "rot": 0, - "props": { - "w": 35, - "h": 26, - "fill": "hsl(191 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07992": { - "id": "shape:perf:07992", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 5056, - "rot": 0, - "props": { - "w": 32, - "h": 46, - "fill": "hsl(118 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07993": { - "id": "shape:perf:07993", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 5056, - "rot": 0, - "props": { - "w": 26, - "h": 45, - "fill": "hsl(155 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07994": { - "id": "shape:perf:07994", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 5056, - "rot": 0, - "props": { - "w": 36, - "h": 32, - "fill": "hsl(271 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:07995": { - "id": "shape:perf:07995", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 5056, - "rot": 0, - "props": { - "w": 34, - "h": 41, - "fill": "hsl(87 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:07996": { - "id": "shape:perf:07996", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 5056, - "rot": 0, - "props": { - "w": 44, - "h": 31, - "fill": "hsl(4 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:07997": { - "id": "shape:perf:07997", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 5056, - "rot": 0, - "props": { - "w": 36, - "h": 34, - "fill": "hsl(234 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:07998": { - "id": "shape:perf:07998", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 5056, - "rot": 0, - "props": { - "w": 47, - "h": 33, - "fill": "hsl(80 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:07999": { - "id": "shape:perf:07999", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 5056, - "rot": 0, - "props": { - "w": 41, - "h": 25, - "fill": "hsl(326 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08000": { - "id": "shape:perf:08000", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 5120, - "rot": 0, - "props": { - "w": 25, - "h": 32, - "fill": "hsl(230 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08001": { - "id": "shape:perf:08001", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 5120, - "rot": 0, - "props": { - "w": 36, - "h": 36, - "fill": "hsl(168 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08002": { - "id": "shape:perf:08002", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 5120, - "rot": 0, - "props": { - "w": 35, - "h": 35, - "fill": "hsl(348 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08003": { - "id": "shape:perf:08003", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 5120, - "rot": 0, - "props": { - "w": 44, - "h": 31, - "fill": "hsl(274 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08004": { - "id": "shape:perf:08004", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 5120, - "rot": 0, - "props": { - "w": 41, - "h": 31, - "fill": "hsl(3 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08005": { - "id": "shape:perf:08005", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 5120, - "rot": 0, - "props": { - "w": 35, - "h": 31, - "fill": "hsl(74 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08006": { - "id": "shape:perf:08006", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 5120, - "rot": 0, - "props": { - "w": 24, - "h": 46, - "fill": "hsl(305 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08007": { - "id": "shape:perf:08007", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 5120, - "rot": 0, - "props": { - "w": 36, - "h": 31, - "fill": "hsl(153 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08008": { - "id": "shape:perf:08008", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 5120, - "rot": 0, - "props": { - "w": 35, - "h": 40, - "fill": "hsl(125 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08009": { - "id": "shape:perf:08009", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 5120, - "rot": 0, - "props": { - "w": 35, - "h": 39, - "fill": "hsl(145 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08010": { - "id": "shape:perf:08010", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 5120, - "rot": 0, - "props": { - "w": 47, - "h": 41, - "fill": "hsl(260 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08011": { - "id": "shape:perf:08011", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 5120, - "rot": 0, - "props": { - "w": 28, - "h": 45, - "fill": "hsl(330 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08012": { - "id": "shape:perf:08012", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 5120, - "rot": 0, - "props": { - "w": 43, - "h": 32, - "fill": "hsl(105 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08013": { - "id": "shape:perf:08013", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 5120, - "rot": 0, - "props": { - "w": 39, - "h": 31, - "fill": "hsl(327 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08014": { - "id": "shape:perf:08014", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 5120, - "rot": 0, - "props": { - "w": 47, - "h": 26, - "fill": "hsl(128 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08015": { - "id": "shape:perf:08015", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 5120, - "rot": 0, - "props": { - "w": 34, - "h": 45, - "fill": "hsl(358 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08016": { - "id": "shape:perf:08016", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 5120, - "rot": 0, - "props": { - "w": 45, - "h": 42, - "fill": "hsl(150 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08017": { - "id": "shape:perf:08017", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 5120, - "rot": 0, - "props": { - "w": 43, - "h": 35, - "fill": "hsl(125 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08018": { - "id": "shape:perf:08018", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 5120, - "rot": 0, - "props": { - "w": 24, - "h": 30, - "fill": "hsl(8 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08019": { - "id": "shape:perf:08019", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 5120, - "rot": 0, - "props": { - "w": 29, - "h": 26, - "fill": "hsl(10 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08020": { - "id": "shape:perf:08020", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 5120, - "rot": 0, - "props": { - "w": 37, - "h": 32, - "fill": "hsl(324 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08021": { - "id": "shape:perf:08021", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 5120, - "rot": 0, - "props": { - "w": 37, - "h": 31, - "fill": "hsl(282 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08022": { - "id": "shape:perf:08022", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 5120, - "rot": 0, - "props": { - "w": 32, - "h": 40, - "fill": "hsl(189 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08023": { - "id": "shape:perf:08023", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 5120, - "rot": 0, - "props": { - "w": 30, - "h": 39, - "fill": "hsl(274 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08024": { - "id": "shape:perf:08024", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 5120, - "rot": 0, - "props": { - "w": 38, - "h": 25, - "fill": "hsl(70 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08025": { - "id": "shape:perf:08025", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 5120, - "rot": 0, - "props": { - "w": 25, - "h": 39, - "fill": "hsl(215 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08026": { - "id": "shape:perf:08026", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 5120, - "rot": 0, - "props": { - "w": 28, - "h": 35, - "fill": "hsl(222 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08027": { - "id": "shape:perf:08027", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 5120, - "rot": 0, - "props": { - "w": 33, - "h": 28, - "fill": "hsl(250 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08028": { - "id": "shape:perf:08028", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 5120, - "rot": 0, - "props": { - "w": 34, - "h": 36, - "fill": "hsl(300 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08029": { - "id": "shape:perf:08029", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 5120, - "rot": 0, - "props": { - "w": 37, - "h": 45, - "fill": "hsl(317 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08030": { - "id": "shape:perf:08030", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 5120, - "rot": 0, - "props": { - "w": 31, - "h": 46, - "fill": "hsl(19 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08031": { - "id": "shape:perf:08031", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 5120, - "rot": 0, - "props": { - "w": 27, - "h": 42, - "fill": "hsl(347 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08032": { - "id": "shape:perf:08032", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 5120, - "rot": 0, - "props": { - "w": 45, - "h": 30, - "fill": "hsl(243 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08033": { - "id": "shape:perf:08033", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 5120, - "rot": 0, - "props": { - "w": 43, - "h": 45, - "fill": "hsl(333 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08034": { - "id": "shape:perf:08034", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 5120, - "rot": 0, - "props": { - "w": 33, - "h": 37, - "fill": "hsl(281 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08035": { - "id": "shape:perf:08035", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 5120, - "rot": 0, - "props": { - "w": 25, - "h": 42, - "fill": "hsl(332 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08036": { - "id": "shape:perf:08036", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 5120, - "rot": 0, - "props": { - "w": 36, - "h": 40, - "fill": "hsl(91 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08037": { - "id": "shape:perf:08037", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 5120, - "rot": 0, - "props": { - "w": 25, - "h": 24, - "fill": "hsl(203 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08038": { - "id": "shape:perf:08038", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 5120, - "rot": 0, - "props": { - "w": 45, - "h": 31, - "fill": "hsl(351 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08039": { - "id": "shape:perf:08039", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 5120, - "rot": 0, - "props": { - "w": 27, - "h": 27, - "fill": "hsl(297 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08040": { - "id": "shape:perf:08040", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 5120, - "rot": 0, - "props": { - "w": 40, - "h": 25, - "fill": "hsl(25 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08041": { - "id": "shape:perf:08041", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 5120, - "rot": 0, - "props": { - "w": 34, - "h": 32, - "fill": "hsl(154 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08042": { - "id": "shape:perf:08042", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 5120, - "rot": 0, - "props": { - "w": 41, - "h": 27, - "fill": "hsl(328 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08043": { - "id": "shape:perf:08043", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 5120, - "rot": 0, - "props": { - "w": 24, - "h": 46, - "fill": "hsl(106 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08044": { - "id": "shape:perf:08044", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 5120, - "rot": 0, - "props": { - "w": 39, - "h": 34, - "fill": "hsl(336 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08045": { - "id": "shape:perf:08045", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 5120, - "rot": 0, - "props": { - "w": 47, - "h": 40, - "fill": "hsl(151 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08046": { - "id": "shape:perf:08046", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 5120, - "rot": 0, - "props": { - "w": 37, - "h": 34, - "fill": "hsl(333 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08047": { - "id": "shape:perf:08047", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 5120, - "rot": 0, - "props": { - "w": 36, - "h": 36, - "fill": "hsl(180 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08048": { - "id": "shape:perf:08048", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 5120, - "rot": 0, - "props": { - "w": 46, - "h": 24, - "fill": "hsl(255 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08049": { - "id": "shape:perf:08049", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 5120, - "rot": 0, - "props": { - "w": 31, - "h": 45, - "fill": "hsl(339 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08050": { - "id": "shape:perf:08050", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 5120, - "rot": 0, - "props": { - "w": 26, - "h": 45, - "fill": "hsl(334 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08051": { - "id": "shape:perf:08051", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 5120, - "rot": 0, - "props": { - "w": 45, - "h": 33, - "fill": "hsl(75 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08052": { - "id": "shape:perf:08052", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 5120, - "rot": 0, - "props": { - "w": 42, - "h": 42, - "fill": "hsl(31 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08053": { - "id": "shape:perf:08053", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 5120, - "rot": 0, - "props": { - "w": 46, - "h": 26, - "fill": "hsl(247 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08054": { - "id": "shape:perf:08054", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 5120, - "rot": 0, - "props": { - "w": 42, - "h": 45, - "fill": "hsl(71 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08055": { - "id": "shape:perf:08055", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 5120, - "rot": 0, - "props": { - "w": 37, - "h": 37, - "fill": "hsl(42 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08056": { - "id": "shape:perf:08056", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 5120, - "rot": 0, - "props": { - "w": 46, - "h": 33, - "fill": "hsl(85 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08057": { - "id": "shape:perf:08057", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 5120, - "rot": 0, - "props": { - "w": 41, - "h": 47, - "fill": "hsl(5 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08058": { - "id": "shape:perf:08058", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 5120, - "rot": 0, - "props": { - "w": 41, - "h": 29, - "fill": "hsl(176 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08059": { - "id": "shape:perf:08059", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 5120, - "rot": 0, - "props": { - "w": 44, - "h": 26, - "fill": "hsl(67 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08060": { - "id": "shape:perf:08060", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 5120, - "rot": 0, - "props": { - "w": 39, - "h": 26, - "fill": "hsl(161 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08061": { - "id": "shape:perf:08061", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 5120, - "rot": 0, - "props": { - "w": 38, - "h": 45, - "fill": "hsl(93 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08062": { - "id": "shape:perf:08062", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 5120, - "rot": 0, - "props": { - "w": 28, - "h": 31, - "fill": "hsl(219 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08063": { - "id": "shape:perf:08063", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 5120, - "rot": 0, - "props": { - "w": 45, - "h": 33, - "fill": "hsl(303 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08064": { - "id": "shape:perf:08064", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 5120, - "rot": 0, - "props": { - "w": 36, - "h": 28, - "fill": "hsl(43 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08065": { - "id": "shape:perf:08065", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 5120, - "rot": 0, - "props": { - "w": 32, - "h": 35, - "fill": "hsl(159 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08066": { - "id": "shape:perf:08066", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 5120, - "rot": 0, - "props": { - "w": 26, - "h": 28, - "fill": "hsl(9 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08067": { - "id": "shape:perf:08067", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 5120, - "rot": 0, - "props": { - "w": 25, - "h": 36, - "fill": "hsl(87 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08068": { - "id": "shape:perf:08068", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 5120, - "rot": 0, - "props": { - "w": 43, - "h": 25, - "fill": "hsl(253 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08069": { - "id": "shape:perf:08069", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 5120, - "rot": 0, - "props": { - "w": 31, - "h": 29, - "fill": "hsl(96 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08070": { - "id": "shape:perf:08070", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 5120, - "rot": 0, - "props": { - "w": 27, - "h": 32, - "fill": "hsl(69 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08071": { - "id": "shape:perf:08071", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 5120, - "rot": 0, - "props": { - "w": 33, - "h": 41, - "fill": "hsl(14 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08072": { - "id": "shape:perf:08072", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 5120, - "rot": 0, - "props": { - "w": 42, - "h": 44, - "fill": "hsl(172 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08073": { - "id": "shape:perf:08073", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 5120, - "rot": 0, - "props": { - "w": 28, - "h": 32, - "fill": "hsl(133 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08074": { - "id": "shape:perf:08074", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 5120, - "rot": 0, - "props": { - "w": 34, - "h": 24, - "fill": "hsl(209 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08075": { - "id": "shape:perf:08075", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 5120, - "rot": 0, - "props": { - "w": 39, - "h": 36, - "fill": "hsl(106 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08076": { - "id": "shape:perf:08076", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 5120, - "rot": 0, - "props": { - "w": 24, - "h": 44, - "fill": "hsl(82 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08077": { - "id": "shape:perf:08077", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 5120, - "rot": 0, - "props": { - "w": 35, - "h": 29, - "fill": "hsl(69 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08078": { - "id": "shape:perf:08078", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 5120, - "rot": 0, - "props": { - "w": 26, - "h": 45, - "fill": "hsl(249 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08079": { - "id": "shape:perf:08079", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 5120, - "rot": 0, - "props": { - "w": 39, - "h": 38, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08080": { - "id": "shape:perf:08080", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 5120, - "rot": 0, - "props": { - "w": 45, - "h": 45, - "fill": "hsl(83 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08081": { - "id": "shape:perf:08081", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 5120, - "rot": 0, - "props": { - "w": 27, - "h": 25, - "fill": "hsl(342 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08082": { - "id": "shape:perf:08082", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 5120, - "rot": 0, - "props": { - "w": 26, - "h": 32, - "fill": "hsl(166 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08083": { - "id": "shape:perf:08083", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 5120, - "rot": 0, - "props": { - "w": 27, - "h": 25, - "fill": "hsl(243 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08084": { - "id": "shape:perf:08084", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 5120, - "rot": 0, - "props": { - "w": 36, - "h": 46, - "fill": "hsl(44 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08085": { - "id": "shape:perf:08085", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 5120, - "rot": 0, - "props": { - "w": 28, - "h": 24, - "fill": "hsl(206 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08086": { - "id": "shape:perf:08086", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 5120, - "rot": 0, - "props": { - "w": 44, - "h": 28, - "fill": "hsl(315 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08087": { - "id": "shape:perf:08087", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 5120, - "rot": 0, - "props": { - "w": 24, - "h": 29, - "fill": "hsl(208 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08088": { - "id": "shape:perf:08088", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 5120, - "rot": 0, - "props": { - "w": 40, - "h": 32, - "fill": "hsl(191 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08089": { - "id": "shape:perf:08089", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 5120, - "rot": 0, - "props": { - "w": 47, - "h": 45, - "fill": "hsl(209 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08090": { - "id": "shape:perf:08090", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 5120, - "rot": 0, - "props": { - "w": 40, - "h": 24, - "fill": "hsl(255 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08091": { - "id": "shape:perf:08091", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 5120, - "rot": 0, - "props": { - "w": 36, - "h": 30, - "fill": "hsl(241 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08092": { - "id": "shape:perf:08092", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 5120, - "rot": 0, - "props": { - "w": 34, - "h": 38, - "fill": "hsl(204 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08093": { - "id": "shape:perf:08093", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 5120, - "rot": 0, - "props": { - "w": 44, - "h": 42, - "fill": "hsl(94 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08094": { - "id": "shape:perf:08094", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 5120, - "rot": 0, - "props": { - "w": 43, - "h": 47, - "fill": "hsl(238 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08095": { - "id": "shape:perf:08095", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 5120, - "rot": 0, - "props": { - "w": 29, - "h": 38, - "fill": "hsl(288 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08096": { - "id": "shape:perf:08096", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 5120, - "rot": 0, - "props": { - "w": 45, - "h": 39, - "fill": "hsl(195 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08097": { - "id": "shape:perf:08097", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 5120, - "rot": 0, - "props": { - "w": 33, - "h": 42, - "fill": "hsl(240 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08098": { - "id": "shape:perf:08098", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 5120, - "rot": 0, - "props": { - "w": 26, - "h": 25, - "fill": "hsl(134 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08099": { - "id": "shape:perf:08099", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 5120, - "rot": 0, - "props": { - "w": 46, - "h": 33, - "fill": "hsl(50 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08100": { - "id": "shape:perf:08100", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 5184, - "rot": 0, - "props": { - "w": 42, - "h": 45, - "fill": "hsl(183 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08101": { - "id": "shape:perf:08101", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 5184, - "rot": 0, - "props": { - "w": 46, - "h": 26, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08102": { - "id": "shape:perf:08102", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 5184, - "rot": 0, - "props": { - "w": 39, - "h": 25, - "fill": "hsl(14 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08103": { - "id": "shape:perf:08103", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 5184, - "rot": 0, - "props": { - "w": 37, - "h": 40, - "fill": "hsl(358 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08104": { - "id": "shape:perf:08104", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 5184, - "rot": 0, - "props": { - "w": 32, - "h": 29, - "fill": "hsl(184 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08105": { - "id": "shape:perf:08105", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 5184, - "rot": 0, - "props": { - "w": 41, - "h": 36, - "fill": "hsl(1 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08106": { - "id": "shape:perf:08106", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 5184, - "rot": 0, - "props": { - "w": 30, - "h": 45, - "fill": "hsl(220 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08107": { - "id": "shape:perf:08107", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 5184, - "rot": 0, - "props": { - "w": 43, - "h": 33, - "fill": "hsl(68 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08108": { - "id": "shape:perf:08108", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 5184, - "rot": 0, - "props": { - "w": 47, - "h": 26, - "fill": "hsl(224 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08109": { - "id": "shape:perf:08109", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 5184, - "rot": 0, - "props": { - "w": 41, - "h": 24, - "fill": "hsl(342 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08110": { - "id": "shape:perf:08110", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 5184, - "rot": 0, - "props": { - "w": 28, - "h": 34, - "fill": "hsl(301 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08111": { - "id": "shape:perf:08111", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 5184, - "rot": 0, - "props": { - "w": 36, - "h": 41, - "fill": "hsl(312 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08112": { - "id": "shape:perf:08112", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 5184, - "rot": 0, - "props": { - "w": 45, - "h": 33, - "fill": "hsl(56 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08113": { - "id": "shape:perf:08113", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 5184, - "rot": 0, - "props": { - "w": 31, - "h": 27, - "fill": "hsl(235 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08114": { - "id": "shape:perf:08114", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 5184, - "rot": 0, - "props": { - "w": 42, - "h": 33, - "fill": "hsl(213 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08115": { - "id": "shape:perf:08115", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 5184, - "rot": 0, - "props": { - "w": 42, - "h": 44, - "fill": "hsl(333 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08116": { - "id": "shape:perf:08116", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 5184, - "rot": 0, - "props": { - "w": 42, - "h": 46, - "fill": "hsl(225 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08117": { - "id": "shape:perf:08117", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 5184, - "rot": 0, - "props": { - "w": 28, - "h": 44, - "fill": "hsl(133 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08118": { - "id": "shape:perf:08118", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 5184, - "rot": 0, - "props": { - "w": 41, - "h": 42, - "fill": "hsl(97 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08119": { - "id": "shape:perf:08119", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 5184, - "rot": 0, - "props": { - "w": 27, - "h": 27, - "fill": "hsl(185 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08120": { - "id": "shape:perf:08120", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 5184, - "rot": 0, - "props": { - "w": 30, - "h": 32, - "fill": "hsl(131 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08121": { - "id": "shape:perf:08121", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 5184, - "rot": 0, - "props": { - "w": 32, - "h": 38, - "fill": "hsl(161 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08122": { - "id": "shape:perf:08122", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 5184, - "rot": 0, - "props": { - "w": 30, - "h": 25, - "fill": "hsl(71 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08123": { - "id": "shape:perf:08123", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 5184, - "rot": 0, - "props": { - "w": 39, - "h": 25, - "fill": "hsl(85 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08124": { - "id": "shape:perf:08124", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 5184, - "rot": 0, - "props": { - "w": 38, - "h": 27, - "fill": "hsl(311 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08125": { - "id": "shape:perf:08125", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 5184, - "rot": 0, - "props": { - "w": 42, - "h": 43, - "fill": "hsl(133 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08126": { - "id": "shape:perf:08126", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 5184, - "rot": 0, - "props": { - "w": 38, - "h": 47, - "fill": "hsl(112 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08127": { - "id": "shape:perf:08127", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 5184, - "rot": 0, - "props": { - "w": 43, - "h": 35, - "fill": "hsl(0 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08128": { - "id": "shape:perf:08128", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 5184, - "rot": 0, - "props": { - "w": 40, - "h": 42, - "fill": "hsl(78 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08129": { - "id": "shape:perf:08129", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 5184, - "rot": 0, - "props": { - "w": 28, - "h": 26, - "fill": "hsl(4 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08130": { - "id": "shape:perf:08130", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 5184, - "rot": 0, - "props": { - "w": 44, - "h": 34, - "fill": "hsl(207 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08131": { - "id": "shape:perf:08131", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 5184, - "rot": 0, - "props": { - "w": 40, - "h": 32, - "fill": "hsl(244 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08132": { - "id": "shape:perf:08132", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 5184, - "rot": 0, - "props": { - "w": 41, - "h": 40, - "fill": "hsl(93 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08133": { - "id": "shape:perf:08133", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 5184, - "rot": 0, - "props": { - "w": 34, - "h": 35, - "fill": "hsl(314 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08134": { - "id": "shape:perf:08134", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 5184, - "rot": 0, - "props": { - "w": 25, - "h": 38, - "fill": "hsl(320 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08135": { - "id": "shape:perf:08135", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 5184, - "rot": 0, - "props": { - "w": 44, - "h": 40, - "fill": "hsl(3 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08136": { - "id": "shape:perf:08136", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 5184, - "rot": 0, - "props": { - "w": 25, - "h": 31, - "fill": "hsl(108 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08137": { - "id": "shape:perf:08137", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 5184, - "rot": 0, - "props": { - "w": 38, - "h": 24, - "fill": "hsl(132 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08138": { - "id": "shape:perf:08138", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 5184, - "rot": 0, - "props": { - "w": 42, - "h": 31, - "fill": "hsl(167 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08139": { - "id": "shape:perf:08139", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 5184, - "rot": 0, - "props": { - "w": 43, - "h": 26, - "fill": "hsl(141 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08140": { - "id": "shape:perf:08140", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 5184, - "rot": 0, - "props": { - "w": 35, - "h": 38, - "fill": "hsl(184 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08141": { - "id": "shape:perf:08141", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 5184, - "rot": 0, - "props": { - "w": 41, - "h": 28, - "fill": "hsl(160 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08142": { - "id": "shape:perf:08142", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 5184, - "rot": 0, - "props": { - "w": 37, - "h": 40, - "fill": "hsl(316 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08143": { - "id": "shape:perf:08143", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 5184, - "rot": 0, - "props": { - "w": 28, - "h": 47, - "fill": "hsl(193 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08144": { - "id": "shape:perf:08144", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 5184, - "rot": 0, - "props": { - "w": 36, - "h": 28, - "fill": "hsl(128 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08145": { - "id": "shape:perf:08145", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 5184, - "rot": 0, - "props": { - "w": 25, - "h": 25, - "fill": "hsl(32 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08146": { - "id": "shape:perf:08146", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 5184, - "rot": 0, - "props": { - "w": 40, - "h": 27, - "fill": "hsl(127 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08147": { - "id": "shape:perf:08147", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 5184, - "rot": 0, - "props": { - "w": 38, - "h": 38, - "fill": "hsl(32 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08148": { - "id": "shape:perf:08148", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 5184, - "rot": 0, - "props": { - "w": 45, - "h": 32, - "fill": "hsl(240 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08149": { - "id": "shape:perf:08149", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 5184, - "rot": 0, - "props": { - "w": 41, - "h": 45, - "fill": "hsl(183 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08150": { - "id": "shape:perf:08150", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 5184, - "rot": 0, - "props": { - "w": 25, - "h": 28, - "fill": "hsl(327 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08151": { - "id": "shape:perf:08151", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 5184, - "rot": 0, - "props": { - "w": 28, - "h": 40, - "fill": "hsl(247 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08152": { - "id": "shape:perf:08152", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 5184, - "rot": 0, - "props": { - "w": 27, - "h": 41, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08153": { - "id": "shape:perf:08153", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 5184, - "rot": 0, - "props": { - "w": 47, - "h": 44, - "fill": "hsl(14 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08154": { - "id": "shape:perf:08154", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 5184, - "rot": 0, - "props": { - "w": 24, - "h": 37, - "fill": "hsl(162 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08155": { - "id": "shape:perf:08155", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 5184, - "rot": 0, - "props": { - "w": 25, - "h": 37, - "fill": "hsl(43 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08156": { - "id": "shape:perf:08156", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 5184, - "rot": 0, - "props": { - "w": 39, - "h": 41, - "fill": "hsl(347 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08157": { - "id": "shape:perf:08157", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 5184, - "rot": 0, - "props": { - "w": 30, - "h": 33, - "fill": "hsl(33 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08158": { - "id": "shape:perf:08158", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 5184, - "rot": 0, - "props": { - "w": 25, - "h": 46, - "fill": "hsl(355 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08159": { - "id": "shape:perf:08159", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 5184, - "rot": 0, - "props": { - "w": 37, - "h": 37, - "fill": "hsl(175 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08160": { - "id": "shape:perf:08160", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 5184, - "rot": 0, - "props": { - "w": 24, - "h": 28, - "fill": "hsl(43 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08161": { - "id": "shape:perf:08161", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 5184, - "rot": 0, - "props": { - "w": 32, - "h": 38, - "fill": "hsl(234 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08162": { - "id": "shape:perf:08162", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 5184, - "rot": 0, - "props": { - "w": 39, - "h": 43, - "fill": "hsl(165 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08163": { - "id": "shape:perf:08163", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 5184, - "rot": 0, - "props": { - "w": 35, - "h": 40, - "fill": "hsl(205 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08164": { - "id": "shape:perf:08164", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 5184, - "rot": 0, - "props": { - "w": 34, - "h": 30, - "fill": "hsl(2 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08165": { - "id": "shape:perf:08165", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 5184, - "rot": 0, - "props": { - "w": 30, - "h": 40, - "fill": "hsl(53 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08166": { - "id": "shape:perf:08166", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 5184, - "rot": 0, - "props": { - "w": 41, - "h": 29, - "fill": "hsl(338 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08167": { - "id": "shape:perf:08167", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 5184, - "rot": 0, - "props": { - "w": 26, - "h": 32, - "fill": "hsl(283 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08168": { - "id": "shape:perf:08168", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 5184, - "rot": 0, - "props": { - "w": 41, - "h": 31, - "fill": "hsl(68 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08169": { - "id": "shape:perf:08169", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 5184, - "rot": 0, - "props": { - "w": 26, - "h": 34, - "fill": "hsl(276 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08170": { - "id": "shape:perf:08170", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 5184, - "rot": 0, - "props": { - "w": 47, - "h": 36, - "fill": "hsl(61 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08171": { - "id": "shape:perf:08171", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 5184, - "rot": 0, - "props": { - "w": 33, - "h": 45, - "fill": "hsl(163 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08172": { - "id": "shape:perf:08172", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 5184, - "rot": 0, - "props": { - "w": 29, - "h": 32, - "fill": "hsl(88 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08173": { - "id": "shape:perf:08173", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 5184, - "rot": 0, - "props": { - "w": 42, - "h": 44, - "fill": "hsl(155 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08174": { - "id": "shape:perf:08174", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 5184, - "rot": 0, - "props": { - "w": 27, - "h": 44, - "fill": "hsl(237 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08175": { - "id": "shape:perf:08175", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 5184, - "rot": 0, - "props": { - "w": 45, - "h": 46, - "fill": "hsl(82 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08176": { - "id": "shape:perf:08176", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 5184, - "rot": 0, - "props": { - "w": 24, - "h": 33, - "fill": "hsl(148 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08177": { - "id": "shape:perf:08177", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 5184, - "rot": 0, - "props": { - "w": 40, - "h": 39, - "fill": "hsl(26 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08178": { - "id": "shape:perf:08178", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 5184, - "rot": 0, - "props": { - "w": 34, - "h": 25, - "fill": "hsl(312 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08179": { - "id": "shape:perf:08179", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 5184, - "rot": 0, - "props": { - "w": 37, - "h": 33, - "fill": "hsl(341 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08180": { - "id": "shape:perf:08180", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 5184, - "rot": 0, - "props": { - "w": 36, - "h": 43, - "fill": "hsl(278 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08181": { - "id": "shape:perf:08181", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 5184, - "rot": 0, - "props": { - "w": 32, - "h": 25, - "fill": "hsl(340 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08182": { - "id": "shape:perf:08182", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 5184, - "rot": 0, - "props": { - "w": 31, - "h": 24, - "fill": "hsl(56 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08183": { - "id": "shape:perf:08183", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 5184, - "rot": 0, - "props": { - "w": 28, - "h": 28, - "fill": "hsl(91 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08184": { - "id": "shape:perf:08184", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 5184, - "rot": 0, - "props": { - "w": 44, - "h": 47, - "fill": "hsl(290 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08185": { - "id": "shape:perf:08185", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 5184, - "rot": 0, - "props": { - "w": 40, - "h": 35, - "fill": "hsl(18 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08186": { - "id": "shape:perf:08186", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 5184, - "rot": 0, - "props": { - "w": 45, - "h": 35, - "fill": "hsl(195 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08187": { - "id": "shape:perf:08187", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 5184, - "rot": 0, - "props": { - "w": 24, - "h": 38, - "fill": "hsl(248 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08188": { - "id": "shape:perf:08188", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 5184, - "rot": 0, - "props": { - "w": 26, - "h": 25, - "fill": "hsl(157 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08189": { - "id": "shape:perf:08189", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 5184, - "rot": 0, - "props": { - "w": 40, - "h": 47, - "fill": "hsl(341 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08190": { - "id": "shape:perf:08190", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 5184, - "rot": 0, - "props": { - "w": 26, - "h": 29, - "fill": "hsl(160 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08191": { - "id": "shape:perf:08191", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 5184, - "rot": 0, - "props": { - "w": 37, - "h": 44, - "fill": "hsl(71 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08192": { - "id": "shape:perf:08192", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 5184, - "rot": 0, - "props": { - "w": 39, - "h": 47, - "fill": "hsl(335 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08193": { - "id": "shape:perf:08193", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 5184, - "rot": 0, - "props": { - "w": 35, - "h": 29, - "fill": "hsl(190 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08194": { - "id": "shape:perf:08194", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 5184, - "rot": 0, - "props": { - "w": 43, - "h": 28, - "fill": "hsl(335 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08195": { - "id": "shape:perf:08195", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 5184, - "rot": 0, - "props": { - "w": 34, - "h": 42, - "fill": "hsl(56 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08196": { - "id": "shape:perf:08196", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 5184, - "rot": 0, - "props": { - "w": 47, - "h": 42, - "fill": "hsl(89 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08197": { - "id": "shape:perf:08197", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 5184, - "rot": 0, - "props": { - "w": 43, - "h": 40, - "fill": "hsl(186 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08198": { - "id": "shape:perf:08198", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 5184, - "rot": 0, - "props": { - "w": 40, - "h": 32, - "fill": "hsl(78 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08199": { - "id": "shape:perf:08199", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 5184, - "rot": 0, - "props": { - "w": 46, - "h": 30, - "fill": "hsl(155 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08200": { - "id": "shape:perf:08200", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 5248, - "rot": 0, - "props": { - "w": 28, - "h": 32, - "fill": "hsl(258 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08201": { - "id": "shape:perf:08201", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 5248, - "rot": 0, - "props": { - "w": 24, - "h": 39, - "fill": "hsl(280 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08202": { - "id": "shape:perf:08202", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 5248, - "rot": 0, - "props": { - "w": 34, - "h": 43, - "fill": "hsl(124 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08203": { - "id": "shape:perf:08203", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 5248, - "rot": 0, - "props": { - "w": 44, - "h": 38, - "fill": "hsl(25 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08204": { - "id": "shape:perf:08204", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 5248, - "rot": 0, - "props": { - "w": 45, - "h": 31, - "fill": "hsl(44 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08205": { - "id": "shape:perf:08205", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 5248, - "rot": 0, - "props": { - "w": 39, - "h": 31, - "fill": "hsl(249 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08206": { - "id": "shape:perf:08206", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 5248, - "rot": 0, - "props": { - "w": 28, - "h": 45, - "fill": "hsl(125 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08207": { - "id": "shape:perf:08207", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 5248, - "rot": 0, - "props": { - "w": 28, - "h": 36, - "fill": "hsl(206 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08208": { - "id": "shape:perf:08208", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 5248, - "rot": 0, - "props": { - "w": 28, - "h": 38, - "fill": "hsl(218 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08209": { - "id": "shape:perf:08209", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 5248, - "rot": 0, - "props": { - "w": 39, - "h": 36, - "fill": "hsl(64 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08210": { - "id": "shape:perf:08210", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 5248, - "rot": 0, - "props": { - "w": 38, - "h": 26, - "fill": "hsl(118 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08211": { - "id": "shape:perf:08211", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 5248, - "rot": 0, - "props": { - "w": 33, - "h": 35, - "fill": "hsl(329 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08212": { - "id": "shape:perf:08212", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 5248, - "rot": 0, - "props": { - "w": 38, - "h": 33, - "fill": "hsl(332 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08213": { - "id": "shape:perf:08213", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 5248, - "rot": 0, - "props": { - "w": 41, - "h": 42, - "fill": "hsl(53 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08214": { - "id": "shape:perf:08214", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 5248, - "rot": 0, - "props": { - "w": 40, - "h": 24, - "fill": "hsl(74 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08215": { - "id": "shape:perf:08215", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 5248, - "rot": 0, - "props": { - "w": 46, - "h": 45, - "fill": "hsl(271 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08216": { - "id": "shape:perf:08216", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 5248, - "rot": 0, - "props": { - "w": 24, - "h": 37, - "fill": "hsl(0 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08217": { - "id": "shape:perf:08217", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 5248, - "rot": 0, - "props": { - "w": 44, - "h": 43, - "fill": "hsl(154 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08218": { - "id": "shape:perf:08218", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 5248, - "rot": 0, - "props": { - "w": 34, - "h": 43, - "fill": "hsl(46 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08219": { - "id": "shape:perf:08219", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 5248, - "rot": 0, - "props": { - "w": 32, - "h": 40, - "fill": "hsl(168 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08220": { - "id": "shape:perf:08220", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 5248, - "rot": 0, - "props": { - "w": 26, - "h": 39, - "fill": "hsl(294 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08221": { - "id": "shape:perf:08221", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 5248, - "rot": 0, - "props": { - "w": 41, - "h": 28, - "fill": "hsl(168 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08222": { - "id": "shape:perf:08222", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 5248, - "rot": 0, - "props": { - "w": 41, - "h": 42, - "fill": "hsl(277 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08223": { - "id": "shape:perf:08223", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 5248, - "rot": 0, - "props": { - "w": 29, - "h": 44, - "fill": "hsl(346 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08224": { - "id": "shape:perf:08224", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 5248, - "rot": 0, - "props": { - "w": 46, - "h": 43, - "fill": "hsl(12 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08225": { - "id": "shape:perf:08225", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 5248, - "rot": 0, - "props": { - "w": 32, - "h": 42, - "fill": "hsl(126 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08226": { - "id": "shape:perf:08226", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 5248, - "rot": 0, - "props": { - "w": 38, - "h": 44, - "fill": "hsl(353 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08227": { - "id": "shape:perf:08227", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 5248, - "rot": 0, - "props": { - "w": 38, - "h": 30, - "fill": "hsl(152 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08228": { - "id": "shape:perf:08228", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 5248, - "rot": 0, - "props": { - "w": 41, - "h": 38, - "fill": "hsl(340 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08229": { - "id": "shape:perf:08229", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 5248, - "rot": 0, - "props": { - "w": 29, - "h": 46, - "fill": "hsl(343 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08230": { - "id": "shape:perf:08230", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 5248, - "rot": 0, - "props": { - "w": 40, - "h": 37, - "fill": "hsl(206 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08231": { - "id": "shape:perf:08231", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 5248, - "rot": 0, - "props": { - "w": 44, - "h": 46, - "fill": "hsl(153 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08232": { - "id": "shape:perf:08232", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 5248, - "rot": 0, - "props": { - "w": 30, - "h": 41, - "fill": "hsl(227 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08233": { - "id": "shape:perf:08233", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 5248, - "rot": 0, - "props": { - "w": 46, - "h": 43, - "fill": "hsl(85 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08234": { - "id": "shape:perf:08234", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 5248, - "rot": 0, - "props": { - "w": 25, - "h": 31, - "fill": "hsl(65 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08235": { - "id": "shape:perf:08235", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 5248, - "rot": 0, - "props": { - "w": 47, - "h": 45, - "fill": "hsl(27 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08236": { - "id": "shape:perf:08236", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 5248, - "rot": 0, - "props": { - "w": 43, - "h": 24, - "fill": "hsl(146 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08237": { - "id": "shape:perf:08237", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 5248, - "rot": 0, - "props": { - "w": 35, - "h": 45, - "fill": "hsl(5 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08238": { - "id": "shape:perf:08238", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 5248, - "rot": 0, - "props": { - "w": 46, - "h": 31, - "fill": "hsl(160 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08239": { - "id": "shape:perf:08239", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 5248, - "rot": 0, - "props": { - "w": 44, - "h": 28, - "fill": "hsl(33 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08240": { - "id": "shape:perf:08240", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 5248, - "rot": 0, - "props": { - "w": 32, - "h": 24, - "fill": "hsl(331 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08241": { - "id": "shape:perf:08241", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 5248, - "rot": 0, - "props": { - "w": 38, - "h": 28, - "fill": "hsl(268 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08242": { - "id": "shape:perf:08242", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 5248, - "rot": 0, - "props": { - "w": 40, - "h": 36, - "fill": "hsl(3 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08243": { - "id": "shape:perf:08243", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 5248, - "rot": 0, - "props": { - "w": 25, - "h": 33, - "fill": "hsl(16 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08244": { - "id": "shape:perf:08244", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 5248, - "rot": 0, - "props": { - "w": 34, - "h": 30, - "fill": "hsl(197 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08245": { - "id": "shape:perf:08245", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 5248, - "rot": 0, - "props": { - "w": 27, - "h": 27, - "fill": "hsl(35 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08246": { - "id": "shape:perf:08246", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 5248, - "rot": 0, - "props": { - "w": 47, - "h": 24, - "fill": "hsl(26 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08247": { - "id": "shape:perf:08247", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 5248, - "rot": 0, - "props": { - "w": 46, - "h": 26, - "fill": "hsl(43 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08248": { - "id": "shape:perf:08248", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 5248, - "rot": 0, - "props": { - "w": 32, - "h": 46, - "fill": "hsl(326 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08249": { - "id": "shape:perf:08249", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 5248, - "rot": 0, - "props": { - "w": 39, - "h": 35, - "fill": "hsl(142 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08250": { - "id": "shape:perf:08250", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 5248, - "rot": 0, - "props": { - "w": 36, - "h": 32, - "fill": "hsl(158 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08251": { - "id": "shape:perf:08251", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 5248, - "rot": 0, - "props": { - "w": 31, - "h": 24, - "fill": "hsl(36 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08252": { - "id": "shape:perf:08252", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 5248, - "rot": 0, - "props": { - "w": 42, - "h": 42, - "fill": "hsl(210 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08253": { - "id": "shape:perf:08253", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 5248, - "rot": 0, - "props": { - "w": 33, - "h": 38, - "fill": "hsl(73 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08254": { - "id": "shape:perf:08254", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 5248, - "rot": 0, - "props": { - "w": 26, - "h": 29, - "fill": "hsl(135 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08255": { - "id": "shape:perf:08255", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 5248, - "rot": 0, - "props": { - "w": 31, - "h": 35, - "fill": "hsl(178 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08256": { - "id": "shape:perf:08256", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 5248, - "rot": 0, - "props": { - "w": 42, - "h": 44, - "fill": "hsl(184 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08257": { - "id": "shape:perf:08257", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 5248, - "rot": 0, - "props": { - "w": 46, - "h": 45, - "fill": "hsl(215 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08258": { - "id": "shape:perf:08258", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 5248, - "rot": 0, - "props": { - "w": 31, - "h": 38, - "fill": "hsl(240 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08259": { - "id": "shape:perf:08259", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 5248, - "rot": 0, - "props": { - "w": 27, - "h": 24, - "fill": "hsl(0 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08260": { - "id": "shape:perf:08260", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 5248, - "rot": 0, - "props": { - "w": 33, - "h": 32, - "fill": "hsl(180 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08261": { - "id": "shape:perf:08261", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 5248, - "rot": 0, - "props": { - "w": 40, - "h": 38, - "fill": "hsl(342 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08262": { - "id": "shape:perf:08262", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 5248, - "rot": 0, - "props": { - "w": 29, - "h": 36, - "fill": "hsl(249 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08263": { - "id": "shape:perf:08263", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 5248, - "rot": 0, - "props": { - "w": 47, - "h": 42, - "fill": "hsl(235 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08264": { - "id": "shape:perf:08264", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 5248, - "rot": 0, - "props": { - "w": 25, - "h": 38, - "fill": "hsl(318 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08265": { - "id": "shape:perf:08265", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 5248, - "rot": 0, - "props": { - "w": 46, - "h": 35, - "fill": "hsl(87 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08266": { - "id": "shape:perf:08266", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 5248, - "rot": 0, - "props": { - "w": 30, - "h": 24, - "fill": "hsl(162 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08267": { - "id": "shape:perf:08267", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 5248, - "rot": 0, - "props": { - "w": 27, - "h": 25, - "fill": "hsl(159 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08268": { - "id": "shape:perf:08268", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 5248, - "rot": 0, - "props": { - "w": 30, - "h": 47, - "fill": "hsl(107 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08269": { - "id": "shape:perf:08269", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 5248, - "rot": 0, - "props": { - "w": 42, - "h": 25, - "fill": "hsl(76 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08270": { - "id": "shape:perf:08270", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 5248, - "rot": 0, - "props": { - "w": 25, - "h": 30, - "fill": "hsl(279 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08271": { - "id": "shape:perf:08271", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 5248, - "rot": 0, - "props": { - "w": 47, - "h": 44, - "fill": "hsl(72 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08272": { - "id": "shape:perf:08272", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 5248, - "rot": 0, - "props": { - "w": 36, - "h": 29, - "fill": "hsl(14 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08273": { - "id": "shape:perf:08273", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 5248, - "rot": 0, - "props": { - "w": 29, - "h": 46, - "fill": "hsl(317 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08274": { - "id": "shape:perf:08274", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 5248, - "rot": 0, - "props": { - "w": 26, - "h": 47, - "fill": "hsl(96 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08275": { - "id": "shape:perf:08275", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 5248, - "rot": 0, - "props": { - "w": 34, - "h": 41, - "fill": "hsl(15 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08276": { - "id": "shape:perf:08276", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 5248, - "rot": 0, - "props": { - "w": 40, - "h": 25, - "fill": "hsl(192 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08277": { - "id": "shape:perf:08277", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 5248, - "rot": 0, - "props": { - "w": 24, - "h": 42, - "fill": "hsl(106 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08278": { - "id": "shape:perf:08278", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 5248, - "rot": 0, - "props": { - "w": 42, - "h": 25, - "fill": "hsl(217 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08279": { - "id": "shape:perf:08279", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 5248, - "rot": 0, - "props": { - "w": 38, - "h": 47, - "fill": "hsl(245 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08280": { - "id": "shape:perf:08280", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 5248, - "rot": 0, - "props": { - "w": 38, - "h": 36, - "fill": "hsl(296 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08281": { - "id": "shape:perf:08281", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 5248, - "rot": 0, - "props": { - "w": 41, - "h": 33, - "fill": "hsl(158 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08282": { - "id": "shape:perf:08282", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 5248, - "rot": 0, - "props": { - "w": 37, - "h": 44, - "fill": "hsl(102 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08283": { - "id": "shape:perf:08283", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 5248, - "rot": 0, - "props": { - "w": 43, - "h": 38, - "fill": "hsl(139 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08284": { - "id": "shape:perf:08284", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 5248, - "rot": 0, - "props": { - "w": 24, - "h": 35, - "fill": "hsl(63 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08285": { - "id": "shape:perf:08285", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 5248, - "rot": 0, - "props": { - "w": 29, - "h": 46, - "fill": "hsl(259 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08286": { - "id": "shape:perf:08286", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 5248, - "rot": 0, - "props": { - "w": 40, - "h": 43, - "fill": "hsl(1 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08287": { - "id": "shape:perf:08287", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 5248, - "rot": 0, - "props": { - "w": 40, - "h": 25, - "fill": "hsl(149 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08288": { - "id": "shape:perf:08288", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 5248, - "rot": 0, - "props": { - "w": 40, - "h": 41, - "fill": "hsl(55 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08289": { - "id": "shape:perf:08289", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 5248, - "rot": 0, - "props": { - "w": 30, - "h": 25, - "fill": "hsl(180 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08290": { - "id": "shape:perf:08290", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 5248, - "rot": 0, - "props": { - "w": 26, - "h": 35, - "fill": "hsl(48 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08291": { - "id": "shape:perf:08291", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 5248, - "rot": 0, - "props": { - "w": 28, - "h": 24, - "fill": "hsl(55 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08292": { - "id": "shape:perf:08292", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 5248, - "rot": 0, - "props": { - "w": 24, - "h": 47, - "fill": "hsl(280 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08293": { - "id": "shape:perf:08293", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 5248, - "rot": 0, - "props": { - "w": 27, - "h": 30, - "fill": "hsl(184 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08294": { - "id": "shape:perf:08294", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 5248, - "rot": 0, - "props": { - "w": 33, - "h": 27, - "fill": "hsl(31 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08295": { - "id": "shape:perf:08295", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 5248, - "rot": 0, - "props": { - "w": 31, - "h": 29, - "fill": "hsl(138 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08296": { - "id": "shape:perf:08296", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 5248, - "rot": 0, - "props": { - "w": 37, - "h": 29, - "fill": "hsl(224 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08297": { - "id": "shape:perf:08297", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 5248, - "rot": 0, - "props": { - "w": 44, - "h": 35, - "fill": "hsl(60 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08298": { - "id": "shape:perf:08298", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 5248, - "rot": 0, - "props": { - "w": 45, - "h": 43, - "fill": "hsl(179 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08299": { - "id": "shape:perf:08299", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 5248, - "rot": 0, - "props": { - "w": 28, - "h": 28, - "fill": "hsl(104 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08300": { - "id": "shape:perf:08300", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 5312, - "rot": 0, - "props": { - "w": 30, - "h": 30, - "fill": "hsl(347 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08301": { - "id": "shape:perf:08301", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 5312, - "rot": 0, - "props": { - "w": 35, - "h": 31, - "fill": "hsl(36 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08302": { - "id": "shape:perf:08302", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 5312, - "rot": 0, - "props": { - "w": 30, - "h": 37, - "fill": "hsl(179 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08303": { - "id": "shape:perf:08303", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 5312, - "rot": 0, - "props": { - "w": 44, - "h": 44, - "fill": "hsl(74 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08304": { - "id": "shape:perf:08304", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 5312, - "rot": 0, - "props": { - "w": 28, - "h": 35, - "fill": "hsl(129 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08305": { - "id": "shape:perf:08305", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 5312, - "rot": 0, - "props": { - "w": 35, - "h": 44, - "fill": "hsl(166 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08306": { - "id": "shape:perf:08306", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 5312, - "rot": 0, - "props": { - "w": 30, - "h": 37, - "fill": "hsl(190 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08307": { - "id": "shape:perf:08307", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 5312, - "rot": 0, - "props": { - "w": 33, - "h": 35, - "fill": "hsl(86 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08308": { - "id": "shape:perf:08308", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 5312, - "rot": 0, - "props": { - "w": 31, - "h": 35, - "fill": "hsl(77 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08309": { - "id": "shape:perf:08309", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 5312, - "rot": 0, - "props": { - "w": 35, - "h": 44, - "fill": "hsl(273 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08310": { - "id": "shape:perf:08310", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 5312, - "rot": 0, - "props": { - "w": 31, - "h": 32, - "fill": "hsl(171 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08311": { - "id": "shape:perf:08311", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 5312, - "rot": 0, - "props": { - "w": 46, - "h": 40, - "fill": "hsl(54 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08312": { - "id": "shape:perf:08312", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 5312, - "rot": 0, - "props": { - "w": 40, - "h": 45, - "fill": "hsl(91 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08313": { - "id": "shape:perf:08313", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 5312, - "rot": 0, - "props": { - "w": 36, - "h": 43, - "fill": "hsl(111 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08314": { - "id": "shape:perf:08314", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 5312, - "rot": 0, - "props": { - "w": 33, - "h": 44, - "fill": "hsl(18 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08315": { - "id": "shape:perf:08315", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 5312, - "rot": 0, - "props": { - "w": 27, - "h": 47, - "fill": "hsl(94 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08316": { - "id": "shape:perf:08316", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 5312, - "rot": 0, - "props": { - "w": 37, - "h": 36, - "fill": "hsl(352 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08317": { - "id": "shape:perf:08317", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 5312, - "rot": 0, - "props": { - "w": 25, - "h": 47, - "fill": "hsl(216 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08318": { - "id": "shape:perf:08318", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 5312, - "rot": 0, - "props": { - "w": 25, - "h": 33, - "fill": "hsl(259 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08319": { - "id": "shape:perf:08319", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 5312, - "rot": 0, - "props": { - "w": 38, - "h": 34, - "fill": "hsl(77 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08320": { - "id": "shape:perf:08320", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 5312, - "rot": 0, - "props": { - "w": 40, - "h": 39, - "fill": "hsl(164 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08321": { - "id": "shape:perf:08321", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 5312, - "rot": 0, - "props": { - "w": 37, - "h": 36, - "fill": "hsl(26 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08322": { - "id": "shape:perf:08322", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 5312, - "rot": 0, - "props": { - "w": 25, - "h": 25, - "fill": "hsl(215 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08323": { - "id": "shape:perf:08323", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 5312, - "rot": 0, - "props": { - "w": 47, - "h": 36, - "fill": "hsl(286 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08324": { - "id": "shape:perf:08324", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 5312, - "rot": 0, - "props": { - "w": 47, - "h": 39, - "fill": "hsl(33 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08325": { - "id": "shape:perf:08325", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 5312, - "rot": 0, - "props": { - "w": 36, - "h": 29, - "fill": "hsl(59 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08326": { - "id": "shape:perf:08326", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 5312, - "rot": 0, - "props": { - "w": 25, - "h": 31, - "fill": "hsl(33 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08327": { - "id": "shape:perf:08327", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 5312, - "rot": 0, - "props": { - "w": 36, - "h": 41, - "fill": "hsl(99 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08328": { - "id": "shape:perf:08328", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 5312, - "rot": 0, - "props": { - "w": 47, - "h": 44, - "fill": "hsl(73 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08329": { - "id": "shape:perf:08329", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 5312, - "rot": 0, - "props": { - "w": 26, - "h": 24, - "fill": "hsl(232 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08330": { - "id": "shape:perf:08330", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 5312, - "rot": 0, - "props": { - "w": 29, - "h": 37, - "fill": "hsl(91 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08331": { - "id": "shape:perf:08331", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 5312, - "rot": 0, - "props": { - "w": 35, - "h": 46, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08332": { - "id": "shape:perf:08332", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 5312, - "rot": 0, - "props": { - "w": 42, - "h": 43, - "fill": "hsl(187 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08333": { - "id": "shape:perf:08333", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 5312, - "rot": 0, - "props": { - "w": 46, - "h": 28, - "fill": "hsl(190 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08334": { - "id": "shape:perf:08334", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 5312, - "rot": 0, - "props": { - "w": 37, - "h": 41, - "fill": "hsl(33 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08335": { - "id": "shape:perf:08335", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 5312, - "rot": 0, - "props": { - "w": 26, - "h": 47, - "fill": "hsl(110 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08336": { - "id": "shape:perf:08336", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 5312, - "rot": 0, - "props": { - "w": 34, - "h": 34, - "fill": "hsl(350 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08337": { - "id": "shape:perf:08337", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 5312, - "rot": 0, - "props": { - "w": 31, - "h": 45, - "fill": "hsl(44 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08338": { - "id": "shape:perf:08338", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 5312, - "rot": 0, - "props": { - "w": 37, - "h": 41, - "fill": "hsl(109 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08339": { - "id": "shape:perf:08339", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 5312, - "rot": 0, - "props": { - "w": 46, - "h": 39, - "fill": "hsl(222 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08340": { - "id": "shape:perf:08340", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 5312, - "rot": 0, - "props": { - "w": 38, - "h": 38, - "fill": "hsl(138 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08341": { - "id": "shape:perf:08341", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 5312, - "rot": 0, - "props": { - "w": 39, - "h": 28, - "fill": "hsl(5 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08342": { - "id": "shape:perf:08342", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 5312, - "rot": 0, - "props": { - "w": 37, - "h": 27, - "fill": "hsl(67 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08343": { - "id": "shape:perf:08343", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 5312, - "rot": 0, - "props": { - "w": 42, - "h": 31, - "fill": "hsl(228 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08344": { - "id": "shape:perf:08344", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 5312, - "rot": 0, - "props": { - "w": 36, - "h": 36, - "fill": "hsl(327 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08345": { - "id": "shape:perf:08345", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 5312, - "rot": 0, - "props": { - "w": 46, - "h": 32, - "fill": "hsl(9 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08346": { - "id": "shape:perf:08346", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 5312, - "rot": 0, - "props": { - "w": 29, - "h": 45, - "fill": "hsl(253 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08347": { - "id": "shape:perf:08347", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 5312, - "rot": 0, - "props": { - "w": 29, - "h": 35, - "fill": "hsl(290 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08348": { - "id": "shape:perf:08348", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 5312, - "rot": 0, - "props": { - "w": 46, - "h": 34, - "fill": "hsl(120 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08349": { - "id": "shape:perf:08349", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 5312, - "rot": 0, - "props": { - "w": 28, - "h": 39, - "fill": "hsl(159 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08350": { - "id": "shape:perf:08350", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 5312, - "rot": 0, - "props": { - "w": 26, - "h": 36, - "fill": "hsl(333 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08351": { - "id": "shape:perf:08351", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 5312, - "rot": 0, - "props": { - "w": 37, - "h": 46, - "fill": "hsl(103 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08352": { - "id": "shape:perf:08352", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 5312, - "rot": 0, - "props": { - "w": 34, - "h": 32, - "fill": "hsl(219 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08353": { - "id": "shape:perf:08353", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 5312, - "rot": 0, - "props": { - "w": 28, - "h": 32, - "fill": "hsl(28 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08354": { - "id": "shape:perf:08354", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 5312, - "rot": 0, - "props": { - "w": 30, - "h": 28, - "fill": "hsl(130 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08355": { - "id": "shape:perf:08355", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 5312, - "rot": 0, - "props": { - "w": 38, - "h": 47, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08356": { - "id": "shape:perf:08356", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 5312, - "rot": 0, - "props": { - "w": 47, - "h": 41, - "fill": "hsl(75 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08357": { - "id": "shape:perf:08357", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 5312, - "rot": 0, - "props": { - "w": 39, - "h": 32, - "fill": "hsl(339 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08358": { - "id": "shape:perf:08358", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 5312, - "rot": 0, - "props": { - "w": 43, - "h": 29, - "fill": "hsl(315 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08359": { - "id": "shape:perf:08359", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 5312, - "rot": 0, - "props": { - "w": 26, - "h": 36, - "fill": "hsl(136 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08360": { - "id": "shape:perf:08360", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 5312, - "rot": 0, - "props": { - "w": 36, - "h": 41, - "fill": "hsl(68 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08361": { - "id": "shape:perf:08361", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 5312, - "rot": 0, - "props": { - "w": 42, - "h": 37, - "fill": "hsl(206 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08362": { - "id": "shape:perf:08362", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 5312, - "rot": 0, - "props": { - "w": 25, - "h": 45, - "fill": "hsl(80 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08363": { - "id": "shape:perf:08363", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 5312, - "rot": 0, - "props": { - "w": 44, - "h": 42, - "fill": "hsl(210 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08364": { - "id": "shape:perf:08364", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 5312, - "rot": 0, - "props": { - "w": 34, - "h": 32, - "fill": "hsl(11 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08365": { - "id": "shape:perf:08365", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 5312, - "rot": 0, - "props": { - "w": 42, - "h": 33, - "fill": "hsl(123 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08366": { - "id": "shape:perf:08366", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 5312, - "rot": 0, - "props": { - "w": 26, - "h": 42, - "fill": "hsl(134 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08367": { - "id": "shape:perf:08367", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 5312, - "rot": 0, - "props": { - "w": 37, - "h": 35, - "fill": "hsl(209 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08368": { - "id": "shape:perf:08368", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 5312, - "rot": 0, - "props": { - "w": 24, - "h": 32, - "fill": "hsl(242 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08369": { - "id": "shape:perf:08369", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 5312, - "rot": 0, - "props": { - "w": 47, - "h": 44, - "fill": "hsl(96 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08370": { - "id": "shape:perf:08370", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 5312, - "rot": 0, - "props": { - "w": 30, - "h": 32, - "fill": "hsl(64 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08371": { - "id": "shape:perf:08371", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 5312, - "rot": 0, - "props": { - "w": 46, - "h": 37, - "fill": "hsl(285 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08372": { - "id": "shape:perf:08372", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 5312, - "rot": 0, - "props": { - "w": 27, - "h": 42, - "fill": "hsl(102 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08373": { - "id": "shape:perf:08373", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 5312, - "rot": 0, - "props": { - "w": 36, - "h": 27, - "fill": "hsl(40 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08374": { - "id": "shape:perf:08374", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 5312, - "rot": 0, - "props": { - "w": 28, - "h": 45, - "fill": "hsl(26 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08375": { - "id": "shape:perf:08375", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 5312, - "rot": 0, - "props": { - "w": 43, - "h": 45, - "fill": "hsl(225 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08376": { - "id": "shape:perf:08376", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 5312, - "rot": 0, - "props": { - "w": 26, - "h": 46, - "fill": "hsl(250 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08377": { - "id": "shape:perf:08377", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 5312, - "rot": 0, - "props": { - "w": 40, - "h": 45, - "fill": "hsl(311 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08378": { - "id": "shape:perf:08378", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 5312, - "rot": 0, - "props": { - "w": 45, - "h": 31, - "fill": "hsl(284 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08379": { - "id": "shape:perf:08379", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 5312, - "rot": 0, - "props": { - "w": 33, - "h": 28, - "fill": "hsl(83 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08380": { - "id": "shape:perf:08380", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 5312, - "rot": 0, - "props": { - "w": 37, - "h": 38, - "fill": "hsl(193 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08381": { - "id": "shape:perf:08381", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 5312, - "rot": 0, - "props": { - "w": 28, - "h": 44, - "fill": "hsl(308 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08382": { - "id": "shape:perf:08382", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 5312, - "rot": 0, - "props": { - "w": 42, - "h": 32, - "fill": "hsl(124 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08383": { - "id": "shape:perf:08383", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 5312, - "rot": 0, - "props": { - "w": 29, - "h": 28, - "fill": "hsl(329 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08384": { - "id": "shape:perf:08384", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 5312, - "rot": 0, - "props": { - "w": 28, - "h": 24, - "fill": "hsl(185 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08385": { - "id": "shape:perf:08385", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 5312, - "rot": 0, - "props": { - "w": 38, - "h": 38, - "fill": "hsl(21 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08386": { - "id": "shape:perf:08386", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 5312, - "rot": 0, - "props": { - "w": 43, - "h": 29, - "fill": "hsl(287 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08387": { - "id": "shape:perf:08387", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 5312, - "rot": 0, - "props": { - "w": 32, - "h": 24, - "fill": "hsl(133 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08388": { - "id": "shape:perf:08388", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 5312, - "rot": 0, - "props": { - "w": 25, - "h": 24, - "fill": "hsl(126 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08389": { - "id": "shape:perf:08389", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 5312, - "rot": 0, - "props": { - "w": 27, - "h": 46, - "fill": "hsl(145 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08390": { - "id": "shape:perf:08390", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 5312, - "rot": 0, - "props": { - "w": 46, - "h": 27, - "fill": "hsl(157 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08391": { - "id": "shape:perf:08391", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 5312, - "rot": 0, - "props": { - "w": 31, - "h": 45, - "fill": "hsl(50 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08392": { - "id": "shape:perf:08392", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 5312, - "rot": 0, - "props": { - "w": 34, - "h": 28, - "fill": "hsl(121 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08393": { - "id": "shape:perf:08393", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 5312, - "rot": 0, - "props": { - "w": 37, - "h": 47, - "fill": "hsl(43 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08394": { - "id": "shape:perf:08394", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 5312, - "rot": 0, - "props": { - "w": 38, - "h": 33, - "fill": "hsl(174 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08395": { - "id": "shape:perf:08395", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 5312, - "rot": 0, - "props": { - "w": 41, - "h": 43, - "fill": "hsl(348 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08396": { - "id": "shape:perf:08396", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 5312, - "rot": 0, - "props": { - "w": 44, - "h": 32, - "fill": "hsl(187 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08397": { - "id": "shape:perf:08397", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 5312, - "rot": 0, - "props": { - "w": 26, - "h": 38, - "fill": "hsl(151 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08398": { - "id": "shape:perf:08398", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 5312, - "rot": 0, - "props": { - "w": 30, - "h": 35, - "fill": "hsl(171 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08399": { - "id": "shape:perf:08399", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 5312, - "rot": 0, - "props": { - "w": 33, - "h": 26, - "fill": "hsl(3 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08400": { - "id": "shape:perf:08400", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 5376, - "rot": 0, - "props": { - "w": 27, - "h": 44, - "fill": "hsl(346 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08401": { - "id": "shape:perf:08401", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 5376, - "rot": 0, - "props": { - "w": 41, - "h": 31, - "fill": "hsl(23 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08402": { - "id": "shape:perf:08402", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 5376, - "rot": 0, - "props": { - "w": 39, - "h": 38, - "fill": "hsl(295 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08403": { - "id": "shape:perf:08403", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 5376, - "rot": 0, - "props": { - "w": 32, - "h": 41, - "fill": "hsl(11 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08404": { - "id": "shape:perf:08404", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 5376, - "rot": 0, - "props": { - "w": 45, - "h": 37, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08405": { - "id": "shape:perf:08405", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 5376, - "rot": 0, - "props": { - "w": 47, - "h": 40, - "fill": "hsl(219 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08406": { - "id": "shape:perf:08406", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 5376, - "rot": 0, - "props": { - "w": 37, - "h": 29, - "fill": "hsl(105 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08407": { - "id": "shape:perf:08407", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 5376, - "rot": 0, - "props": { - "w": 32, - "h": 34, - "fill": "hsl(6 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08408": { - "id": "shape:perf:08408", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 5376, - "rot": 0, - "props": { - "w": 37, - "h": 39, - "fill": "hsl(261 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08409": { - "id": "shape:perf:08409", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 5376, - "rot": 0, - "props": { - "w": 24, - "h": 41, - "fill": "hsl(137 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08410": { - "id": "shape:perf:08410", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 5376, - "rot": 0, - "props": { - "w": 36, - "h": 34, - "fill": "hsl(153 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08411": { - "id": "shape:perf:08411", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 5376, - "rot": 0, - "props": { - "w": 38, - "h": 42, - "fill": "hsl(323 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08412": { - "id": "shape:perf:08412", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 5376, - "rot": 0, - "props": { - "w": 40, - "h": 26, - "fill": "hsl(301 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08413": { - "id": "shape:perf:08413", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 5376, - "rot": 0, - "props": { - "w": 27, - "h": 38, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08414": { - "id": "shape:perf:08414", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 5376, - "rot": 0, - "props": { - "w": 32, - "h": 40, - "fill": "hsl(11 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08415": { - "id": "shape:perf:08415", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 5376, - "rot": 0, - "props": { - "w": 40, - "h": 34, - "fill": "hsl(97 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08416": { - "id": "shape:perf:08416", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 5376, - "rot": 0, - "props": { - "w": 40, - "h": 33, - "fill": "hsl(277 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08417": { - "id": "shape:perf:08417", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 5376, - "rot": 0, - "props": { - "w": 35, - "h": 46, - "fill": "hsl(113 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08418": { - "id": "shape:perf:08418", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 5376, - "rot": 0, - "props": { - "w": 39, - "h": 43, - "fill": "hsl(129 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08419": { - "id": "shape:perf:08419", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 5376, - "rot": 0, - "props": { - "w": 33, - "h": 35, - "fill": "hsl(118 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08420": { - "id": "shape:perf:08420", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 5376, - "rot": 0, - "props": { - "w": 38, - "h": 34, - "fill": "hsl(68 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08421": { - "id": "shape:perf:08421", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 5376, - "rot": 0, - "props": { - "w": 39, - "h": 25, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08422": { - "id": "shape:perf:08422", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 5376, - "rot": 0, - "props": { - "w": 32, - "h": 34, - "fill": "hsl(213 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08423": { - "id": "shape:perf:08423", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 5376, - "rot": 0, - "props": { - "w": 27, - "h": 27, - "fill": "hsl(139 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08424": { - "id": "shape:perf:08424", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 5376, - "rot": 0, - "props": { - "w": 28, - "h": 36, - "fill": "hsl(220 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08425": { - "id": "shape:perf:08425", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 5376, - "rot": 0, - "props": { - "w": 44, - "h": 33, - "fill": "hsl(257 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08426": { - "id": "shape:perf:08426", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 5376, - "rot": 0, - "props": { - "w": 36, - "h": 37, - "fill": "hsl(253 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08427": { - "id": "shape:perf:08427", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 5376, - "rot": 0, - "props": { - "w": 47, - "h": 44, - "fill": "hsl(251 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08428": { - "id": "shape:perf:08428", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 5376, - "rot": 0, - "props": { - "w": 33, - "h": 47, - "fill": "hsl(346 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08429": { - "id": "shape:perf:08429", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 5376, - "rot": 0, - "props": { - "w": 34, - "h": 40, - "fill": "hsl(231 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08430": { - "id": "shape:perf:08430", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 5376, - "rot": 0, - "props": { - "w": 39, - "h": 29, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08431": { - "id": "shape:perf:08431", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 5376, - "rot": 0, - "props": { - "w": 46, - "h": 46, - "fill": "hsl(166 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08432": { - "id": "shape:perf:08432", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 5376, - "rot": 0, - "props": { - "w": 40, - "h": 30, - "fill": "hsl(15 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08433": { - "id": "shape:perf:08433", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 5376, - "rot": 0, - "props": { - "w": 25, - "h": 41, - "fill": "hsl(162 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08434": { - "id": "shape:perf:08434", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 5376, - "rot": 0, - "props": { - "w": 46, - "h": 28, - "fill": "hsl(348 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08435": { - "id": "shape:perf:08435", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 5376, - "rot": 0, - "props": { - "w": 28, - "h": 43, - "fill": "hsl(83 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08436": { - "id": "shape:perf:08436", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 5376, - "rot": 0, - "props": { - "w": 27, - "h": 43, - "fill": "hsl(189 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08437": { - "id": "shape:perf:08437", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 5376, - "rot": 0, - "props": { - "w": 42, - "h": 31, - "fill": "hsl(211 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08438": { - "id": "shape:perf:08438", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 5376, - "rot": 0, - "props": { - "w": 41, - "h": 43, - "fill": "hsl(299 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08439": { - "id": "shape:perf:08439", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 5376, - "rot": 0, - "props": { - "w": 37, - "h": 45, - "fill": "hsl(30 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08440": { - "id": "shape:perf:08440", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 5376, - "rot": 0, - "props": { - "w": 24, - "h": 30, - "fill": "hsl(115 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08441": { - "id": "shape:perf:08441", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 5376, - "rot": 0, - "props": { - "w": 44, - "h": 34, - "fill": "hsl(138 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08442": { - "id": "shape:perf:08442", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 5376, - "rot": 0, - "props": { - "w": 42, - "h": 33, - "fill": "hsl(113 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08443": { - "id": "shape:perf:08443", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 5376, - "rot": 0, - "props": { - "w": 28, - "h": 41, - "fill": "hsl(109 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08444": { - "id": "shape:perf:08444", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 5376, - "rot": 0, - "props": { - "w": 30, - "h": 42, - "fill": "hsl(156 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08445": { - "id": "shape:perf:08445", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 5376, - "rot": 0, - "props": { - "w": 35, - "h": 47, - "fill": "hsl(335 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08446": { - "id": "shape:perf:08446", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 5376, - "rot": 0, - "props": { - "w": 30, - "h": 47, - "fill": "hsl(132 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08447": { - "id": "shape:perf:08447", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 5376, - "rot": 0, - "props": { - "w": 28, - "h": 31, - "fill": "hsl(149 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08448": { - "id": "shape:perf:08448", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 5376, - "rot": 0, - "props": { - "w": 32, - "h": 40, - "fill": "hsl(246 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08449": { - "id": "shape:perf:08449", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 5376, - "rot": 0, - "props": { - "w": 37, - "h": 24, - "fill": "hsl(328 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08450": { - "id": "shape:perf:08450", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 5376, - "rot": 0, - "props": { - "w": 41, - "h": 24, - "fill": "hsl(209 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08451": { - "id": "shape:perf:08451", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 5376, - "rot": 0, - "props": { - "w": 46, - "h": 35, - "fill": "hsl(291 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08452": { - "id": "shape:perf:08452", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 5376, - "rot": 0, - "props": { - "w": 29, - "h": 29, - "fill": "hsl(307 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08453": { - "id": "shape:perf:08453", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 5376, - "rot": 0, - "props": { - "w": 37, - "h": 29, - "fill": "hsl(59 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08454": { - "id": "shape:perf:08454", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 5376, - "rot": 0, - "props": { - "w": 41, - "h": 40, - "fill": "hsl(359 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08455": { - "id": "shape:perf:08455", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 5376, - "rot": 0, - "props": { - "w": 33, - "h": 33, - "fill": "hsl(124 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08456": { - "id": "shape:perf:08456", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 5376, - "rot": 0, - "props": { - "w": 29, - "h": 24, - "fill": "hsl(66 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08457": { - "id": "shape:perf:08457", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 5376, - "rot": 0, - "props": { - "w": 37, - "h": 32, - "fill": "hsl(19 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08458": { - "id": "shape:perf:08458", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 5376, - "rot": 0, - "props": { - "w": 45, - "h": 41, - "fill": "hsl(41 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08459": { - "id": "shape:perf:08459", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 5376, - "rot": 0, - "props": { - "w": 25, - "h": 36, - "fill": "hsl(214 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08460": { - "id": "shape:perf:08460", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 5376, - "rot": 0, - "props": { - "w": 30, - "h": 30, - "fill": "hsl(102 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08461": { - "id": "shape:perf:08461", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 5376, - "rot": 0, - "props": { - "w": 38, - "h": 36, - "fill": "hsl(328 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08462": { - "id": "shape:perf:08462", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 5376, - "rot": 0, - "props": { - "w": 25, - "h": 24, - "fill": "hsl(127 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08463": { - "id": "shape:perf:08463", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 5376, - "rot": 0, - "props": { - "w": 45, - "h": 39, - "fill": "hsl(250 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08464": { - "id": "shape:perf:08464", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 5376, - "rot": 0, - "props": { - "w": 25, - "h": 32, - "fill": "hsl(296 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08465": { - "id": "shape:perf:08465", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 5376, - "rot": 0, - "props": { - "w": 36, - "h": 31, - "fill": "hsl(44 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08466": { - "id": "shape:perf:08466", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 5376, - "rot": 0, - "props": { - "w": 31, - "h": 25, - "fill": "hsl(160 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08467": { - "id": "shape:perf:08467", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 5376, - "rot": 0, - "props": { - "w": 33, - "h": 42, - "fill": "hsl(335 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08468": { - "id": "shape:perf:08468", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 5376, - "rot": 0, - "props": { - "w": 35, - "h": 39, - "fill": "hsl(222 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08469": { - "id": "shape:perf:08469", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 5376, - "rot": 0, - "props": { - "w": 36, - "h": 26, - "fill": "hsl(229 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08470": { - "id": "shape:perf:08470", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 5376, - "rot": 0, - "props": { - "w": 35, - "h": 36, - "fill": "hsl(181 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08471": { - "id": "shape:perf:08471", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 5376, - "rot": 0, - "props": { - "w": 33, - "h": 29, - "fill": "hsl(177 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08472": { - "id": "shape:perf:08472", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 5376, - "rot": 0, - "props": { - "w": 42, - "h": 33, - "fill": "hsl(358 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08473": { - "id": "shape:perf:08473", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 5376, - "rot": 0, - "props": { - "w": 43, - "h": 45, - "fill": "hsl(344 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08474": { - "id": "shape:perf:08474", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 5376, - "rot": 0, - "props": { - "w": 41, - "h": 29, - "fill": "hsl(265 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08475": { - "id": "shape:perf:08475", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 5376, - "rot": 0, - "props": { - "w": 27, - "h": 28, - "fill": "hsl(31 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08476": { - "id": "shape:perf:08476", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 5376, - "rot": 0, - "props": { - "w": 28, - "h": 30, - "fill": "hsl(174 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08477": { - "id": "shape:perf:08477", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 5376, - "rot": 0, - "props": { - "w": 47, - "h": 29, - "fill": "hsl(323 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08478": { - "id": "shape:perf:08478", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 5376, - "rot": 0, - "props": { - "w": 27, - "h": 31, - "fill": "hsl(22 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08479": { - "id": "shape:perf:08479", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 5376, - "rot": 0, - "props": { - "w": 30, - "h": 45, - "fill": "hsl(109 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08480": { - "id": "shape:perf:08480", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 5376, - "rot": 0, - "props": { - "w": 28, - "h": 41, - "fill": "hsl(94 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08481": { - "id": "shape:perf:08481", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 5376, - "rot": 0, - "props": { - "w": 41, - "h": 29, - "fill": "hsl(246 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08482": { - "id": "shape:perf:08482", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 5376, - "rot": 0, - "props": { - "w": 46, - "h": 31, - "fill": "hsl(25 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08483": { - "id": "shape:perf:08483", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 5376, - "rot": 0, - "props": { - "w": 29, - "h": 28, - "fill": "hsl(335 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08484": { - "id": "shape:perf:08484", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 5376, - "rot": 0, - "props": { - "w": 24, - "h": 45, - "fill": "hsl(331 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08485": { - "id": "shape:perf:08485", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 5376, - "rot": 0, - "props": { - "w": 29, - "h": 38, - "fill": "hsl(54 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08486": { - "id": "shape:perf:08486", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 5376, - "rot": 0, - "props": { - "w": 36, - "h": 36, - "fill": "hsl(46 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08487": { - "id": "shape:perf:08487", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 5376, - "rot": 0, - "props": { - "w": 38, - "h": 43, - "fill": "hsl(225 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08488": { - "id": "shape:perf:08488", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 5376, - "rot": 0, - "props": { - "w": 25, - "h": 24, - "fill": "hsl(152 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08489": { - "id": "shape:perf:08489", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 5376, - "rot": 0, - "props": { - "w": 34, - "h": 39, - "fill": "hsl(35 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08490": { - "id": "shape:perf:08490", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 5376, - "rot": 0, - "props": { - "w": 32, - "h": 27, - "fill": "hsl(194 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08491": { - "id": "shape:perf:08491", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 5376, - "rot": 0, - "props": { - "w": 45, - "h": 24, - "fill": "hsl(222 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08492": { - "id": "shape:perf:08492", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 5376, - "rot": 0, - "props": { - "w": 35, - "h": 46, - "fill": "hsl(132 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08493": { - "id": "shape:perf:08493", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 5376, - "rot": 0, - "props": { - "w": 46, - "h": 25, - "fill": "hsl(53 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08494": { - "id": "shape:perf:08494", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 5376, - "rot": 0, - "props": { - "w": 33, - "h": 36, - "fill": "hsl(17 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08495": { - "id": "shape:perf:08495", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 5376, - "rot": 0, - "props": { - "w": 28, - "h": 30, - "fill": "hsl(128 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08496": { - "id": "shape:perf:08496", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 5376, - "rot": 0, - "props": { - "w": 29, - "h": 32, - "fill": "hsl(327 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08497": { - "id": "shape:perf:08497", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 5376, - "rot": 0, - "props": { - "w": 44, - "h": 29, - "fill": "hsl(199 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08498": { - "id": "shape:perf:08498", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 5376, - "rot": 0, - "props": { - "w": 45, - "h": 39, - "fill": "hsl(55 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08499": { - "id": "shape:perf:08499", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 5376, - "rot": 0, - "props": { - "w": 24, - "h": 39, - "fill": "hsl(113 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08500": { - "id": "shape:perf:08500", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 5440, - "rot": 0, - "props": { - "w": 43, - "h": 35, - "fill": "hsl(342 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08501": { - "id": "shape:perf:08501", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 5440, - "rot": 0, - "props": { - "w": 44, - "h": 41, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08502": { - "id": "shape:perf:08502", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 5440, - "rot": 0, - "props": { - "w": 31, - "h": 32, - "fill": "hsl(343 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08503": { - "id": "shape:perf:08503", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 5440, - "rot": 0, - "props": { - "w": 35, - "h": 30, - "fill": "hsl(109 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08504": { - "id": "shape:perf:08504", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 5440, - "rot": 0, - "props": { - "w": 26, - "h": 36, - "fill": "hsl(170 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08505": { - "id": "shape:perf:08505", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 5440, - "rot": 0, - "props": { - "w": 24, - "h": 31, - "fill": "hsl(158 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08506": { - "id": "shape:perf:08506", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 5440, - "rot": 0, - "props": { - "w": 46, - "h": 46, - "fill": "hsl(196 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08507": { - "id": "shape:perf:08507", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 5440, - "rot": 0, - "props": { - "w": 44, - "h": 47, - "fill": "hsl(10 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08508": { - "id": "shape:perf:08508", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 5440, - "rot": 0, - "props": { - "w": 28, - "h": 46, - "fill": "hsl(32 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08509": { - "id": "shape:perf:08509", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 5440, - "rot": 0, - "props": { - "w": 45, - "h": 38, - "fill": "hsl(15 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08510": { - "id": "shape:perf:08510", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 5440, - "rot": 0, - "props": { - "w": 43, - "h": 34, - "fill": "hsl(54 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08511": { - "id": "shape:perf:08511", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 5440, - "rot": 0, - "props": { - "w": 40, - "h": 40, - "fill": "hsl(280 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08512": { - "id": "shape:perf:08512", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 5440, - "rot": 0, - "props": { - "w": 38, - "h": 42, - "fill": "hsl(77 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08513": { - "id": "shape:perf:08513", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 5440, - "rot": 0, - "props": { - "w": 26, - "h": 44, - "fill": "hsl(84 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08514": { - "id": "shape:perf:08514", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 5440, - "rot": 0, - "props": { - "w": 27, - "h": 37, - "fill": "hsl(187 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08515": { - "id": "shape:perf:08515", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 5440, - "rot": 0, - "props": { - "w": 38, - "h": 26, - "fill": "hsl(159 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08516": { - "id": "shape:perf:08516", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 5440, - "rot": 0, - "props": { - "w": 30, - "h": 28, - "fill": "hsl(153 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08517": { - "id": "shape:perf:08517", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 5440, - "rot": 0, - "props": { - "w": 46, - "h": 44, - "fill": "hsl(68 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08518": { - "id": "shape:perf:08518", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 5440, - "rot": 0, - "props": { - "w": 40, - "h": 43, - "fill": "hsl(107 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08519": { - "id": "shape:perf:08519", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 5440, - "rot": 0, - "props": { - "w": 26, - "h": 34, - "fill": "hsl(85 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08520": { - "id": "shape:perf:08520", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 5440, - "rot": 0, - "props": { - "w": 31, - "h": 44, - "fill": "hsl(325 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08521": { - "id": "shape:perf:08521", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 5440, - "rot": 0, - "props": { - "w": 39, - "h": 34, - "fill": "hsl(29 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08522": { - "id": "shape:perf:08522", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 5440, - "rot": 0, - "props": { - "w": 45, - "h": 47, - "fill": "hsl(134 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08523": { - "id": "shape:perf:08523", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 5440, - "rot": 0, - "props": { - "w": 46, - "h": 29, - "fill": "hsl(311 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08524": { - "id": "shape:perf:08524", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 5440, - "rot": 0, - "props": { - "w": 46, - "h": 36, - "fill": "hsl(16 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08525": { - "id": "shape:perf:08525", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 5440, - "rot": 0, - "props": { - "w": 47, - "h": 32, - "fill": "hsl(101 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08526": { - "id": "shape:perf:08526", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 5440, - "rot": 0, - "props": { - "w": 46, - "h": 24, - "fill": "hsl(146 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08527": { - "id": "shape:perf:08527", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 5440, - "rot": 0, - "props": { - "w": 47, - "h": 31, - "fill": "hsl(355 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08528": { - "id": "shape:perf:08528", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 5440, - "rot": 0, - "props": { - "w": 42, - "h": 24, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08529": { - "id": "shape:perf:08529", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 5440, - "rot": 0, - "props": { - "w": 47, - "h": 32, - "fill": "hsl(349 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08530": { - "id": "shape:perf:08530", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 5440, - "rot": 0, - "props": { - "w": 41, - "h": 43, - "fill": "hsl(23 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08531": { - "id": "shape:perf:08531", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 5440, - "rot": 0, - "props": { - "w": 25, - "h": 43, - "fill": "hsl(75 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08532": { - "id": "shape:perf:08532", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 5440, - "rot": 0, - "props": { - "w": 33, - "h": 46, - "fill": "hsl(11 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08533": { - "id": "shape:perf:08533", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 5440, - "rot": 0, - "props": { - "w": 27, - "h": 36, - "fill": "hsl(327 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08534": { - "id": "shape:perf:08534", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 5440, - "rot": 0, - "props": { - "w": 32, - "h": 36, - "fill": "hsl(236 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08535": { - "id": "shape:perf:08535", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 5440, - "rot": 0, - "props": { - "w": 31, - "h": 44, - "fill": "hsl(348 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08536": { - "id": "shape:perf:08536", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 5440, - "rot": 0, - "props": { - "w": 35, - "h": 32, - "fill": "hsl(244 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08537": { - "id": "shape:perf:08537", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 5440, - "rot": 0, - "props": { - "w": 33, - "h": 31, - "fill": "hsl(161 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08538": { - "id": "shape:perf:08538", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 5440, - "rot": 0, - "props": { - "w": 34, - "h": 31, - "fill": "hsl(63 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08539": { - "id": "shape:perf:08539", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 5440, - "rot": 0, - "props": { - "w": 32, - "h": 38, - "fill": "hsl(17 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08540": { - "id": "shape:perf:08540", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 5440, - "rot": 0, - "props": { - "w": 43, - "h": 46, - "fill": "hsl(114 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08541": { - "id": "shape:perf:08541", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 5440, - "rot": 0, - "props": { - "w": 42, - "h": 33, - "fill": "hsl(21 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08542": { - "id": "shape:perf:08542", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 5440, - "rot": 0, - "props": { - "w": 32, - "h": 41, - "fill": "hsl(1 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08543": { - "id": "shape:perf:08543", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 5440, - "rot": 0, - "props": { - "w": 38, - "h": 42, - "fill": "hsl(208 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08544": { - "id": "shape:perf:08544", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 5440, - "rot": 0, - "props": { - "w": 44, - "h": 38, - "fill": "hsl(344 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08545": { - "id": "shape:perf:08545", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 5440, - "rot": 0, - "props": { - "w": 44, - "h": 46, - "fill": "hsl(332 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08546": { - "id": "shape:perf:08546", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 5440, - "rot": 0, - "props": { - "w": 27, - "h": 24, - "fill": "hsl(249 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08547": { - "id": "shape:perf:08547", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 5440, - "rot": 0, - "props": { - "w": 29, - "h": 44, - "fill": "hsl(265 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08548": { - "id": "shape:perf:08548", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 5440, - "rot": 0, - "props": { - "w": 40, - "h": 27, - "fill": "hsl(307 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08549": { - "id": "shape:perf:08549", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 5440, - "rot": 0, - "props": { - "w": 43, - "h": 32, - "fill": "hsl(150 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08550": { - "id": "shape:perf:08550", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 5440, - "rot": 0, - "props": { - "w": 26, - "h": 37, - "fill": "hsl(229 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08551": { - "id": "shape:perf:08551", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 5440, - "rot": 0, - "props": { - "w": 46, - "h": 33, - "fill": "hsl(205 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08552": { - "id": "shape:perf:08552", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 5440, - "rot": 0, - "props": { - "w": 41, - "h": 46, - "fill": "hsl(144 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08553": { - "id": "shape:perf:08553", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 5440, - "rot": 0, - "props": { - "w": 28, - "h": 27, - "fill": "hsl(177 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08554": { - "id": "shape:perf:08554", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 5440, - "rot": 0, - "props": { - "w": 24, - "h": 29, - "fill": "hsl(211 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08555": { - "id": "shape:perf:08555", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 5440, - "rot": 0, - "props": { - "w": 27, - "h": 45, - "fill": "hsl(208 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08556": { - "id": "shape:perf:08556", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 5440, - "rot": 0, - "props": { - "w": 31, - "h": 32, - "fill": "hsl(38 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08557": { - "id": "shape:perf:08557", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 5440, - "rot": 0, - "props": { - "w": 45, - "h": 36, - "fill": "hsl(94 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08558": { - "id": "shape:perf:08558", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 5440, - "rot": 0, - "props": { - "w": 25, - "h": 34, - "fill": "hsl(75 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08559": { - "id": "shape:perf:08559", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 5440, - "rot": 0, - "props": { - "w": 42, - "h": 42, - "fill": "hsl(6 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08560": { - "id": "shape:perf:08560", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 5440, - "rot": 0, - "props": { - "w": 44, - "h": 41, - "fill": "hsl(343 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08561": { - "id": "shape:perf:08561", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 5440, - "rot": 0, - "props": { - "w": 44, - "h": 34, - "fill": "hsl(133 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08562": { - "id": "shape:perf:08562", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 5440, - "rot": 0, - "props": { - "w": 44, - "h": 39, - "fill": "hsl(86 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08563": { - "id": "shape:perf:08563", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 5440, - "rot": 0, - "props": { - "w": 37, - "h": 40, - "fill": "hsl(25 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08564": { - "id": "shape:perf:08564", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 5440, - "rot": 0, - "props": { - "w": 45, - "h": 46, - "fill": "hsl(296 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08565": { - "id": "shape:perf:08565", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 5440, - "rot": 0, - "props": { - "w": 41, - "h": 29, - "fill": "hsl(321 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08566": { - "id": "shape:perf:08566", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 5440, - "rot": 0, - "props": { - "w": 36, - "h": 29, - "fill": "hsl(326 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08567": { - "id": "shape:perf:08567", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 5440, - "rot": 0, - "props": { - "w": 24, - "h": 41, - "fill": "hsl(116 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08568": { - "id": "shape:perf:08568", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 5440, - "rot": 0, - "props": { - "w": 32, - "h": 33, - "fill": "hsl(268 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08569": { - "id": "shape:perf:08569", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 5440, - "rot": 0, - "props": { - "w": 33, - "h": 42, - "fill": "hsl(308 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08570": { - "id": "shape:perf:08570", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 5440, - "rot": 0, - "props": { - "w": 39, - "h": 26, - "fill": "hsl(231 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08571": { - "id": "shape:perf:08571", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 5440, - "rot": 0, - "props": { - "w": 25, - "h": 33, - "fill": "hsl(75 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08572": { - "id": "shape:perf:08572", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 5440, - "rot": 0, - "props": { - "w": 32, - "h": 29, - "fill": "hsl(63 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08573": { - "id": "shape:perf:08573", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 5440, - "rot": 0, - "props": { - "w": 40, - "h": 24, - "fill": "hsl(234 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08574": { - "id": "shape:perf:08574", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 5440, - "rot": 0, - "props": { - "w": 47, - "h": 27, - "fill": "hsl(113 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08575": { - "id": "shape:perf:08575", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 5440, - "rot": 0, - "props": { - "w": 31, - "h": 36, - "fill": "hsl(116 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08576": { - "id": "shape:perf:08576", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 5440, - "rot": 0, - "props": { - "w": 36, - "h": 37, - "fill": "hsl(218 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08577": { - "id": "shape:perf:08577", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 5440, - "rot": 0, - "props": { - "w": 31, - "h": 33, - "fill": "hsl(317 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08578": { - "id": "shape:perf:08578", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 5440, - "rot": 0, - "props": { - "w": 40, - "h": 32, - "fill": "hsl(155 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08579": { - "id": "shape:perf:08579", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 5440, - "rot": 0, - "props": { - "w": 35, - "h": 32, - "fill": "hsl(305 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08580": { - "id": "shape:perf:08580", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 5440, - "rot": 0, - "props": { - "w": 29, - "h": 26, - "fill": "hsl(52 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08581": { - "id": "shape:perf:08581", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 5440, - "rot": 0, - "props": { - "w": 44, - "h": 45, - "fill": "hsl(172 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08582": { - "id": "shape:perf:08582", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 5440, - "rot": 0, - "props": { - "w": 29, - "h": 43, - "fill": "hsl(40 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08583": { - "id": "shape:perf:08583", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 5440, - "rot": 0, - "props": { - "w": 46, - "h": 39, - "fill": "hsl(148 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08584": { - "id": "shape:perf:08584", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 5440, - "rot": 0, - "props": { - "w": 47, - "h": 38, - "fill": "hsl(323 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08585": { - "id": "shape:perf:08585", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 5440, - "rot": 0, - "props": { - "w": 38, - "h": 39, - "fill": "hsl(32 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08586": { - "id": "shape:perf:08586", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 5440, - "rot": 0, - "props": { - "w": 38, - "h": 44, - "fill": "hsl(264 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08587": { - "id": "shape:perf:08587", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 5440, - "rot": 0, - "props": { - "w": 24, - "h": 32, - "fill": "hsl(50 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08588": { - "id": "shape:perf:08588", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 5440, - "rot": 0, - "props": { - "w": 26, - "h": 34, - "fill": "hsl(103 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08589": { - "id": "shape:perf:08589", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 5440, - "rot": 0, - "props": { - "w": 24, - "h": 42, - "fill": "hsl(19 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08590": { - "id": "shape:perf:08590", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 5440, - "rot": 0, - "props": { - "w": 32, - "h": 34, - "fill": "hsl(203 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08591": { - "id": "shape:perf:08591", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 5440, - "rot": 0, - "props": { - "w": 29, - "h": 25, - "fill": "hsl(275 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08592": { - "id": "shape:perf:08592", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 5440, - "rot": 0, - "props": { - "w": 29, - "h": 30, - "fill": "hsl(233 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08593": { - "id": "shape:perf:08593", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 5440, - "rot": 0, - "props": { - "w": 39, - "h": 24, - "fill": "hsl(186 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08594": { - "id": "shape:perf:08594", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 5440, - "rot": 0, - "props": { - "w": 30, - "h": 43, - "fill": "hsl(291 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08595": { - "id": "shape:perf:08595", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 5440, - "rot": 0, - "props": { - "w": 37, - "h": 26, - "fill": "hsl(2 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08596": { - "id": "shape:perf:08596", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 5440, - "rot": 0, - "props": { - "w": 26, - "h": 39, - "fill": "hsl(268 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08597": { - "id": "shape:perf:08597", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 5440, - "rot": 0, - "props": { - "w": 45, - "h": 30, - "fill": "hsl(172 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08598": { - "id": "shape:perf:08598", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 5440, - "rot": 0, - "props": { - "w": 34, - "h": 47, - "fill": "hsl(300 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08599": { - "id": "shape:perf:08599", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 5440, - "rot": 0, - "props": { - "w": 39, - "h": 39, - "fill": "hsl(217 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08600": { - "id": "shape:perf:08600", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 5504, - "rot": 0, - "props": { - "w": 31, - "h": 33, - "fill": "hsl(0 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08601": { - "id": "shape:perf:08601", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 5504, - "rot": 0, - "props": { - "w": 27, - "h": 44, - "fill": "hsl(291 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08602": { - "id": "shape:perf:08602", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 5504, - "rot": 0, - "props": { - "w": 36, - "h": 45, - "fill": "hsl(192 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08603": { - "id": "shape:perf:08603", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 5504, - "rot": 0, - "props": { - "w": 24, - "h": 30, - "fill": "hsl(255 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08604": { - "id": "shape:perf:08604", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 5504, - "rot": 0, - "props": { - "w": 24, - "h": 34, - "fill": "hsl(228 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08605": { - "id": "shape:perf:08605", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 5504, - "rot": 0, - "props": { - "w": 45, - "h": 24, - "fill": "hsl(195 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08606": { - "id": "shape:perf:08606", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 5504, - "rot": 0, - "props": { - "w": 27, - "h": 32, - "fill": "hsl(37 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08607": { - "id": "shape:perf:08607", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 5504, - "rot": 0, - "props": { - "w": 34, - "h": 44, - "fill": "hsl(192 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08608": { - "id": "shape:perf:08608", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 5504, - "rot": 0, - "props": { - "w": 47, - "h": 33, - "fill": "hsl(354 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08609": { - "id": "shape:perf:08609", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 5504, - "rot": 0, - "props": { - "w": 46, - "h": 24, - "fill": "hsl(2 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08610": { - "id": "shape:perf:08610", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 5504, - "rot": 0, - "props": { - "w": 35, - "h": 35, - "fill": "hsl(239 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08611": { - "id": "shape:perf:08611", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 5504, - "rot": 0, - "props": { - "w": 39, - "h": 39, - "fill": "hsl(162 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08612": { - "id": "shape:perf:08612", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 5504, - "rot": 0, - "props": { - "w": 29, - "h": 38, - "fill": "hsl(250 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08613": { - "id": "shape:perf:08613", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 5504, - "rot": 0, - "props": { - "w": 24, - "h": 24, - "fill": "hsl(193 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08614": { - "id": "shape:perf:08614", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 5504, - "rot": 0, - "props": { - "w": 30, - "h": 43, - "fill": "hsl(184 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08615": { - "id": "shape:perf:08615", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 5504, - "rot": 0, - "props": { - "w": 41, - "h": 27, - "fill": "hsl(338 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08616": { - "id": "shape:perf:08616", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 5504, - "rot": 0, - "props": { - "w": 24, - "h": 29, - "fill": "hsl(208 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08617": { - "id": "shape:perf:08617", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 5504, - "rot": 0, - "props": { - "w": 24, - "h": 24, - "fill": "hsl(324 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08618": { - "id": "shape:perf:08618", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 5504, - "rot": 0, - "props": { - "w": 25, - "h": 39, - "fill": "hsl(339 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08619": { - "id": "shape:perf:08619", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 5504, - "rot": 0, - "props": { - "w": 36, - "h": 38, - "fill": "hsl(25 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08620": { - "id": "shape:perf:08620", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 5504, - "rot": 0, - "props": { - "w": 40, - "h": 37, - "fill": "hsl(101 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08621": { - "id": "shape:perf:08621", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 5504, - "rot": 0, - "props": { - "w": 29, - "h": 34, - "fill": "hsl(229 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08622": { - "id": "shape:perf:08622", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 5504, - "rot": 0, - "props": { - "w": 38, - "h": 27, - "fill": "hsl(326 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08623": { - "id": "shape:perf:08623", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 5504, - "rot": 0, - "props": { - "w": 32, - "h": 26, - "fill": "hsl(160 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08624": { - "id": "shape:perf:08624", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 5504, - "rot": 0, - "props": { - "w": 28, - "h": 47, - "fill": "hsl(42 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08625": { - "id": "shape:perf:08625", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 5504, - "rot": 0, - "props": { - "w": 39, - "h": 37, - "fill": "hsl(338 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08626": { - "id": "shape:perf:08626", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 5504, - "rot": 0, - "props": { - "w": 45, - "h": 29, - "fill": "hsl(355 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08627": { - "id": "shape:perf:08627", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 5504, - "rot": 0, - "props": { - "w": 27, - "h": 45, - "fill": "hsl(274 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08628": { - "id": "shape:perf:08628", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 5504, - "rot": 0, - "props": { - "w": 32, - "h": 36, - "fill": "hsl(238 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08629": { - "id": "shape:perf:08629", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 5504, - "rot": 0, - "props": { - "w": 39, - "h": 40, - "fill": "hsl(301 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08630": { - "id": "shape:perf:08630", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 5504, - "rot": 0, - "props": { - "w": 31, - "h": 30, - "fill": "hsl(141 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08631": { - "id": "shape:perf:08631", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 5504, - "rot": 0, - "props": { - "w": 45, - "h": 29, - "fill": "hsl(153 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08632": { - "id": "shape:perf:08632", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 5504, - "rot": 0, - "props": { - "w": 46, - "h": 47, - "fill": "hsl(353 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08633": { - "id": "shape:perf:08633", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 5504, - "rot": 0, - "props": { - "w": 33, - "h": 27, - "fill": "hsl(255 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08634": { - "id": "shape:perf:08634", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 5504, - "rot": 0, - "props": { - "w": 32, - "h": 29, - "fill": "hsl(6 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08635": { - "id": "shape:perf:08635", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 5504, - "rot": 0, - "props": { - "w": 40, - "h": 45, - "fill": "hsl(320 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08636": { - "id": "shape:perf:08636", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 5504, - "rot": 0, - "props": { - "w": 43, - "h": 25, - "fill": "hsl(219 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08637": { - "id": "shape:perf:08637", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 5504, - "rot": 0, - "props": { - "w": 30, - "h": 46, - "fill": "hsl(170 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08638": { - "id": "shape:perf:08638", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 5504, - "rot": 0, - "props": { - "w": 36, - "h": 40, - "fill": "hsl(259 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08639": { - "id": "shape:perf:08639", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 5504, - "rot": 0, - "props": { - "w": 43, - "h": 27, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08640": { - "id": "shape:perf:08640", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 5504, - "rot": 0, - "props": { - "w": 47, - "h": 37, - "fill": "hsl(219 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08641": { - "id": "shape:perf:08641", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 5504, - "rot": 0, - "props": { - "w": 32, - "h": 31, - "fill": "hsl(345 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08642": { - "id": "shape:perf:08642", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 5504, - "rot": 0, - "props": { - "w": 28, - "h": 46, - "fill": "hsl(140 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08643": { - "id": "shape:perf:08643", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 5504, - "rot": 0, - "props": { - "w": 25, - "h": 24, - "fill": "hsl(310 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08644": { - "id": "shape:perf:08644", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 5504, - "rot": 0, - "props": { - "w": 33, - "h": 35, - "fill": "hsl(123 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08645": { - "id": "shape:perf:08645", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 5504, - "rot": 0, - "props": { - "w": 25, - "h": 39, - "fill": "hsl(98 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08646": { - "id": "shape:perf:08646", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 5504, - "rot": 0, - "props": { - "w": 25, - "h": 47, - "fill": "hsl(165 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08647": { - "id": "shape:perf:08647", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 5504, - "rot": 0, - "props": { - "w": 41, - "h": 43, - "fill": "hsl(259 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08648": { - "id": "shape:perf:08648", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 5504, - "rot": 0, - "props": { - "w": 41, - "h": 30, - "fill": "hsl(297 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08649": { - "id": "shape:perf:08649", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 5504, - "rot": 0, - "props": { - "w": 32, - "h": 42, - "fill": "hsl(77 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08650": { - "id": "shape:perf:08650", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 5504, - "rot": 0, - "props": { - "w": 30, - "h": 31, - "fill": "hsl(331 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08651": { - "id": "shape:perf:08651", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 5504, - "rot": 0, - "props": { - "w": 29, - "h": 34, - "fill": "hsl(11 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08652": { - "id": "shape:perf:08652", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 5504, - "rot": 0, - "props": { - "w": 29, - "h": 33, - "fill": "hsl(266 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08653": { - "id": "shape:perf:08653", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 5504, - "rot": 0, - "props": { - "w": 40, - "h": 43, - "fill": "hsl(2 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08654": { - "id": "shape:perf:08654", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 5504, - "rot": 0, - "props": { - "w": 43, - "h": 35, - "fill": "hsl(0 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08655": { - "id": "shape:perf:08655", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 5504, - "rot": 0, - "props": { - "w": 33, - "h": 27, - "fill": "hsl(56 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08656": { - "id": "shape:perf:08656", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 5504, - "rot": 0, - "props": { - "w": 39, - "h": 40, - "fill": "hsl(175 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08657": { - "id": "shape:perf:08657", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 5504, - "rot": 0, - "props": { - "w": 32, - "h": 30, - "fill": "hsl(336 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08658": { - "id": "shape:perf:08658", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 5504, - "rot": 0, - "props": { - "w": 39, - "h": 31, - "fill": "hsl(21 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08659": { - "id": "shape:perf:08659", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 5504, - "rot": 0, - "props": { - "w": 32, - "h": 28, - "fill": "hsl(259 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08660": { - "id": "shape:perf:08660", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 5504, - "rot": 0, - "props": { - "w": 28, - "h": 31, - "fill": "hsl(323 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08661": { - "id": "shape:perf:08661", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 5504, - "rot": 0, - "props": { - "w": 24, - "h": 47, - "fill": "hsl(235 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08662": { - "id": "shape:perf:08662", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 5504, - "rot": 0, - "props": { - "w": 28, - "h": 44, - "fill": "hsl(133 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08663": { - "id": "shape:perf:08663", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 5504, - "rot": 0, - "props": { - "w": 30, - "h": 27, - "fill": "hsl(290 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08664": { - "id": "shape:perf:08664", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 5504, - "rot": 0, - "props": { - "w": 24, - "h": 42, - "fill": "hsl(153 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08665": { - "id": "shape:perf:08665", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 5504, - "rot": 0, - "props": { - "w": 38, - "h": 37, - "fill": "hsl(83 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08666": { - "id": "shape:perf:08666", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 5504, - "rot": 0, - "props": { - "w": 47, - "h": 36, - "fill": "hsl(304 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08667": { - "id": "shape:perf:08667", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 5504, - "rot": 0, - "props": { - "w": 25, - "h": 38, - "fill": "hsl(86 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08668": { - "id": "shape:perf:08668", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 5504, - "rot": 0, - "props": { - "w": 38, - "h": 31, - "fill": "hsl(352 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08669": { - "id": "shape:perf:08669", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 5504, - "rot": 0, - "props": { - "w": 46, - "h": 33, - "fill": "hsl(68 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08670": { - "id": "shape:perf:08670", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 5504, - "rot": 0, - "props": { - "w": 45, - "h": 25, - "fill": "hsl(305 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08671": { - "id": "shape:perf:08671", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 5504, - "rot": 0, - "props": { - "w": 37, - "h": 28, - "fill": "hsl(310 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08672": { - "id": "shape:perf:08672", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 5504, - "rot": 0, - "props": { - "w": 47, - "h": 44, - "fill": "hsl(256 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08673": { - "id": "shape:perf:08673", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 5504, - "rot": 0, - "props": { - "w": 32, - "h": 40, - "fill": "hsl(59 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08674": { - "id": "shape:perf:08674", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 5504, - "rot": 0, - "props": { - "w": 34, - "h": 35, - "fill": "hsl(246 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08675": { - "id": "shape:perf:08675", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 5504, - "rot": 0, - "props": { - "w": 24, - "h": 45, - "fill": "hsl(11 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08676": { - "id": "shape:perf:08676", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 5504, - "rot": 0, - "props": { - "w": 39, - "h": 43, - "fill": "hsl(140 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08677": { - "id": "shape:perf:08677", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 5504, - "rot": 0, - "props": { - "w": 40, - "h": 35, - "fill": "hsl(317 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08678": { - "id": "shape:perf:08678", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 5504, - "rot": 0, - "props": { - "w": 28, - "h": 44, - "fill": "hsl(145 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08679": { - "id": "shape:perf:08679", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 5504, - "rot": 0, - "props": { - "w": 47, - "h": 34, - "fill": "hsl(254 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08680": { - "id": "shape:perf:08680", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 5504, - "rot": 0, - "props": { - "w": 27, - "h": 27, - "fill": "hsl(83 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08681": { - "id": "shape:perf:08681", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 5504, - "rot": 0, - "props": { - "w": 26, - "h": 39, - "fill": "hsl(211 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08682": { - "id": "shape:perf:08682", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 5504, - "rot": 0, - "props": { - "w": 34, - "h": 33, - "fill": "hsl(344 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08683": { - "id": "shape:perf:08683", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 5504, - "rot": 0, - "props": { - "w": 27, - "h": 31, - "fill": "hsl(298 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08684": { - "id": "shape:perf:08684", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 5504, - "rot": 0, - "props": { - "w": 40, - "h": 29, - "fill": "hsl(93 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08685": { - "id": "shape:perf:08685", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 5504, - "rot": 0, - "props": { - "w": 26, - "h": 32, - "fill": "hsl(62 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08686": { - "id": "shape:perf:08686", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 5504, - "rot": 0, - "props": { - "w": 28, - "h": 45, - "fill": "hsl(339 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08687": { - "id": "shape:perf:08687", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 5504, - "rot": 0, - "props": { - "w": 45, - "h": 24, - "fill": "hsl(321 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08688": { - "id": "shape:perf:08688", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 5504, - "rot": 0, - "props": { - "w": 24, - "h": 43, - "fill": "hsl(211 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08689": { - "id": "shape:perf:08689", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 5504, - "rot": 0, - "props": { - "w": 29, - "h": 28, - "fill": "hsl(200 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08690": { - "id": "shape:perf:08690", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 5504, - "rot": 0, - "props": { - "w": 31, - "h": 42, - "fill": "hsl(143 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08691": { - "id": "shape:perf:08691", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 5504, - "rot": 0, - "props": { - "w": 31, - "h": 32, - "fill": "hsl(326 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08692": { - "id": "shape:perf:08692", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 5504, - "rot": 0, - "props": { - "w": 35, - "h": 46, - "fill": "hsl(82 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08693": { - "id": "shape:perf:08693", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 5504, - "rot": 0, - "props": { - "w": 47, - "h": 33, - "fill": "hsl(48 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08694": { - "id": "shape:perf:08694", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 5504, - "rot": 0, - "props": { - "w": 41, - "h": 38, - "fill": "hsl(136 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08695": { - "id": "shape:perf:08695", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 5504, - "rot": 0, - "props": { - "w": 25, - "h": 24, - "fill": "hsl(53 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08696": { - "id": "shape:perf:08696", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 5504, - "rot": 0, - "props": { - "w": 31, - "h": 35, - "fill": "hsl(98 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08697": { - "id": "shape:perf:08697", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 5504, - "rot": 0, - "props": { - "w": 42, - "h": 29, - "fill": "hsl(113 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08698": { - "id": "shape:perf:08698", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 5504, - "rot": 0, - "props": { - "w": 41, - "h": 24, - "fill": "hsl(121 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08699": { - "id": "shape:perf:08699", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 5504, - "rot": 0, - "props": { - "w": 42, - "h": 35, - "fill": "hsl(136 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08700": { - "id": "shape:perf:08700", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 5568, - "rot": 0, - "props": { - "w": 24, - "h": 27, - "fill": "hsl(204 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08701": { - "id": "shape:perf:08701", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 5568, - "rot": 0, - "props": { - "w": 34, - "h": 28, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08702": { - "id": "shape:perf:08702", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 5568, - "rot": 0, - "props": { - "w": 34, - "h": 24, - "fill": "hsl(176 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08703": { - "id": "shape:perf:08703", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 5568, - "rot": 0, - "props": { - "w": 27, - "h": 29, - "fill": "hsl(167 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08704": { - "id": "shape:perf:08704", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 5568, - "rot": 0, - "props": { - "w": 47, - "h": 39, - "fill": "hsl(78 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08705": { - "id": "shape:perf:08705", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 5568, - "rot": 0, - "props": { - "w": 42, - "h": 33, - "fill": "hsl(294 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08706": { - "id": "shape:perf:08706", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 5568, - "rot": 0, - "props": { - "w": 42, - "h": 31, - "fill": "hsl(255 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08707": { - "id": "shape:perf:08707", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 5568, - "rot": 0, - "props": { - "w": 45, - "h": 47, - "fill": "hsl(201 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08708": { - "id": "shape:perf:08708", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 5568, - "rot": 0, - "props": { - "w": 31, - "h": 46, - "fill": "hsl(212 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08709": { - "id": "shape:perf:08709", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 5568, - "rot": 0, - "props": { - "w": 36, - "h": 38, - "fill": "hsl(25 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08710": { - "id": "shape:perf:08710", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 5568, - "rot": 0, - "props": { - "w": 25, - "h": 26, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08711": { - "id": "shape:perf:08711", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 5568, - "rot": 0, - "props": { - "w": 35, - "h": 45, - "fill": "hsl(91 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08712": { - "id": "shape:perf:08712", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 5568, - "rot": 0, - "props": { - "w": 31, - "h": 30, - "fill": "hsl(212 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08713": { - "id": "shape:perf:08713", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 5568, - "rot": 0, - "props": { - "w": 30, - "h": 42, - "fill": "hsl(302 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08714": { - "id": "shape:perf:08714", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 5568, - "rot": 0, - "props": { - "w": 33, - "h": 35, - "fill": "hsl(328 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08715": { - "id": "shape:perf:08715", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 5568, - "rot": 0, - "props": { - "w": 43, - "h": 33, - "fill": "hsl(146 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08716": { - "id": "shape:perf:08716", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 5568, - "rot": 0, - "props": { - "w": 47, - "h": 28, - "fill": "hsl(140 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08717": { - "id": "shape:perf:08717", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 5568, - "rot": 0, - "props": { - "w": 32, - "h": 37, - "fill": "hsl(59 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08718": { - "id": "shape:perf:08718", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 5568, - "rot": 0, - "props": { - "w": 28, - "h": 38, - "fill": "hsl(54 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08719": { - "id": "shape:perf:08719", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 5568, - "rot": 0, - "props": { - "w": 38, - "h": 46, - "fill": "hsl(193 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08720": { - "id": "shape:perf:08720", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 5568, - "rot": 0, - "props": { - "w": 32, - "h": 27, - "fill": "hsl(339 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08721": { - "id": "shape:perf:08721", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 5568, - "rot": 0, - "props": { - "w": 26, - "h": 28, - "fill": "hsl(229 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08722": { - "id": "shape:perf:08722", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 5568, - "rot": 0, - "props": { - "w": 41, - "h": 42, - "fill": "hsl(161 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08723": { - "id": "shape:perf:08723", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 5568, - "rot": 0, - "props": { - "w": 26, - "h": 45, - "fill": "hsl(356 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08724": { - "id": "shape:perf:08724", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 5568, - "rot": 0, - "props": { - "w": 35, - "h": 39, - "fill": "hsl(316 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08725": { - "id": "shape:perf:08725", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 5568, - "rot": 0, - "props": { - "w": 28, - "h": 36, - "fill": "hsl(358 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08726": { - "id": "shape:perf:08726", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 5568, - "rot": 0, - "props": { - "w": 33, - "h": 34, - "fill": "hsl(308 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08727": { - "id": "shape:perf:08727", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 5568, - "rot": 0, - "props": { - "w": 31, - "h": 31, - "fill": "hsl(86 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08728": { - "id": "shape:perf:08728", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 5568, - "rot": 0, - "props": { - "w": 40, - "h": 43, - "fill": "hsl(241 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08729": { - "id": "shape:perf:08729", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 5568, - "rot": 0, - "props": { - "w": 38, - "h": 40, - "fill": "hsl(60 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08730": { - "id": "shape:perf:08730", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 5568, - "rot": 0, - "props": { - "w": 29, - "h": 45, - "fill": "hsl(143 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08731": { - "id": "shape:perf:08731", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 5568, - "rot": 0, - "props": { - "w": 43, - "h": 30, - "fill": "hsl(24 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08732": { - "id": "shape:perf:08732", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 5568, - "rot": 0, - "props": { - "w": 38, - "h": 32, - "fill": "hsl(54 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08733": { - "id": "shape:perf:08733", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 5568, - "rot": 0, - "props": { - "w": 41, - "h": 25, - "fill": "hsl(32 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08734": { - "id": "shape:perf:08734", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 5568, - "rot": 0, - "props": { - "w": 31, - "h": 43, - "fill": "hsl(353 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08735": { - "id": "shape:perf:08735", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 5568, - "rot": 0, - "props": { - "w": 28, - "h": 47, - "fill": "hsl(180 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08736": { - "id": "shape:perf:08736", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 5568, - "rot": 0, - "props": { - "w": 38, - "h": 44, - "fill": "hsl(275 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08737": { - "id": "shape:perf:08737", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 5568, - "rot": 0, - "props": { - "w": 40, - "h": 34, - "fill": "hsl(316 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08738": { - "id": "shape:perf:08738", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 5568, - "rot": 0, - "props": { - "w": 42, - "h": 24, - "fill": "hsl(251 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08739": { - "id": "shape:perf:08739", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 5568, - "rot": 0, - "props": { - "w": 25, - "h": 28, - "fill": "hsl(245 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08740": { - "id": "shape:perf:08740", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 5568, - "rot": 0, - "props": { - "w": 25, - "h": 36, - "fill": "hsl(53 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08741": { - "id": "shape:perf:08741", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 5568, - "rot": 0, - "props": { - "w": 47, - "h": 45, - "fill": "hsl(24 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08742": { - "id": "shape:perf:08742", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 5568, - "rot": 0, - "props": { - "w": 37, - "h": 35, - "fill": "hsl(73 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08743": { - "id": "shape:perf:08743", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 5568, - "rot": 0, - "props": { - "w": 43, - "h": 46, - "fill": "hsl(34 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08744": { - "id": "shape:perf:08744", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 5568, - "rot": 0, - "props": { - "w": 34, - "h": 27, - "fill": "hsl(322 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08745": { - "id": "shape:perf:08745", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 5568, - "rot": 0, - "props": { - "w": 41, - "h": 38, - "fill": "hsl(22 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08746": { - "id": "shape:perf:08746", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 5568, - "rot": 0, - "props": { - "w": 31, - "h": 44, - "fill": "hsl(83 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08747": { - "id": "shape:perf:08747", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 5568, - "rot": 0, - "props": { - "w": 30, - "h": 37, - "fill": "hsl(303 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08748": { - "id": "shape:perf:08748", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 5568, - "rot": 0, - "props": { - "w": 40, - "h": 27, - "fill": "hsl(231 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08749": { - "id": "shape:perf:08749", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 5568, - "rot": 0, - "props": { - "w": 45, - "h": 25, - "fill": "hsl(8 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08750": { - "id": "shape:perf:08750", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 5568, - "rot": 0, - "props": { - "w": 33, - "h": 31, - "fill": "hsl(134 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08751": { - "id": "shape:perf:08751", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 5568, - "rot": 0, - "props": { - "w": 38, - "h": 38, - "fill": "hsl(311 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08752": { - "id": "shape:perf:08752", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 5568, - "rot": 0, - "props": { - "w": 31, - "h": 28, - "fill": "hsl(286 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08753": { - "id": "shape:perf:08753", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 5568, - "rot": 0, - "props": { - "w": 42, - "h": 24, - "fill": "hsl(275 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08754": { - "id": "shape:perf:08754", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 5568, - "rot": 0, - "props": { - "w": 39, - "h": 44, - "fill": "hsl(263 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08755": { - "id": "shape:perf:08755", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 5568, - "rot": 0, - "props": { - "w": 45, - "h": 36, - "fill": "hsl(99 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08756": { - "id": "shape:perf:08756", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 5568, - "rot": 0, - "props": { - "w": 42, - "h": 47, - "fill": "hsl(193 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08757": { - "id": "shape:perf:08757", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 5568, - "rot": 0, - "props": { - "w": 34, - "h": 42, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08758": { - "id": "shape:perf:08758", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 5568, - "rot": 0, - "props": { - "w": 29, - "h": 36, - "fill": "hsl(25 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08759": { - "id": "shape:perf:08759", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 5568, - "rot": 0, - "props": { - "w": 42, - "h": 37, - "fill": "hsl(96 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08760": { - "id": "shape:perf:08760", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 5568, - "rot": 0, - "props": { - "w": 26, - "h": 34, - "fill": "hsl(347 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08761": { - "id": "shape:perf:08761", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 5568, - "rot": 0, - "props": { - "w": 34, - "h": 44, - "fill": "hsl(91 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08762": { - "id": "shape:perf:08762", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 5568, - "rot": 0, - "props": { - "w": 40, - "h": 30, - "fill": "hsl(183 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08763": { - "id": "shape:perf:08763", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 5568, - "rot": 0, - "props": { - "w": 42, - "h": 34, - "fill": "hsl(78 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08764": { - "id": "shape:perf:08764", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 5568, - "rot": 0, - "props": { - "w": 38, - "h": 33, - "fill": "hsl(167 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08765": { - "id": "shape:perf:08765", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 5568, - "rot": 0, - "props": { - "w": 27, - "h": 45, - "fill": "hsl(308 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08766": { - "id": "shape:perf:08766", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 5568, - "rot": 0, - "props": { - "w": 25, - "h": 29, - "fill": "hsl(355 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08767": { - "id": "shape:perf:08767", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 5568, - "rot": 0, - "props": { - "w": 38, - "h": 39, - "fill": "hsl(339 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08768": { - "id": "shape:perf:08768", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 5568, - "rot": 0, - "props": { - "w": 47, - "h": 44, - "fill": "hsl(247 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08769": { - "id": "shape:perf:08769", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 5568, - "rot": 0, - "props": { - "w": 30, - "h": 41, - "fill": "hsl(24 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08770": { - "id": "shape:perf:08770", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 5568, - "rot": 0, - "props": { - "w": 43, - "h": 38, - "fill": "hsl(346 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08771": { - "id": "shape:perf:08771", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 5568, - "rot": 0, - "props": { - "w": 46, - "h": 36, - "fill": "hsl(99 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08772": { - "id": "shape:perf:08772", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 5568, - "rot": 0, - "props": { - "w": 44, - "h": 35, - "fill": "hsl(258 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08773": { - "id": "shape:perf:08773", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 5568, - "rot": 0, - "props": { - "w": 35, - "h": 38, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08774": { - "id": "shape:perf:08774", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 5568, - "rot": 0, - "props": { - "w": 34, - "h": 24, - "fill": "hsl(36 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08775": { - "id": "shape:perf:08775", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 5568, - "rot": 0, - "props": { - "w": 35, - "h": 31, - "fill": "hsl(130 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08776": { - "id": "shape:perf:08776", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 5568, - "rot": 0, - "props": { - "w": 41, - "h": 28, - "fill": "hsl(124 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08777": { - "id": "shape:perf:08777", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 5568, - "rot": 0, - "props": { - "w": 44, - "h": 45, - "fill": "hsl(217 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08778": { - "id": "shape:perf:08778", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 5568, - "rot": 0, - "props": { - "w": 43, - "h": 44, - "fill": "hsl(335 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08779": { - "id": "shape:perf:08779", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 5568, - "rot": 0, - "props": { - "w": 27, - "h": 32, - "fill": "hsl(133 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08780": { - "id": "shape:perf:08780", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 5568, - "rot": 0, - "props": { - "w": 31, - "h": 41, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08781": { - "id": "shape:perf:08781", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 5568, - "rot": 0, - "props": { - "w": 36, - "h": 37, - "fill": "hsl(289 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08782": { - "id": "shape:perf:08782", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 5568, - "rot": 0, - "props": { - "w": 38, - "h": 36, - "fill": "hsl(248 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08783": { - "id": "shape:perf:08783", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 5568, - "rot": 0, - "props": { - "w": 27, - "h": 28, - "fill": "hsl(194 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08784": { - "id": "shape:perf:08784", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 5568, - "rot": 0, - "props": { - "w": 25, - "h": 43, - "fill": "hsl(27 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08785": { - "id": "shape:perf:08785", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 5568, - "rot": 0, - "props": { - "w": 29, - "h": 29, - "fill": "hsl(106 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08786": { - "id": "shape:perf:08786", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 5568, - "rot": 0, - "props": { - "w": 42, - "h": 45, - "fill": "hsl(308 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08787": { - "id": "shape:perf:08787", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 5568, - "rot": 0, - "props": { - "w": 44, - "h": 28, - "fill": "hsl(257 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08788": { - "id": "shape:perf:08788", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 5568, - "rot": 0, - "props": { - "w": 27, - "h": 40, - "fill": "hsl(119 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08789": { - "id": "shape:perf:08789", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 5568, - "rot": 0, - "props": { - "w": 28, - "h": 47, - "fill": "hsl(111 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08790": { - "id": "shape:perf:08790", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 5568, - "rot": 0, - "props": { - "w": 24, - "h": 28, - "fill": "hsl(43 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08791": { - "id": "shape:perf:08791", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 5568, - "rot": 0, - "props": { - "w": 26, - "h": 28, - "fill": "hsl(291 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08792": { - "id": "shape:perf:08792", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 5568, - "rot": 0, - "props": { - "w": 39, - "h": 27, - "fill": "hsl(254 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08793": { - "id": "shape:perf:08793", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 5568, - "rot": 0, - "props": { - "w": 29, - "h": 45, - "fill": "hsl(112 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08794": { - "id": "shape:perf:08794", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 5568, - "rot": 0, - "props": { - "w": 42, - "h": 25, - "fill": "hsl(263 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08795": { - "id": "shape:perf:08795", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 5568, - "rot": 0, - "props": { - "w": 41, - "h": 29, - "fill": "hsl(312 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08796": { - "id": "shape:perf:08796", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 5568, - "rot": 0, - "props": { - "w": 29, - "h": 38, - "fill": "hsl(70 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08797": { - "id": "shape:perf:08797", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 5568, - "rot": 0, - "props": { - "w": 33, - "h": 40, - "fill": "hsl(209 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08798": { - "id": "shape:perf:08798", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 5568, - "rot": 0, - "props": { - "w": 30, - "h": 44, - "fill": "hsl(178 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08799": { - "id": "shape:perf:08799", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 5568, - "rot": 0, - "props": { - "w": 38, - "h": 43, - "fill": "hsl(232 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08800": { - "id": "shape:perf:08800", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 5632, - "rot": 0, - "props": { - "w": 44, - "h": 38, - "fill": "hsl(7 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08801": { - "id": "shape:perf:08801", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 5632, - "rot": 0, - "props": { - "w": 43, - "h": 46, - "fill": "hsl(315 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08802": { - "id": "shape:perf:08802", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 5632, - "rot": 0, - "props": { - "w": 34, - "h": 33, - "fill": "hsl(322 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08803": { - "id": "shape:perf:08803", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 5632, - "rot": 0, - "props": { - "w": 45, - "h": 31, - "fill": "hsl(309 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08804": { - "id": "shape:perf:08804", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 5632, - "rot": 0, - "props": { - "w": 46, - "h": 45, - "fill": "hsl(149 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08805": { - "id": "shape:perf:08805", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 5632, - "rot": 0, - "props": { - "w": 30, - "h": 40, - "fill": "hsl(348 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08806": { - "id": "shape:perf:08806", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 5632, - "rot": 0, - "props": { - "w": 26, - "h": 42, - "fill": "hsl(24 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08807": { - "id": "shape:perf:08807", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 5632, - "rot": 0, - "props": { - "w": 40, - "h": 38, - "fill": "hsl(206 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08808": { - "id": "shape:perf:08808", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 5632, - "rot": 0, - "props": { - "w": 37, - "h": 45, - "fill": "hsl(124 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08809": { - "id": "shape:perf:08809", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 5632, - "rot": 0, - "props": { - "w": 39, - "h": 42, - "fill": "hsl(31 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08810": { - "id": "shape:perf:08810", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 5632, - "rot": 0, - "props": { - "w": 47, - "h": 37, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08811": { - "id": "shape:perf:08811", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 5632, - "rot": 0, - "props": { - "w": 35, - "h": 25, - "fill": "hsl(126 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08812": { - "id": "shape:perf:08812", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 5632, - "rot": 0, - "props": { - "w": 29, - "h": 34, - "fill": "hsl(104 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08813": { - "id": "shape:perf:08813", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 5632, - "rot": 0, - "props": { - "w": 32, - "h": 41, - "fill": "hsl(211 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08814": { - "id": "shape:perf:08814", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 5632, - "rot": 0, - "props": { - "w": 44, - "h": 29, - "fill": "hsl(180 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08815": { - "id": "shape:perf:08815", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 5632, - "rot": 0, - "props": { - "w": 45, - "h": 29, - "fill": "hsl(41 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08816": { - "id": "shape:perf:08816", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 5632, - "rot": 0, - "props": { - "w": 34, - "h": 34, - "fill": "hsl(155 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08817": { - "id": "shape:perf:08817", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 5632, - "rot": 0, - "props": { - "w": 39, - "h": 27, - "fill": "hsl(126 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08818": { - "id": "shape:perf:08818", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 5632, - "rot": 0, - "props": { - "w": 41, - "h": 31, - "fill": "hsl(179 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08819": { - "id": "shape:perf:08819", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 5632, - "rot": 0, - "props": { - "w": 25, - "h": 24, - "fill": "hsl(320 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08820": { - "id": "shape:perf:08820", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 5632, - "rot": 0, - "props": { - "w": 45, - "h": 44, - "fill": "hsl(307 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08821": { - "id": "shape:perf:08821", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 5632, - "rot": 0, - "props": { - "w": 46, - "h": 38, - "fill": "hsl(279 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08822": { - "id": "shape:perf:08822", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 5632, - "rot": 0, - "props": { - "w": 32, - "h": 41, - "fill": "hsl(334 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08823": { - "id": "shape:perf:08823", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 5632, - "rot": 0, - "props": { - "w": 36, - "h": 38, - "fill": "hsl(297 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08824": { - "id": "shape:perf:08824", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 5632, - "rot": 0, - "props": { - "w": 32, - "h": 40, - "fill": "hsl(233 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08825": { - "id": "shape:perf:08825", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 5632, - "rot": 0, - "props": { - "w": 38, - "h": 30, - "fill": "hsl(124 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08826": { - "id": "shape:perf:08826", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 5632, - "rot": 0, - "props": { - "w": 36, - "h": 27, - "fill": "hsl(252 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08827": { - "id": "shape:perf:08827", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 5632, - "rot": 0, - "props": { - "w": 30, - "h": 33, - "fill": "hsl(75 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08828": { - "id": "shape:perf:08828", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 5632, - "rot": 0, - "props": { - "w": 35, - "h": 46, - "fill": "hsl(351 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08829": { - "id": "shape:perf:08829", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 5632, - "rot": 0, - "props": { - "w": 38, - "h": 35, - "fill": "hsl(35 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08830": { - "id": "shape:perf:08830", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 5632, - "rot": 0, - "props": { - "w": 45, - "h": 42, - "fill": "hsl(297 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08831": { - "id": "shape:perf:08831", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 5632, - "rot": 0, - "props": { - "w": 40, - "h": 37, - "fill": "hsl(130 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08832": { - "id": "shape:perf:08832", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 5632, - "rot": 0, - "props": { - "w": 37, - "h": 35, - "fill": "hsl(183 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08833": { - "id": "shape:perf:08833", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 5632, - "rot": 0, - "props": { - "w": 43, - "h": 39, - "fill": "hsl(201 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08834": { - "id": "shape:perf:08834", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 5632, - "rot": 0, - "props": { - "w": 46, - "h": 28, - "fill": "hsl(347 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08835": { - "id": "shape:perf:08835", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 5632, - "rot": 0, - "props": { - "w": 31, - "h": 25, - "fill": "hsl(212 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08836": { - "id": "shape:perf:08836", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 5632, - "rot": 0, - "props": { - "w": 47, - "h": 29, - "fill": "hsl(289 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08837": { - "id": "shape:perf:08837", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 5632, - "rot": 0, - "props": { - "w": 35, - "h": 39, - "fill": "hsl(323 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08838": { - "id": "shape:perf:08838", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 5632, - "rot": 0, - "props": { - "w": 39, - "h": 46, - "fill": "hsl(248 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08839": { - "id": "shape:perf:08839", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 5632, - "rot": 0, - "props": { - "w": 31, - "h": 36, - "fill": "hsl(230 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08840": { - "id": "shape:perf:08840", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 5632, - "rot": 0, - "props": { - "w": 30, - "h": 43, - "fill": "hsl(180 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08841": { - "id": "shape:perf:08841", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 5632, - "rot": 0, - "props": { - "w": 43, - "h": 39, - "fill": "hsl(141 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08842": { - "id": "shape:perf:08842", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 5632, - "rot": 0, - "props": { - "w": 34, - "h": 26, - "fill": "hsl(164 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08843": { - "id": "shape:perf:08843", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 5632, - "rot": 0, - "props": { - "w": 46, - "h": 40, - "fill": "hsl(104 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08844": { - "id": "shape:perf:08844", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 5632, - "rot": 0, - "props": { - "w": 36, - "h": 32, - "fill": "hsl(167 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08845": { - "id": "shape:perf:08845", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 5632, - "rot": 0, - "props": { - "w": 46, - "h": 34, - "fill": "hsl(163 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08846": { - "id": "shape:perf:08846", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 5632, - "rot": 0, - "props": { - "w": 32, - "h": 28, - "fill": "hsl(196 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08847": { - "id": "shape:perf:08847", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 5632, - "rot": 0, - "props": { - "w": 39, - "h": 43, - "fill": "hsl(13 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08848": { - "id": "shape:perf:08848", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 5632, - "rot": 0, - "props": { - "w": 40, - "h": 24, - "fill": "hsl(71 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08849": { - "id": "shape:perf:08849", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 5632, - "rot": 0, - "props": { - "w": 31, - "h": 47, - "fill": "hsl(295 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08850": { - "id": "shape:perf:08850", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 5632, - "rot": 0, - "props": { - "w": 27, - "h": 41, - "fill": "hsl(149 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08851": { - "id": "shape:perf:08851", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 5632, - "rot": 0, - "props": { - "w": 41, - "h": 32, - "fill": "hsl(11 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08852": { - "id": "shape:perf:08852", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 5632, - "rot": 0, - "props": { - "w": 36, - "h": 41, - "fill": "hsl(51 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08853": { - "id": "shape:perf:08853", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 5632, - "rot": 0, - "props": { - "w": 24, - "h": 40, - "fill": "hsl(235 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08854": { - "id": "shape:perf:08854", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 5632, - "rot": 0, - "props": { - "w": 32, - "h": 43, - "fill": "hsl(90 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08855": { - "id": "shape:perf:08855", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 5632, - "rot": 0, - "props": { - "w": 29, - "h": 27, - "fill": "hsl(242 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08856": { - "id": "shape:perf:08856", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 5632, - "rot": 0, - "props": { - "w": 35, - "h": 42, - "fill": "hsl(268 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08857": { - "id": "shape:perf:08857", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 5632, - "rot": 0, - "props": { - "w": 43, - "h": 44, - "fill": "hsl(222 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08858": { - "id": "shape:perf:08858", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 5632, - "rot": 0, - "props": { - "w": 35, - "h": 29, - "fill": "hsl(228 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08859": { - "id": "shape:perf:08859", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 5632, - "rot": 0, - "props": { - "w": 36, - "h": 38, - "fill": "hsl(203 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08860": { - "id": "shape:perf:08860", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 5632, - "rot": 0, - "props": { - "w": 26, - "h": 31, - "fill": "hsl(145 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08861": { - "id": "shape:perf:08861", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 5632, - "rot": 0, - "props": { - "w": 30, - "h": 32, - "fill": "hsl(90 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08862": { - "id": "shape:perf:08862", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 5632, - "rot": 0, - "props": { - "w": 46, - "h": 41, - "fill": "hsl(226 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08863": { - "id": "shape:perf:08863", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 5632, - "rot": 0, - "props": { - "w": 37, - "h": 33, - "fill": "hsl(263 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08864": { - "id": "shape:perf:08864", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 5632, - "rot": 0, - "props": { - "w": 46, - "h": 36, - "fill": "hsl(216 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08865": { - "id": "shape:perf:08865", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 5632, - "rot": 0, - "props": { - "w": 44, - "h": 28, - "fill": "hsl(49 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08866": { - "id": "shape:perf:08866", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 5632, - "rot": 0, - "props": { - "w": 40, - "h": 27, - "fill": "hsl(260 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08867": { - "id": "shape:perf:08867", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 5632, - "rot": 0, - "props": { - "w": 40, - "h": 34, - "fill": "hsl(96 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08868": { - "id": "shape:perf:08868", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 5632, - "rot": 0, - "props": { - "w": 46, - "h": 29, - "fill": "hsl(323 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08869": { - "id": "shape:perf:08869", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 5632, - "rot": 0, - "props": { - "w": 28, - "h": 37, - "fill": "hsl(251 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08870": { - "id": "shape:perf:08870", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 5632, - "rot": 0, - "props": { - "w": 45, - "h": 47, - "fill": "hsl(139 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08871": { - "id": "shape:perf:08871", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 5632, - "rot": 0, - "props": { - "w": 28, - "h": 37, - "fill": "hsl(310 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08872": { - "id": "shape:perf:08872", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 5632, - "rot": 0, - "props": { - "w": 32, - "h": 33, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08873": { - "id": "shape:perf:08873", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 5632, - "rot": 0, - "props": { - "w": 40, - "h": 31, - "fill": "hsl(241 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08874": { - "id": "shape:perf:08874", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 5632, - "rot": 0, - "props": { - "w": 28, - "h": 32, - "fill": "hsl(75 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08875": { - "id": "shape:perf:08875", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 5632, - "rot": 0, - "props": { - "w": 37, - "h": 44, - "fill": "hsl(300 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08876": { - "id": "shape:perf:08876", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 5632, - "rot": 0, - "props": { - "w": 27, - "h": 34, - "fill": "hsl(113 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08877": { - "id": "shape:perf:08877", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 5632, - "rot": 0, - "props": { - "w": 30, - "h": 37, - "fill": "hsl(185 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08878": { - "id": "shape:perf:08878", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 5632, - "rot": 0, - "props": { - "w": 37, - "h": 41, - "fill": "hsl(316 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08879": { - "id": "shape:perf:08879", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 5632, - "rot": 0, - "props": { - "w": 36, - "h": 34, - "fill": "hsl(232 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08880": { - "id": "shape:perf:08880", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 5632, - "rot": 0, - "props": { - "w": 44, - "h": 47, - "fill": "hsl(154 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08881": { - "id": "shape:perf:08881", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 5632, - "rot": 0, - "props": { - "w": 37, - "h": 42, - "fill": "hsl(129 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08882": { - "id": "shape:perf:08882", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 5632, - "rot": 0, - "props": { - "w": 37, - "h": 29, - "fill": "hsl(161 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08883": { - "id": "shape:perf:08883", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 5632, - "rot": 0, - "props": { - "w": 26, - "h": 42, - "fill": "hsl(4 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08884": { - "id": "shape:perf:08884", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 5632, - "rot": 0, - "props": { - "w": 45, - "h": 46, - "fill": "hsl(249 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08885": { - "id": "shape:perf:08885", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 5632, - "rot": 0, - "props": { - "w": 41, - "h": 44, - "fill": "hsl(84 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08886": { - "id": "shape:perf:08886", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 5632, - "rot": 0, - "props": { - "w": 24, - "h": 25, - "fill": "hsl(239 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08887": { - "id": "shape:perf:08887", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 5632, - "rot": 0, - "props": { - "w": 25, - "h": 27, - "fill": "hsl(36 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08888": { - "id": "shape:perf:08888", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 5632, - "rot": 0, - "props": { - "w": 29, - "h": 28, - "fill": "hsl(59 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08889": { - "id": "shape:perf:08889", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 5632, - "rot": 0, - "props": { - "w": 42, - "h": 44, - "fill": "hsl(238 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08890": { - "id": "shape:perf:08890", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 5632, - "rot": 0, - "props": { - "w": 38, - "h": 24, - "fill": "hsl(116 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08891": { - "id": "shape:perf:08891", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 5632, - "rot": 0, - "props": { - "w": 27, - "h": 27, - "fill": "hsl(145 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08892": { - "id": "shape:perf:08892", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 5632, - "rot": 0, - "props": { - "w": 42, - "h": 29, - "fill": "hsl(8 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08893": { - "id": "shape:perf:08893", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 5632, - "rot": 0, - "props": { - "w": 30, - "h": 37, - "fill": "hsl(326 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08894": { - "id": "shape:perf:08894", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 5632, - "rot": 0, - "props": { - "w": 41, - "h": 29, - "fill": "hsl(315 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08895": { - "id": "shape:perf:08895", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 5632, - "rot": 0, - "props": { - "w": 28, - "h": 31, - "fill": "hsl(103 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08896": { - "id": "shape:perf:08896", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 5632, - "rot": 0, - "props": { - "w": 36, - "h": 26, - "fill": "hsl(158 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08897": { - "id": "shape:perf:08897", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 5632, - "rot": 0, - "props": { - "w": 40, - "h": 41, - "fill": "hsl(142 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08898": { - "id": "shape:perf:08898", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 5632, - "rot": 0, - "props": { - "w": 46, - "h": 43, - "fill": "hsl(284 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08899": { - "id": "shape:perf:08899", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 5632, - "rot": 0, - "props": { - "w": 35, - "h": 32, - "fill": "hsl(120 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08900": { - "id": "shape:perf:08900", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 5696, - "rot": 0, - "props": { - "w": 25, - "h": 41, - "fill": "hsl(61 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08901": { - "id": "shape:perf:08901", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 5696, - "rot": 0, - "props": { - "w": 30, - "h": 24, - "fill": "hsl(61 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08902": { - "id": "shape:perf:08902", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 5696, - "rot": 0, - "props": { - "w": 32, - "h": 31, - "fill": "hsl(144 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08903": { - "id": "shape:perf:08903", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 5696, - "rot": 0, - "props": { - "w": 42, - "h": 31, - "fill": "hsl(336 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08904": { - "id": "shape:perf:08904", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 5696, - "rot": 0, - "props": { - "w": 33, - "h": 30, - "fill": "hsl(254 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08905": { - "id": "shape:perf:08905", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 5696, - "rot": 0, - "props": { - "w": 29, - "h": 42, - "fill": "hsl(122 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08906": { - "id": "shape:perf:08906", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 5696, - "rot": 0, - "props": { - "w": 39, - "h": 28, - "fill": "hsl(75 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08907": { - "id": "shape:perf:08907", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 5696, - "rot": 0, - "props": { - "w": 26, - "h": 47, - "fill": "hsl(279 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08908": { - "id": "shape:perf:08908", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 5696, - "rot": 0, - "props": { - "w": 47, - "h": 34, - "fill": "hsl(38 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08909": { - "id": "shape:perf:08909", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 5696, - "rot": 0, - "props": { - "w": 40, - "h": 27, - "fill": "hsl(320 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08910": { - "id": "shape:perf:08910", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 5696, - "rot": 0, - "props": { - "w": 25, - "h": 43, - "fill": "hsl(322 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08911": { - "id": "shape:perf:08911", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 5696, - "rot": 0, - "props": { - "w": 45, - "h": 25, - "fill": "hsl(58 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08912": { - "id": "shape:perf:08912", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 5696, - "rot": 0, - "props": { - "w": 33, - "h": 32, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08913": { - "id": "shape:perf:08913", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 5696, - "rot": 0, - "props": { - "w": 25, - "h": 33, - "fill": "hsl(139 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08914": { - "id": "shape:perf:08914", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 5696, - "rot": 0, - "props": { - "w": 36, - "h": 33, - "fill": "hsl(183 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08915": { - "id": "shape:perf:08915", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 5696, - "rot": 0, - "props": { - "w": 31, - "h": 47, - "fill": "hsl(122 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08916": { - "id": "shape:perf:08916", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 5696, - "rot": 0, - "props": { - "w": 29, - "h": 30, - "fill": "hsl(162 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08917": { - "id": "shape:perf:08917", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 5696, - "rot": 0, - "props": { - "w": 26, - "h": 30, - "fill": "hsl(119 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08918": { - "id": "shape:perf:08918", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 5696, - "rot": 0, - "props": { - "w": 45, - "h": 31, - "fill": "hsl(209 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08919": { - "id": "shape:perf:08919", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 5696, - "rot": 0, - "props": { - "w": 38, - "h": 43, - "fill": "hsl(88 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08920": { - "id": "shape:perf:08920", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 5696, - "rot": 0, - "props": { - "w": 47, - "h": 41, - "fill": "hsl(94 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08921": { - "id": "shape:perf:08921", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 5696, - "rot": 0, - "props": { - "w": 46, - "h": 41, - "fill": "hsl(100 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08922": { - "id": "shape:perf:08922", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 5696, - "rot": 0, - "props": { - "w": 33, - "h": 46, - "fill": "hsl(51 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08923": { - "id": "shape:perf:08923", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 5696, - "rot": 0, - "props": { - "w": 29, - "h": 46, - "fill": "hsl(120 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08924": { - "id": "shape:perf:08924", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 5696, - "rot": 0, - "props": { - "w": 45, - "h": 25, - "fill": "hsl(118 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08925": { - "id": "shape:perf:08925", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 5696, - "rot": 0, - "props": { - "w": 45, - "h": 31, - "fill": "hsl(338 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08926": { - "id": "shape:perf:08926", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 5696, - "rot": 0, - "props": { - "w": 40, - "h": 29, - "fill": "hsl(314 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08927": { - "id": "shape:perf:08927", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 5696, - "rot": 0, - "props": { - "w": 44, - "h": 42, - "fill": "hsl(162 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08928": { - "id": "shape:perf:08928", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 5696, - "rot": 0, - "props": { - "w": 31, - "h": 30, - "fill": "hsl(317 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08929": { - "id": "shape:perf:08929", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 5696, - "rot": 0, - "props": { - "w": 27, - "h": 32, - "fill": "hsl(320 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08930": { - "id": "shape:perf:08930", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 5696, - "rot": 0, - "props": { - "w": 47, - "h": 25, - "fill": "hsl(314 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08931": { - "id": "shape:perf:08931", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 5696, - "rot": 0, - "props": { - "w": 25, - "h": 44, - "fill": "hsl(312 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08932": { - "id": "shape:perf:08932", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 5696, - "rot": 0, - "props": { - "w": 47, - "h": 25, - "fill": "hsl(196 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08933": { - "id": "shape:perf:08933", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 5696, - "rot": 0, - "props": { - "w": 38, - "h": 32, - "fill": "hsl(228 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08934": { - "id": "shape:perf:08934", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 5696, - "rot": 0, - "props": { - "w": 30, - "h": 39, - "fill": "hsl(291 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08935": { - "id": "shape:perf:08935", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 5696, - "rot": 0, - "props": { - "w": 31, - "h": 30, - "fill": "hsl(337 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08936": { - "id": "shape:perf:08936", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 5696, - "rot": 0, - "props": { - "w": 47, - "h": 45, - "fill": "hsl(354 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08937": { - "id": "shape:perf:08937", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 5696, - "rot": 0, - "props": { - "w": 24, - "h": 36, - "fill": "hsl(27 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08938": { - "id": "shape:perf:08938", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 5696, - "rot": 0, - "props": { - "w": 41, - "h": 30, - "fill": "hsl(132 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08939": { - "id": "shape:perf:08939", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 5696, - "rot": 0, - "props": { - "w": 38, - "h": 27, - "fill": "hsl(13 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08940": { - "id": "shape:perf:08940", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 5696, - "rot": 0, - "props": { - "w": 37, - "h": 42, - "fill": "hsl(25 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08941": { - "id": "shape:perf:08941", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 5696, - "rot": 0, - "props": { - "w": 45, - "h": 28, - "fill": "hsl(256 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08942": { - "id": "shape:perf:08942", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 5696, - "rot": 0, - "props": { - "w": 41, - "h": 26, - "fill": "hsl(112 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08943": { - "id": "shape:perf:08943", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 5696, - "rot": 0, - "props": { - "w": 33, - "h": 25, - "fill": "hsl(254 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08944": { - "id": "shape:perf:08944", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 5696, - "rot": 0, - "props": { - "w": 33, - "h": 38, - "fill": "hsl(352 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08945": { - "id": "shape:perf:08945", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 5696, - "rot": 0, - "props": { - "w": 35, - "h": 35, - "fill": "hsl(30 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08946": { - "id": "shape:perf:08946", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 5696, - "rot": 0, - "props": { - "w": 34, - "h": 24, - "fill": "hsl(213 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08947": { - "id": "shape:perf:08947", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 5696, - "rot": 0, - "props": { - "w": 37, - "h": 46, - "fill": "hsl(59 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08948": { - "id": "shape:perf:08948", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 5696, - "rot": 0, - "props": { - "w": 24, - "h": 44, - "fill": "hsl(294 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08949": { - "id": "shape:perf:08949", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 5696, - "rot": 0, - "props": { - "w": 28, - "h": 41, - "fill": "hsl(99 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08950": { - "id": "shape:perf:08950", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 5696, - "rot": 0, - "props": { - "w": 31, - "h": 38, - "fill": "hsl(85 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08951": { - "id": "shape:perf:08951", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 5696, - "rot": 0, - "props": { - "w": 31, - "h": 33, - "fill": "hsl(227 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08952": { - "id": "shape:perf:08952", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 5696, - "rot": 0, - "props": { - "w": 27, - "h": 29, - "fill": "hsl(218 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08953": { - "id": "shape:perf:08953", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 5696, - "rot": 0, - "props": { - "w": 37, - "h": 31, - "fill": "hsl(191 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08954": { - "id": "shape:perf:08954", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 5696, - "rot": 0, - "props": { - "w": 40, - "h": 36, - "fill": "hsl(15 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08955": { - "id": "shape:perf:08955", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 5696, - "rot": 0, - "props": { - "w": 36, - "h": 41, - "fill": "hsl(37 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08956": { - "id": "shape:perf:08956", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 5696, - "rot": 0, - "props": { - "w": 44, - "h": 46, - "fill": "hsl(278 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08957": { - "id": "shape:perf:08957", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 5696, - "rot": 0, - "props": { - "w": 45, - "h": 47, - "fill": "hsl(88 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08958": { - "id": "shape:perf:08958", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 5696, - "rot": 0, - "props": { - "w": 37, - "h": 36, - "fill": "hsl(90 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08959": { - "id": "shape:perf:08959", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 5696, - "rot": 0, - "props": { - "w": 26, - "h": 38, - "fill": "hsl(193 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08960": { - "id": "shape:perf:08960", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 5696, - "rot": 0, - "props": { - "w": 47, - "h": 36, - "fill": "hsl(171 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08961": { - "id": "shape:perf:08961", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 5696, - "rot": 0, - "props": { - "w": 32, - "h": 43, - "fill": "hsl(337 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08962": { - "id": "shape:perf:08962", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 5696, - "rot": 0, - "props": { - "w": 46, - "h": 30, - "fill": "hsl(272 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08963": { - "id": "shape:perf:08963", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 5696, - "rot": 0, - "props": { - "w": 24, - "h": 31, - "fill": "hsl(212 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08964": { - "id": "shape:perf:08964", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 5696, - "rot": 0, - "props": { - "w": 39, - "h": 39, - "fill": "hsl(144 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08965": { - "id": "shape:perf:08965", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 5696, - "rot": 0, - "props": { - "w": 44, - "h": 31, - "fill": "hsl(333 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08966": { - "id": "shape:perf:08966", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 5696, - "rot": 0, - "props": { - "w": 36, - "h": 42, - "fill": "hsl(184 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08967": { - "id": "shape:perf:08967", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 5696, - "rot": 0, - "props": { - "w": 44, - "h": 43, - "fill": "hsl(124 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08968": { - "id": "shape:perf:08968", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 5696, - "rot": 0, - "props": { - "w": 44, - "h": 44, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08969": { - "id": "shape:perf:08969", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 5696, - "rot": 0, - "props": { - "w": 32, - "h": 30, - "fill": "hsl(299 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08970": { - "id": "shape:perf:08970", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 5696, - "rot": 0, - "props": { - "w": 44, - "h": 29, - "fill": "hsl(61 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08971": { - "id": "shape:perf:08971", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 5696, - "rot": 0, - "props": { - "w": 43, - "h": 27, - "fill": "hsl(248 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08972": { - "id": "shape:perf:08972", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 5696, - "rot": 0, - "props": { - "w": 34, - "h": 42, - "fill": "hsl(136 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08973": { - "id": "shape:perf:08973", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 5696, - "rot": 0, - "props": { - "w": 24, - "h": 45, - "fill": "hsl(49 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08974": { - "id": "shape:perf:08974", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 5696, - "rot": 0, - "props": { - "w": 37, - "h": 44, - "fill": "hsl(62 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08975": { - "id": "shape:perf:08975", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 5696, - "rot": 0, - "props": { - "w": 47, - "h": 32, - "fill": "hsl(104 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08976": { - "id": "shape:perf:08976", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 5696, - "rot": 0, - "props": { - "w": 37, - "h": 41, - "fill": "hsl(326 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08977": { - "id": "shape:perf:08977", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 5696, - "rot": 0, - "props": { - "w": 38, - "h": 37, - "fill": "hsl(145 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08978": { - "id": "shape:perf:08978", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 5696, - "rot": 0, - "props": { - "w": 43, - "h": 33, - "fill": "hsl(277 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08979": { - "id": "shape:perf:08979", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 5696, - "rot": 0, - "props": { - "w": 28, - "h": 42, - "fill": "hsl(101 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08980": { - "id": "shape:perf:08980", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 5696, - "rot": 0, - "props": { - "w": 26, - "h": 24, - "fill": "hsl(233 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08981": { - "id": "shape:perf:08981", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 5696, - "rot": 0, - "props": { - "w": 45, - "h": 37, - "fill": "hsl(327 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08982": { - "id": "shape:perf:08982", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 5696, - "rot": 0, - "props": { - "w": 32, - "h": 47, - "fill": "hsl(251 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08983": { - "id": "shape:perf:08983", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 5696, - "rot": 0, - "props": { - "w": 30, - "h": 25, - "fill": "hsl(65 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08984": { - "id": "shape:perf:08984", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 5696, - "rot": 0, - "props": { - "w": 29, - "h": 36, - "fill": "hsl(349 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08985": { - "id": "shape:perf:08985", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 5696, - "rot": 0, - "props": { - "w": 34, - "h": 41, - "fill": "hsl(268 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08986": { - "id": "shape:perf:08986", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 5696, - "rot": 0, - "props": { - "w": 44, - "h": 46, - "fill": "hsl(197 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08987": { - "id": "shape:perf:08987", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 5696, - "rot": 0, - "props": { - "w": 26, - "h": 44, - "fill": "hsl(215 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08988": { - "id": "shape:perf:08988", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 5696, - "rot": 0, - "props": { - "w": 41, - "h": 39, - "fill": "hsl(273 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08989": { - "id": "shape:perf:08989", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 5696, - "rot": 0, - "props": { - "w": 29, - "h": 24, - "fill": "hsl(264 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08990": { - "id": "shape:perf:08990", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 5696, - "rot": 0, - "props": { - "w": 29, - "h": 32, - "fill": "hsl(349 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08991": { - "id": "shape:perf:08991", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 5696, - "rot": 0, - "props": { - "w": 40, - "h": 27, - "fill": "hsl(268 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08992": { - "id": "shape:perf:08992", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 5696, - "rot": 0, - "props": { - "w": 41, - "h": 44, - "fill": "hsl(173 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08993": { - "id": "shape:perf:08993", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 5696, - "rot": 0, - "props": { - "w": 32, - "h": 45, - "fill": "hsl(222 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08994": { - "id": "shape:perf:08994", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 5696, - "rot": 0, - "props": { - "w": 25, - "h": 28, - "fill": "hsl(106 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:08995": { - "id": "shape:perf:08995", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 5696, - "rot": 0, - "props": { - "w": 42, - "h": 28, - "fill": "hsl(310 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:08996": { - "id": "shape:perf:08996", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 5696, - "rot": 0, - "props": { - "w": 30, - "h": 29, - "fill": "hsl(202 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:08997": { - "id": "shape:perf:08997", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 5696, - "rot": 0, - "props": { - "w": 39, - "h": 30, - "fill": "hsl(142 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:08998": { - "id": "shape:perf:08998", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 5696, - "rot": 0, - "props": { - "w": 42, - "h": 39, - "fill": "hsl(84 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:08999": { - "id": "shape:perf:08999", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 5696, - "rot": 0, - "props": { - "w": 28, - "h": 32, - "fill": "hsl(6 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09000": { - "id": "shape:perf:09000", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 5760, - "rot": 0, - "props": { - "w": 43, - "h": 42, - "fill": "hsl(354 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09001": { - "id": "shape:perf:09001", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 5760, - "rot": 0, - "props": { - "w": 25, - "h": 25, - "fill": "hsl(292 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09002": { - "id": "shape:perf:09002", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 5760, - "rot": 0, - "props": { - "w": 43, - "h": 38, - "fill": "hsl(247 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09003": { - "id": "shape:perf:09003", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 5760, - "rot": 0, - "props": { - "w": 45, - "h": 35, - "fill": "hsl(340 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09004": { - "id": "shape:perf:09004", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 5760, - "rot": 0, - "props": { - "w": 43, - "h": 31, - "fill": "hsl(59 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09005": { - "id": "shape:perf:09005", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 5760, - "rot": 0, - "props": { - "w": 38, - "h": 34, - "fill": "hsl(118 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09006": { - "id": "shape:perf:09006", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 5760, - "rot": 0, - "props": { - "w": 43, - "h": 47, - "fill": "hsl(307 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09007": { - "id": "shape:perf:09007", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 5760, - "rot": 0, - "props": { - "w": 41, - "h": 28, - "fill": "hsl(290 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09008": { - "id": "shape:perf:09008", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 5760, - "rot": 0, - "props": { - "w": 26, - "h": 31, - "fill": "hsl(185 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09009": { - "id": "shape:perf:09009", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 5760, - "rot": 0, - "props": { - "w": 35, - "h": 47, - "fill": "hsl(23 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09010": { - "id": "shape:perf:09010", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 5760, - "rot": 0, - "props": { - "w": 46, - "h": 29, - "fill": "hsl(67 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09011": { - "id": "shape:perf:09011", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 5760, - "rot": 0, - "props": { - "w": 33, - "h": 45, - "fill": "hsl(42 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09012": { - "id": "shape:perf:09012", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 5760, - "rot": 0, - "props": { - "w": 41, - "h": 35, - "fill": "hsl(88 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09013": { - "id": "shape:perf:09013", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 5760, - "rot": 0, - "props": { - "w": 25, - "h": 40, - "fill": "hsl(211 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09014": { - "id": "shape:perf:09014", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 5760, - "rot": 0, - "props": { - "w": 40, - "h": 41, - "fill": "hsl(308 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09015": { - "id": "shape:perf:09015", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 5760, - "rot": 0, - "props": { - "w": 36, - "h": 44, - "fill": "hsl(72 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09016": { - "id": "shape:perf:09016", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 5760, - "rot": 0, - "props": { - "w": 43, - "h": 33, - "fill": "hsl(115 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09017": { - "id": "shape:perf:09017", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 5760, - "rot": 0, - "props": { - "w": 24, - "h": 36, - "fill": "hsl(187 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09018": { - "id": "shape:perf:09018", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 5760, - "rot": 0, - "props": { - "w": 41, - "h": 36, - "fill": "hsl(276 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09019": { - "id": "shape:perf:09019", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 5760, - "rot": 0, - "props": { - "w": 41, - "h": 34, - "fill": "hsl(307 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09020": { - "id": "shape:perf:09020", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 5760, - "rot": 0, - "props": { - "w": 34, - "h": 46, - "fill": "hsl(233 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09021": { - "id": "shape:perf:09021", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 5760, - "rot": 0, - "props": { - "w": 33, - "h": 46, - "fill": "hsl(119 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09022": { - "id": "shape:perf:09022", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 5760, - "rot": 0, - "props": { - "w": 41, - "h": 43, - "fill": "hsl(114 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09023": { - "id": "shape:perf:09023", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 5760, - "rot": 0, - "props": { - "w": 40, - "h": 30, - "fill": "hsl(62 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09024": { - "id": "shape:perf:09024", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 5760, - "rot": 0, - "props": { - "w": 31, - "h": 42, - "fill": "hsl(310 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09025": { - "id": "shape:perf:09025", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 5760, - "rot": 0, - "props": { - "w": 36, - "h": 24, - "fill": "hsl(282 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09026": { - "id": "shape:perf:09026", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 5760, - "rot": 0, - "props": { - "w": 32, - "h": 43, - "fill": "hsl(155 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09027": { - "id": "shape:perf:09027", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 5760, - "rot": 0, - "props": { - "w": 44, - "h": 29, - "fill": "hsl(247 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09028": { - "id": "shape:perf:09028", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 5760, - "rot": 0, - "props": { - "w": 36, - "h": 45, - "fill": "hsl(114 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09029": { - "id": "shape:perf:09029", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 5760, - "rot": 0, - "props": { - "w": 35, - "h": 29, - "fill": "hsl(326 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09030": { - "id": "shape:perf:09030", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 5760, - "rot": 0, - "props": { - "w": 31, - "h": 30, - "fill": "hsl(194 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09031": { - "id": "shape:perf:09031", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 5760, - "rot": 0, - "props": { - "w": 44, - "h": 29, - "fill": "hsl(77 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09032": { - "id": "shape:perf:09032", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 5760, - "rot": 0, - "props": { - "w": 41, - "h": 29, - "fill": "hsl(53 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09033": { - "id": "shape:perf:09033", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 5760, - "rot": 0, - "props": { - "w": 40, - "h": 32, - "fill": "hsl(181 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09034": { - "id": "shape:perf:09034", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 5760, - "rot": 0, - "props": { - "w": 45, - "h": 42, - "fill": "hsl(202 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09035": { - "id": "shape:perf:09035", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 5760, - "rot": 0, - "props": { - "w": 36, - "h": 31, - "fill": "hsl(53 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09036": { - "id": "shape:perf:09036", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 5760, - "rot": 0, - "props": { - "w": 43, - "h": 30, - "fill": "hsl(185 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09037": { - "id": "shape:perf:09037", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 5760, - "rot": 0, - "props": { - "w": 36, - "h": 26, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09038": { - "id": "shape:perf:09038", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 5760, - "rot": 0, - "props": { - "w": 46, - "h": 24, - "fill": "hsl(20 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09039": { - "id": "shape:perf:09039", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 5760, - "rot": 0, - "props": { - "w": 28, - "h": 33, - "fill": "hsl(16 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09040": { - "id": "shape:perf:09040", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 5760, - "rot": 0, - "props": { - "w": 45, - "h": 30, - "fill": "hsl(131 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09041": { - "id": "shape:perf:09041", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 5760, - "rot": 0, - "props": { - "w": 29, - "h": 46, - "fill": "hsl(196 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09042": { - "id": "shape:perf:09042", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 5760, - "rot": 0, - "props": { - "w": 28, - "h": 36, - "fill": "hsl(27 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09043": { - "id": "shape:perf:09043", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 5760, - "rot": 0, - "props": { - "w": 33, - "h": 44, - "fill": "hsl(269 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09044": { - "id": "shape:perf:09044", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 5760, - "rot": 0, - "props": { - "w": 31, - "h": 25, - "fill": "hsl(133 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09045": { - "id": "shape:perf:09045", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 5760, - "rot": 0, - "props": { - "w": 31, - "h": 39, - "fill": "hsl(67 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09046": { - "id": "shape:perf:09046", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 5760, - "rot": 0, - "props": { - "w": 41, - "h": 29, - "fill": "hsl(157 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09047": { - "id": "shape:perf:09047", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 5760, - "rot": 0, - "props": { - "w": 39, - "h": 46, - "fill": "hsl(140 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09048": { - "id": "shape:perf:09048", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 5760, - "rot": 0, - "props": { - "w": 37, - "h": 40, - "fill": "hsl(301 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09049": { - "id": "shape:perf:09049", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 5760, - "rot": 0, - "props": { - "w": 33, - "h": 35, - "fill": "hsl(258 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09050": { - "id": "shape:perf:09050", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 5760, - "rot": 0, - "props": { - "w": 35, - "h": 29, - "fill": "hsl(138 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09051": { - "id": "shape:perf:09051", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 5760, - "rot": 0, - "props": { - "w": 38, - "h": 30, - "fill": "hsl(12 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09052": { - "id": "shape:perf:09052", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 5760, - "rot": 0, - "props": { - "w": 42, - "h": 26, - "fill": "hsl(269 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09053": { - "id": "shape:perf:09053", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 5760, - "rot": 0, - "props": { - "w": 30, - "h": 30, - "fill": "hsl(351 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09054": { - "id": "shape:perf:09054", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 5760, - "rot": 0, - "props": { - "w": 33, - "h": 33, - "fill": "hsl(328 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09055": { - "id": "shape:perf:09055", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 5760, - "rot": 0, - "props": { - "w": 33, - "h": 27, - "fill": "hsl(289 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09056": { - "id": "shape:perf:09056", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 5760, - "rot": 0, - "props": { - "w": 27, - "h": 32, - "fill": "hsl(101 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09057": { - "id": "shape:perf:09057", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 5760, - "rot": 0, - "props": { - "w": 31, - "h": 37, - "fill": "hsl(17 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09058": { - "id": "shape:perf:09058", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 5760, - "rot": 0, - "props": { - "w": 46, - "h": 42, - "fill": "hsl(64 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09059": { - "id": "shape:perf:09059", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 5760, - "rot": 0, - "props": { - "w": 43, - "h": 30, - "fill": "hsl(254 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09060": { - "id": "shape:perf:09060", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 5760, - "rot": 0, - "props": { - "w": 29, - "h": 44, - "fill": "hsl(144 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09061": { - "id": "shape:perf:09061", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 5760, - "rot": 0, - "props": { - "w": 40, - "h": 41, - "fill": "hsl(305 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09062": { - "id": "shape:perf:09062", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 5760, - "rot": 0, - "props": { - "w": 28, - "h": 46, - "fill": "hsl(292 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09063": { - "id": "shape:perf:09063", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 5760, - "rot": 0, - "props": { - "w": 29, - "h": 42, - "fill": "hsl(208 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09064": { - "id": "shape:perf:09064", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 5760, - "rot": 0, - "props": { - "w": 36, - "h": 43, - "fill": "hsl(141 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09065": { - "id": "shape:perf:09065", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 5760, - "rot": 0, - "props": { - "w": 33, - "h": 43, - "fill": "hsl(231 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09066": { - "id": "shape:perf:09066", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 5760, - "rot": 0, - "props": { - "w": 43, - "h": 47, - "fill": "hsl(7 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09067": { - "id": "shape:perf:09067", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 5760, - "rot": 0, - "props": { - "w": 47, - "h": 37, - "fill": "hsl(285 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09068": { - "id": "shape:perf:09068", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 5760, - "rot": 0, - "props": { - "w": 34, - "h": 27, - "fill": "hsl(166 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09069": { - "id": "shape:perf:09069", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 5760, - "rot": 0, - "props": { - "w": 25, - "h": 32, - "fill": "hsl(275 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09070": { - "id": "shape:perf:09070", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 5760, - "rot": 0, - "props": { - "w": 37, - "h": 27, - "fill": "hsl(291 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09071": { - "id": "shape:perf:09071", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 5760, - "rot": 0, - "props": { - "w": 47, - "h": 27, - "fill": "hsl(249 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09072": { - "id": "shape:perf:09072", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 5760, - "rot": 0, - "props": { - "w": 30, - "h": 30, - "fill": "hsl(260 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09073": { - "id": "shape:perf:09073", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 5760, - "rot": 0, - "props": { - "w": 25, - "h": 32, - "fill": "hsl(34 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09074": { - "id": "shape:perf:09074", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 5760, - "rot": 0, - "props": { - "w": 44, - "h": 41, - "fill": "hsl(266 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09075": { - "id": "shape:perf:09075", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 5760, - "rot": 0, - "props": { - "w": 37, - "h": 32, - "fill": "hsl(318 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09076": { - "id": "shape:perf:09076", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 5760, - "rot": 0, - "props": { - "w": 42, - "h": 46, - "fill": "hsl(85 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09077": { - "id": "shape:perf:09077", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 5760, - "rot": 0, - "props": { - "w": 29, - "h": 35, - "fill": "hsl(35 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09078": { - "id": "shape:perf:09078", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 5760, - "rot": 0, - "props": { - "w": 40, - "h": 24, - "fill": "hsl(354 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09079": { - "id": "shape:perf:09079", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 5760, - "rot": 0, - "props": { - "w": 28, - "h": 30, - "fill": "hsl(302 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09080": { - "id": "shape:perf:09080", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 5760, - "rot": 0, - "props": { - "w": 28, - "h": 32, - "fill": "hsl(322 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09081": { - "id": "shape:perf:09081", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 5760, - "rot": 0, - "props": { - "w": 31, - "h": 42, - "fill": "hsl(165 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09082": { - "id": "shape:perf:09082", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 5760, - "rot": 0, - "props": { - "w": 44, - "h": 27, - "fill": "hsl(238 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09083": { - "id": "shape:perf:09083", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 5760, - "rot": 0, - "props": { - "w": 34, - "h": 45, - "fill": "hsl(164 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09084": { - "id": "shape:perf:09084", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 5760, - "rot": 0, - "props": { - "w": 32, - "h": 33, - "fill": "hsl(115 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09085": { - "id": "shape:perf:09085", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 5760, - "rot": 0, - "props": { - "w": 25, - "h": 42, - "fill": "hsl(225 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09086": { - "id": "shape:perf:09086", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 5760, - "rot": 0, - "props": { - "w": 41, - "h": 34, - "fill": "hsl(249 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09087": { - "id": "shape:perf:09087", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 5760, - "rot": 0, - "props": { - "w": 34, - "h": 35, - "fill": "hsl(184 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09088": { - "id": "shape:perf:09088", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 5760, - "rot": 0, - "props": { - "w": 27, - "h": 28, - "fill": "hsl(37 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09089": { - "id": "shape:perf:09089", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 5760, - "rot": 0, - "props": { - "w": 29, - "h": 39, - "fill": "hsl(284 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09090": { - "id": "shape:perf:09090", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 5760, - "rot": 0, - "props": { - "w": 41, - "h": 44, - "fill": "hsl(228 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09091": { - "id": "shape:perf:09091", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 5760, - "rot": 0, - "props": { - "w": 27, - "h": 36, - "fill": "hsl(74 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09092": { - "id": "shape:perf:09092", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 5760, - "rot": 0, - "props": { - "w": 41, - "h": 40, - "fill": "hsl(0 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09093": { - "id": "shape:perf:09093", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 5760, - "rot": 0, - "props": { - "w": 38, - "h": 45, - "fill": "hsl(40 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09094": { - "id": "shape:perf:09094", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 5760, - "rot": 0, - "props": { - "w": 28, - "h": 47, - "fill": "hsl(94 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09095": { - "id": "shape:perf:09095", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 5760, - "rot": 0, - "props": { - "w": 32, - "h": 28, - "fill": "hsl(51 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09096": { - "id": "shape:perf:09096", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 5760, - "rot": 0, - "props": { - "w": 29, - "h": 28, - "fill": "hsl(340 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09097": { - "id": "shape:perf:09097", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 5760, - "rot": 0, - "props": { - "w": 47, - "h": 36, - "fill": "hsl(86 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09098": { - "id": "shape:perf:09098", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 5760, - "rot": 0, - "props": { - "w": 41, - "h": 34, - "fill": "hsl(309 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09099": { - "id": "shape:perf:09099", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 5760, - "rot": 0, - "props": { - "w": 46, - "h": 44, - "fill": "hsl(182 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09100": { - "id": "shape:perf:09100", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 5824, - "rot": 0, - "props": { - "w": 33, - "h": 30, - "fill": "hsl(358 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09101": { - "id": "shape:perf:09101", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 5824, - "rot": 0, - "props": { - "w": 45, - "h": 36, - "fill": "hsl(151 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09102": { - "id": "shape:perf:09102", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 5824, - "rot": 0, - "props": { - "w": 36, - "h": 29, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09103": { - "id": "shape:perf:09103", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 5824, - "rot": 0, - "props": { - "w": 26, - "h": 26, - "fill": "hsl(112 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09104": { - "id": "shape:perf:09104", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 5824, - "rot": 0, - "props": { - "w": 30, - "h": 32, - "fill": "hsl(201 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09105": { - "id": "shape:perf:09105", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 5824, - "rot": 0, - "props": { - "w": 34, - "h": 27, - "fill": "hsl(260 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09106": { - "id": "shape:perf:09106", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 5824, - "rot": 0, - "props": { - "w": 27, - "h": 39, - "fill": "hsl(202 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09107": { - "id": "shape:perf:09107", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 5824, - "rot": 0, - "props": { - "w": 27, - "h": 33, - "fill": "hsl(318 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09108": { - "id": "shape:perf:09108", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 5824, - "rot": 0, - "props": { - "w": 29, - "h": 37, - "fill": "hsl(184 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09109": { - "id": "shape:perf:09109", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 5824, - "rot": 0, - "props": { - "w": 32, - "h": 45, - "fill": "hsl(80 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09110": { - "id": "shape:perf:09110", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 5824, - "rot": 0, - "props": { - "w": 31, - "h": 43, - "fill": "hsl(316 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09111": { - "id": "shape:perf:09111", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 5824, - "rot": 0, - "props": { - "w": 30, - "h": 44, - "fill": "hsl(11 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09112": { - "id": "shape:perf:09112", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 5824, - "rot": 0, - "props": { - "w": 35, - "h": 29, - "fill": "hsl(29 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09113": { - "id": "shape:perf:09113", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 5824, - "rot": 0, - "props": { - "w": 27, - "h": 42, - "fill": "hsl(50 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09114": { - "id": "shape:perf:09114", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 5824, - "rot": 0, - "props": { - "w": 25, - "h": 25, - "fill": "hsl(159 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09115": { - "id": "shape:perf:09115", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 5824, - "rot": 0, - "props": { - "w": 35, - "h": 34, - "fill": "hsl(203 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09116": { - "id": "shape:perf:09116", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 5824, - "rot": 0, - "props": { - "w": 38, - "h": 41, - "fill": "hsl(211 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09117": { - "id": "shape:perf:09117", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 5824, - "rot": 0, - "props": { - "w": 33, - "h": 26, - "fill": "hsl(91 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09118": { - "id": "shape:perf:09118", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 5824, - "rot": 0, - "props": { - "w": 33, - "h": 43, - "fill": "hsl(337 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09119": { - "id": "shape:perf:09119", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 5824, - "rot": 0, - "props": { - "w": 38, - "h": 34, - "fill": "hsl(24 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09120": { - "id": "shape:perf:09120", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 5824, - "rot": 0, - "props": { - "w": 43, - "h": 31, - "fill": "hsl(144 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09121": { - "id": "shape:perf:09121", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 5824, - "rot": 0, - "props": { - "w": 26, - "h": 30, - "fill": "hsl(57 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09122": { - "id": "shape:perf:09122", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 5824, - "rot": 0, - "props": { - "w": 42, - "h": 32, - "fill": "hsl(349 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09123": { - "id": "shape:perf:09123", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 5824, - "rot": 0, - "props": { - "w": 35, - "h": 28, - "fill": "hsl(39 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09124": { - "id": "shape:perf:09124", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 5824, - "rot": 0, - "props": { - "w": 37, - "h": 29, - "fill": "hsl(273 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09125": { - "id": "shape:perf:09125", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 5824, - "rot": 0, - "props": { - "w": 33, - "h": 33, - "fill": "hsl(41 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09126": { - "id": "shape:perf:09126", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 5824, - "rot": 0, - "props": { - "w": 39, - "h": 45, - "fill": "hsl(336 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09127": { - "id": "shape:perf:09127", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 5824, - "rot": 0, - "props": { - "w": 27, - "h": 40, - "fill": "hsl(120 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09128": { - "id": "shape:perf:09128", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 5824, - "rot": 0, - "props": { - "w": 46, - "h": 46, - "fill": "hsl(86 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09129": { - "id": "shape:perf:09129", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 5824, - "rot": 0, - "props": { - "w": 46, - "h": 44, - "fill": "hsl(206 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09130": { - "id": "shape:perf:09130", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 5824, - "rot": 0, - "props": { - "w": 32, - "h": 28, - "fill": "hsl(167 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09131": { - "id": "shape:perf:09131", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 5824, - "rot": 0, - "props": { - "w": 39, - "h": 34, - "fill": "hsl(24 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09132": { - "id": "shape:perf:09132", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 5824, - "rot": 0, - "props": { - "w": 31, - "h": 39, - "fill": "hsl(23 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09133": { - "id": "shape:perf:09133", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 5824, - "rot": 0, - "props": { - "w": 27, - "h": 29, - "fill": "hsl(241 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09134": { - "id": "shape:perf:09134", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 5824, - "rot": 0, - "props": { - "w": 46, - "h": 41, - "fill": "hsl(262 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09135": { - "id": "shape:perf:09135", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 5824, - "rot": 0, - "props": { - "w": 43, - "h": 35, - "fill": "hsl(133 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09136": { - "id": "shape:perf:09136", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 5824, - "rot": 0, - "props": { - "w": 33, - "h": 25, - "fill": "hsl(195 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09137": { - "id": "shape:perf:09137", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 5824, - "rot": 0, - "props": { - "w": 45, - "h": 44, - "fill": "hsl(77 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09138": { - "id": "shape:perf:09138", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 5824, - "rot": 0, - "props": { - "w": 28, - "h": 37, - "fill": "hsl(1 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09139": { - "id": "shape:perf:09139", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 5824, - "rot": 0, - "props": { - "w": 35, - "h": 27, - "fill": "hsl(265 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09140": { - "id": "shape:perf:09140", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 5824, - "rot": 0, - "props": { - "w": 27, - "h": 39, - "fill": "hsl(112 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09141": { - "id": "shape:perf:09141", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 5824, - "rot": 0, - "props": { - "w": 46, - "h": 26, - "fill": "hsl(356 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09142": { - "id": "shape:perf:09142", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 5824, - "rot": 0, - "props": { - "w": 28, - "h": 34, - "fill": "hsl(117 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09143": { - "id": "shape:perf:09143", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 5824, - "rot": 0, - "props": { - "w": 24, - "h": 37, - "fill": "hsl(301 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09144": { - "id": "shape:perf:09144", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 5824, - "rot": 0, - "props": { - "w": 34, - "h": 29, - "fill": "hsl(64 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09145": { - "id": "shape:perf:09145", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 5824, - "rot": 0, - "props": { - "w": 45, - "h": 32, - "fill": "hsl(149 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09146": { - "id": "shape:perf:09146", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 5824, - "rot": 0, - "props": { - "w": 38, - "h": 43, - "fill": "hsl(51 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09147": { - "id": "shape:perf:09147", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 5824, - "rot": 0, - "props": { - "w": 36, - "h": 44, - "fill": "hsl(345 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09148": { - "id": "shape:perf:09148", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 5824, - "rot": 0, - "props": { - "w": 43, - "h": 42, - "fill": "hsl(256 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09149": { - "id": "shape:perf:09149", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 5824, - "rot": 0, - "props": { - "w": 31, - "h": 26, - "fill": "hsl(304 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09150": { - "id": "shape:perf:09150", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 5824, - "rot": 0, - "props": { - "w": 31, - "h": 26, - "fill": "hsl(88 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09151": { - "id": "shape:perf:09151", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 5824, - "rot": 0, - "props": { - "w": 26, - "h": 38, - "fill": "hsl(44 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09152": { - "id": "shape:perf:09152", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 5824, - "rot": 0, - "props": { - "w": 30, - "h": 31, - "fill": "hsl(340 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09153": { - "id": "shape:perf:09153", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 5824, - "rot": 0, - "props": { - "w": 41, - "h": 30, - "fill": "hsl(22 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09154": { - "id": "shape:perf:09154", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 5824, - "rot": 0, - "props": { - "w": 47, - "h": 47, - "fill": "hsl(157 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09155": { - "id": "shape:perf:09155", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 5824, - "rot": 0, - "props": { - "w": 31, - "h": 45, - "fill": "hsl(352 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09156": { - "id": "shape:perf:09156", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 5824, - "rot": 0, - "props": { - "w": 38, - "h": 36, - "fill": "hsl(278 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09157": { - "id": "shape:perf:09157", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 5824, - "rot": 0, - "props": { - "w": 25, - "h": 36, - "fill": "hsl(282 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09158": { - "id": "shape:perf:09158", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 5824, - "rot": 0, - "props": { - "w": 43, - "h": 31, - "fill": "hsl(251 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09159": { - "id": "shape:perf:09159", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 5824, - "rot": 0, - "props": { - "w": 27, - "h": 33, - "fill": "hsl(350 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09160": { - "id": "shape:perf:09160", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 5824, - "rot": 0, - "props": { - "w": 43, - "h": 43, - "fill": "hsl(329 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09161": { - "id": "shape:perf:09161", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 5824, - "rot": 0, - "props": { - "w": 31, - "h": 35, - "fill": "hsl(65 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09162": { - "id": "shape:perf:09162", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 5824, - "rot": 0, - "props": { - "w": 40, - "h": 29, - "fill": "hsl(284 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09163": { - "id": "shape:perf:09163", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 5824, - "rot": 0, - "props": { - "w": 46, - "h": 32, - "fill": "hsl(138 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09164": { - "id": "shape:perf:09164", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 5824, - "rot": 0, - "props": { - "w": 37, - "h": 27, - "fill": "hsl(201 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09165": { - "id": "shape:perf:09165", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 5824, - "rot": 0, - "props": { - "w": 30, - "h": 25, - "fill": "hsl(273 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09166": { - "id": "shape:perf:09166", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 5824, - "rot": 0, - "props": { - "w": 47, - "h": 41, - "fill": "hsl(214 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09167": { - "id": "shape:perf:09167", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 5824, - "rot": 0, - "props": { - "w": 38, - "h": 42, - "fill": "hsl(77 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09168": { - "id": "shape:perf:09168", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 5824, - "rot": 0, - "props": { - "w": 44, - "h": 37, - "fill": "hsl(18 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09169": { - "id": "shape:perf:09169", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 5824, - "rot": 0, - "props": { - "w": 26, - "h": 25, - "fill": "hsl(39 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09170": { - "id": "shape:perf:09170", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 5824, - "rot": 0, - "props": { - "w": 29, - "h": 25, - "fill": "hsl(219 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09171": { - "id": "shape:perf:09171", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 5824, - "rot": 0, - "props": { - "w": 45, - "h": 47, - "fill": "hsl(30 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09172": { - "id": "shape:perf:09172", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 5824, - "rot": 0, - "props": { - "w": 33, - "h": 27, - "fill": "hsl(76 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09173": { - "id": "shape:perf:09173", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 5824, - "rot": 0, - "props": { - "w": 31, - "h": 46, - "fill": "hsl(119 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09174": { - "id": "shape:perf:09174", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 5824, - "rot": 0, - "props": { - "w": 37, - "h": 42, - "fill": "hsl(130 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09175": { - "id": "shape:perf:09175", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 5824, - "rot": 0, - "props": { - "w": 25, - "h": 33, - "fill": "hsl(186 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09176": { - "id": "shape:perf:09176", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 5824, - "rot": 0, - "props": { - "w": 45, - "h": 30, - "fill": "hsl(62 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09177": { - "id": "shape:perf:09177", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 5824, - "rot": 0, - "props": { - "w": 29, - "h": 39, - "fill": "hsl(76 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09178": { - "id": "shape:perf:09178", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 5824, - "rot": 0, - "props": { - "w": 39, - "h": 46, - "fill": "hsl(273 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09179": { - "id": "shape:perf:09179", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 5824, - "rot": 0, - "props": { - "w": 42, - "h": 41, - "fill": "hsl(132 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09180": { - "id": "shape:perf:09180", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 5824, - "rot": 0, - "props": { - "w": 24, - "h": 24, - "fill": "hsl(295 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09181": { - "id": "shape:perf:09181", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 5824, - "rot": 0, - "props": { - "w": 29, - "h": 40, - "fill": "hsl(145 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09182": { - "id": "shape:perf:09182", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 5824, - "rot": 0, - "props": { - "w": 39, - "h": 34, - "fill": "hsl(195 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09183": { - "id": "shape:perf:09183", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 5824, - "rot": 0, - "props": { - "w": 30, - "h": 25, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09184": { - "id": "shape:perf:09184", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 5824, - "rot": 0, - "props": { - "w": 27, - "h": 32, - "fill": "hsl(77 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09185": { - "id": "shape:perf:09185", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 5824, - "rot": 0, - "props": { - "w": 26, - "h": 30, - "fill": "hsl(65 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09186": { - "id": "shape:perf:09186", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 5824, - "rot": 0, - "props": { - "w": 27, - "h": 41, - "fill": "hsl(131 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09187": { - "id": "shape:perf:09187", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 5824, - "rot": 0, - "props": { - "w": 30, - "h": 31, - "fill": "hsl(8 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09188": { - "id": "shape:perf:09188", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 5824, - "rot": 0, - "props": { - "w": 26, - "h": 45, - "fill": "hsl(213 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09189": { - "id": "shape:perf:09189", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 5824, - "rot": 0, - "props": { - "w": 38, - "h": 27, - "fill": "hsl(203 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09190": { - "id": "shape:perf:09190", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 5824, - "rot": 0, - "props": { - "w": 34, - "h": 24, - "fill": "hsl(90 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09191": { - "id": "shape:perf:09191", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 5824, - "rot": 0, - "props": { - "w": 42, - "h": 35, - "fill": "hsl(95 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09192": { - "id": "shape:perf:09192", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 5824, - "rot": 0, - "props": { - "w": 28, - "h": 33, - "fill": "hsl(291 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09193": { - "id": "shape:perf:09193", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 5824, - "rot": 0, - "props": { - "w": 44, - "h": 36, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09194": { - "id": "shape:perf:09194", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 5824, - "rot": 0, - "props": { - "w": 31, - "h": 31, - "fill": "hsl(134 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09195": { - "id": "shape:perf:09195", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 5824, - "rot": 0, - "props": { - "w": 24, - "h": 31, - "fill": "hsl(183 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09196": { - "id": "shape:perf:09196", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 5824, - "rot": 0, - "props": { - "w": 35, - "h": 32, - "fill": "hsl(119 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09197": { - "id": "shape:perf:09197", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 5824, - "rot": 0, - "props": { - "w": 25, - "h": 40, - "fill": "hsl(342 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09198": { - "id": "shape:perf:09198", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 5824, - "rot": 0, - "props": { - "w": 26, - "h": 24, - "fill": "hsl(150 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09199": { - "id": "shape:perf:09199", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 5824, - "rot": 0, - "props": { - "w": 29, - "h": 25, - "fill": "hsl(33 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09200": { - "id": "shape:perf:09200", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 5888, - "rot": 0, - "props": { - "w": 31, - "h": 34, - "fill": "hsl(57 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09201": { - "id": "shape:perf:09201", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 5888, - "rot": 0, - "props": { - "w": 45, - "h": 24, - "fill": "hsl(258 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09202": { - "id": "shape:perf:09202", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 5888, - "rot": 0, - "props": { - "w": 31, - "h": 27, - "fill": "hsl(356 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09203": { - "id": "shape:perf:09203", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 5888, - "rot": 0, - "props": { - "w": 41, - "h": 35, - "fill": "hsl(70 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09204": { - "id": "shape:perf:09204", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 5888, - "rot": 0, - "props": { - "w": 26, - "h": 30, - "fill": "hsl(83 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09205": { - "id": "shape:perf:09205", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 5888, - "rot": 0, - "props": { - "w": 38, - "h": 41, - "fill": "hsl(251 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09206": { - "id": "shape:perf:09206", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 5888, - "rot": 0, - "props": { - "w": 33, - "h": 47, - "fill": "hsl(304 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09207": { - "id": "shape:perf:09207", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 5888, - "rot": 0, - "props": { - "w": 47, - "h": 25, - "fill": "hsl(261 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09208": { - "id": "shape:perf:09208", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 5888, - "rot": 0, - "props": { - "w": 47, - "h": 30, - "fill": "hsl(92 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09209": { - "id": "shape:perf:09209", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 5888, - "rot": 0, - "props": { - "w": 35, - "h": 25, - "fill": "hsl(258 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09210": { - "id": "shape:perf:09210", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 5888, - "rot": 0, - "props": { - "w": 39, - "h": 25, - "fill": "hsl(313 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09211": { - "id": "shape:perf:09211", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 5888, - "rot": 0, - "props": { - "w": 25, - "h": 33, - "fill": "hsl(239 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09212": { - "id": "shape:perf:09212", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 5888, - "rot": 0, - "props": { - "w": 28, - "h": 41, - "fill": "hsl(356 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09213": { - "id": "shape:perf:09213", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 5888, - "rot": 0, - "props": { - "w": 45, - "h": 44, - "fill": "hsl(342 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09214": { - "id": "shape:perf:09214", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 5888, - "rot": 0, - "props": { - "w": 38, - "h": 40, - "fill": "hsl(31 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09215": { - "id": "shape:perf:09215", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 5888, - "rot": 0, - "props": { - "w": 42, - "h": 31, - "fill": "hsl(293 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09216": { - "id": "shape:perf:09216", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 5888, - "rot": 0, - "props": { - "w": 42, - "h": 47, - "fill": "hsl(140 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09217": { - "id": "shape:perf:09217", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 5888, - "rot": 0, - "props": { - "w": 34, - "h": 41, - "fill": "hsl(343 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09218": { - "id": "shape:perf:09218", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 5888, - "rot": 0, - "props": { - "w": 27, - "h": 27, - "fill": "hsl(56 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09219": { - "id": "shape:perf:09219", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 5888, - "rot": 0, - "props": { - "w": 47, - "h": 32, - "fill": "hsl(32 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09220": { - "id": "shape:perf:09220", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 5888, - "rot": 0, - "props": { - "w": 39, - "h": 24, - "fill": "hsl(78 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09221": { - "id": "shape:perf:09221", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 5888, - "rot": 0, - "props": { - "w": 43, - "h": 41, - "fill": "hsl(150 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09222": { - "id": "shape:perf:09222", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 5888, - "rot": 0, - "props": { - "w": 26, - "h": 46, - "fill": "hsl(43 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09223": { - "id": "shape:perf:09223", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 5888, - "rot": 0, - "props": { - "w": 29, - "h": 47, - "fill": "hsl(290 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09224": { - "id": "shape:perf:09224", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 5888, - "rot": 0, - "props": { - "w": 32, - "h": 34, - "fill": "hsl(347 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09225": { - "id": "shape:perf:09225", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 5888, - "rot": 0, - "props": { - "w": 46, - "h": 31, - "fill": "hsl(255 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09226": { - "id": "shape:perf:09226", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 5888, - "rot": 0, - "props": { - "w": 29, - "h": 29, - "fill": "hsl(118 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09227": { - "id": "shape:perf:09227", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 5888, - "rot": 0, - "props": { - "w": 41, - "h": 41, - "fill": "hsl(230 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09228": { - "id": "shape:perf:09228", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 5888, - "rot": 0, - "props": { - "w": 26, - "h": 40, - "fill": "hsl(67 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09229": { - "id": "shape:perf:09229", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 5888, - "rot": 0, - "props": { - "w": 43, - "h": 45, - "fill": "hsl(186 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09230": { - "id": "shape:perf:09230", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 5888, - "rot": 0, - "props": { - "w": 25, - "h": 46, - "fill": "hsl(310 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09231": { - "id": "shape:perf:09231", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 5888, - "rot": 0, - "props": { - "w": 40, - "h": 42, - "fill": "hsl(48 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09232": { - "id": "shape:perf:09232", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 5888, - "rot": 0, - "props": { - "w": 26, - "h": 42, - "fill": "hsl(234 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09233": { - "id": "shape:perf:09233", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 5888, - "rot": 0, - "props": { - "w": 29, - "h": 44, - "fill": "hsl(41 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09234": { - "id": "shape:perf:09234", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 5888, - "rot": 0, - "props": { - "w": 35, - "h": 28, - "fill": "hsl(305 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09235": { - "id": "shape:perf:09235", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 5888, - "rot": 0, - "props": { - "w": 32, - "h": 34, - "fill": "hsl(356 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09236": { - "id": "shape:perf:09236", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 5888, - "rot": 0, - "props": { - "w": 42, - "h": 35, - "fill": "hsl(308 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09237": { - "id": "shape:perf:09237", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 5888, - "rot": 0, - "props": { - "w": 44, - "h": 37, - "fill": "hsl(22 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09238": { - "id": "shape:perf:09238", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 5888, - "rot": 0, - "props": { - "w": 30, - "h": 31, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09239": { - "id": "shape:perf:09239", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 5888, - "rot": 0, - "props": { - "w": 25, - "h": 33, - "fill": "hsl(181 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09240": { - "id": "shape:perf:09240", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 5888, - "rot": 0, - "props": { - "w": 43, - "h": 28, - "fill": "hsl(297 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09241": { - "id": "shape:perf:09241", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 5888, - "rot": 0, - "props": { - "w": 36, - "h": 33, - "fill": "hsl(138 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09242": { - "id": "shape:perf:09242", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 5888, - "rot": 0, - "props": { - "w": 38, - "h": 38, - "fill": "hsl(225 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09243": { - "id": "shape:perf:09243", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 5888, - "rot": 0, - "props": { - "w": 39, - "h": 45, - "fill": "hsl(311 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09244": { - "id": "shape:perf:09244", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 5888, - "rot": 0, - "props": { - "w": 47, - "h": 44, - "fill": "hsl(89 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09245": { - "id": "shape:perf:09245", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 5888, - "rot": 0, - "props": { - "w": 37, - "h": 38, - "fill": "hsl(186 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09246": { - "id": "shape:perf:09246", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 5888, - "rot": 0, - "props": { - "w": 41, - "h": 30, - "fill": "hsl(166 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09247": { - "id": "shape:perf:09247", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 5888, - "rot": 0, - "props": { - "w": 35, - "h": 31, - "fill": "hsl(79 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09248": { - "id": "shape:perf:09248", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 5888, - "rot": 0, - "props": { - "w": 46, - "h": 33, - "fill": "hsl(126 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09249": { - "id": "shape:perf:09249", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 5888, - "rot": 0, - "props": { - "w": 47, - "h": 47, - "fill": "hsl(213 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09250": { - "id": "shape:perf:09250", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 5888, - "rot": 0, - "props": { - "w": 41, - "h": 47, - "fill": "hsl(109 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09251": { - "id": "shape:perf:09251", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 5888, - "rot": 0, - "props": { - "w": 24, - "h": 28, - "fill": "hsl(237 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09252": { - "id": "shape:perf:09252", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 5888, - "rot": 0, - "props": { - "w": 27, - "h": 41, - "fill": "hsl(37 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09253": { - "id": "shape:perf:09253", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 5888, - "rot": 0, - "props": { - "w": 34, - "h": 28, - "fill": "hsl(294 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09254": { - "id": "shape:perf:09254", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 5888, - "rot": 0, - "props": { - "w": 25, - "h": 27, - "fill": "hsl(237 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09255": { - "id": "shape:perf:09255", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 5888, - "rot": 0, - "props": { - "w": 32, - "h": 45, - "fill": "hsl(211 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09256": { - "id": "shape:perf:09256", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 5888, - "rot": 0, - "props": { - "w": 40, - "h": 39, - "fill": "hsl(226 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09257": { - "id": "shape:perf:09257", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 5888, - "rot": 0, - "props": { - "w": 36, - "h": 36, - "fill": "hsl(14 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09258": { - "id": "shape:perf:09258", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 5888, - "rot": 0, - "props": { - "w": 44, - "h": 38, - "fill": "hsl(125 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09259": { - "id": "shape:perf:09259", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 5888, - "rot": 0, - "props": { - "w": 32, - "h": 41, - "fill": "hsl(37 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09260": { - "id": "shape:perf:09260", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 5888, - "rot": 0, - "props": { - "w": 31, - "h": 28, - "fill": "hsl(315 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09261": { - "id": "shape:perf:09261", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 5888, - "rot": 0, - "props": { - "w": 28, - "h": 37, - "fill": "hsl(271 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09262": { - "id": "shape:perf:09262", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 5888, - "rot": 0, - "props": { - "w": 38, - "h": 38, - "fill": "hsl(335 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09263": { - "id": "shape:perf:09263", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 5888, - "rot": 0, - "props": { - "w": 32, - "h": 46, - "fill": "hsl(130 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09264": { - "id": "shape:perf:09264", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 5888, - "rot": 0, - "props": { - "w": 25, - "h": 31, - "fill": "hsl(2 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09265": { - "id": "shape:perf:09265", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 5888, - "rot": 0, - "props": { - "w": 29, - "h": 38, - "fill": "hsl(51 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09266": { - "id": "shape:perf:09266", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 5888, - "rot": 0, - "props": { - "w": 40, - "h": 24, - "fill": "hsl(343 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09267": { - "id": "shape:perf:09267", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 5888, - "rot": 0, - "props": { - "w": 26, - "h": 42, - "fill": "hsl(8 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09268": { - "id": "shape:perf:09268", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 5888, - "rot": 0, - "props": { - "w": 27, - "h": 38, - "fill": "hsl(4 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09269": { - "id": "shape:perf:09269", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 5888, - "rot": 0, - "props": { - "w": 46, - "h": 45, - "fill": "hsl(325 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09270": { - "id": "shape:perf:09270", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 5888, - "rot": 0, - "props": { - "w": 38, - "h": 25, - "fill": "hsl(270 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09271": { - "id": "shape:perf:09271", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 5888, - "rot": 0, - "props": { - "w": 32, - "h": 27, - "fill": "hsl(103 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09272": { - "id": "shape:perf:09272", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 5888, - "rot": 0, - "props": { - "w": 38, - "h": 47, - "fill": "hsl(172 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09273": { - "id": "shape:perf:09273", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 5888, - "rot": 0, - "props": { - "w": 47, - "h": 42, - "fill": "hsl(335 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09274": { - "id": "shape:perf:09274", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 5888, - "rot": 0, - "props": { - "w": 46, - "h": 45, - "fill": "hsl(272 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09275": { - "id": "shape:perf:09275", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 5888, - "rot": 0, - "props": { - "w": 34, - "h": 44, - "fill": "hsl(44 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09276": { - "id": "shape:perf:09276", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 5888, - "rot": 0, - "props": { - "w": 26, - "h": 27, - "fill": "hsl(208 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09277": { - "id": "shape:perf:09277", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 5888, - "rot": 0, - "props": { - "w": 43, - "h": 27, - "fill": "hsl(56 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09278": { - "id": "shape:perf:09278", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 5888, - "rot": 0, - "props": { - "w": 42, - "h": 31, - "fill": "hsl(210 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09279": { - "id": "shape:perf:09279", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 5888, - "rot": 0, - "props": { - "w": 38, - "h": 35, - "fill": "hsl(237 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09280": { - "id": "shape:perf:09280", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 5888, - "rot": 0, - "props": { - "w": 25, - "h": 29, - "fill": "hsl(245 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09281": { - "id": "shape:perf:09281", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 5888, - "rot": 0, - "props": { - "w": 27, - "h": 27, - "fill": "hsl(25 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09282": { - "id": "shape:perf:09282", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 5888, - "rot": 0, - "props": { - "w": 39, - "h": 35, - "fill": "hsl(131 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09283": { - "id": "shape:perf:09283", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 5888, - "rot": 0, - "props": { - "w": 24, - "h": 27, - "fill": "hsl(310 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09284": { - "id": "shape:perf:09284", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 5888, - "rot": 0, - "props": { - "w": 41, - "h": 27, - "fill": "hsl(57 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09285": { - "id": "shape:perf:09285", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 5888, - "rot": 0, - "props": { - "w": 26, - "h": 29, - "fill": "hsl(273 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09286": { - "id": "shape:perf:09286", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 5888, - "rot": 0, - "props": { - "w": 31, - "h": 43, - "fill": "hsl(18 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09287": { - "id": "shape:perf:09287", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 5888, - "rot": 0, - "props": { - "w": 45, - "h": 29, - "fill": "hsl(354 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09288": { - "id": "shape:perf:09288", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 5888, - "rot": 0, - "props": { - "w": 41, - "h": 40, - "fill": "hsl(89 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09289": { - "id": "shape:perf:09289", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 5888, - "rot": 0, - "props": { - "w": 32, - "h": 28, - "fill": "hsl(166 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09290": { - "id": "shape:perf:09290", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 5888, - "rot": 0, - "props": { - "w": 26, - "h": 47, - "fill": "hsl(252 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09291": { - "id": "shape:perf:09291", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 5888, - "rot": 0, - "props": { - "w": 41, - "h": 26, - "fill": "hsl(138 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09292": { - "id": "shape:perf:09292", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 5888, - "rot": 0, - "props": { - "w": 45, - "h": 44, - "fill": "hsl(39 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09293": { - "id": "shape:perf:09293", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 5888, - "rot": 0, - "props": { - "w": 28, - "h": 36, - "fill": "hsl(348 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09294": { - "id": "shape:perf:09294", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 5888, - "rot": 0, - "props": { - "w": 45, - "h": 39, - "fill": "hsl(341 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09295": { - "id": "shape:perf:09295", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 5888, - "rot": 0, - "props": { - "w": 41, - "h": 44, - "fill": "hsl(250 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09296": { - "id": "shape:perf:09296", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 5888, - "rot": 0, - "props": { - "w": 39, - "h": 27, - "fill": "hsl(150 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09297": { - "id": "shape:perf:09297", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 5888, - "rot": 0, - "props": { - "w": 26, - "h": 46, - "fill": "hsl(147 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09298": { - "id": "shape:perf:09298", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 5888, - "rot": 0, - "props": { - "w": 47, - "h": 42, - "fill": "hsl(58 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09299": { - "id": "shape:perf:09299", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 5888, - "rot": 0, - "props": { - "w": 35, - "h": 40, - "fill": "hsl(178 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09300": { - "id": "shape:perf:09300", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 5952, - "rot": 0, - "props": { - "w": 33, - "h": 39, - "fill": "hsl(31 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09301": { - "id": "shape:perf:09301", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 5952, - "rot": 0, - "props": { - "w": 40, - "h": 45, - "fill": "hsl(81 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09302": { - "id": "shape:perf:09302", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 5952, - "rot": 0, - "props": { - "w": 33, - "h": 44, - "fill": "hsl(14 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09303": { - "id": "shape:perf:09303", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 5952, - "rot": 0, - "props": { - "w": 40, - "h": 24, - "fill": "hsl(324 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09304": { - "id": "shape:perf:09304", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 5952, - "rot": 0, - "props": { - "w": 38, - "h": 39, - "fill": "hsl(4 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09305": { - "id": "shape:perf:09305", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 5952, - "rot": 0, - "props": { - "w": 26, - "h": 38, - "fill": "hsl(126 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09306": { - "id": "shape:perf:09306", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 5952, - "rot": 0, - "props": { - "w": 36, - "h": 26, - "fill": "hsl(207 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09307": { - "id": "shape:perf:09307", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 5952, - "rot": 0, - "props": { - "w": 40, - "h": 42, - "fill": "hsl(264 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09308": { - "id": "shape:perf:09308", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 5952, - "rot": 0, - "props": { - "w": 43, - "h": 28, - "fill": "hsl(329 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09309": { - "id": "shape:perf:09309", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 5952, - "rot": 0, - "props": { - "w": 37, - "h": 38, - "fill": "hsl(335 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09310": { - "id": "shape:perf:09310", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 5952, - "rot": 0, - "props": { - "w": 39, - "h": 36, - "fill": "hsl(249 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09311": { - "id": "shape:perf:09311", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 5952, - "rot": 0, - "props": { - "w": 38, - "h": 40, - "fill": "hsl(86 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09312": { - "id": "shape:perf:09312", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 5952, - "rot": 0, - "props": { - "w": 27, - "h": 39, - "fill": "hsl(243 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09313": { - "id": "shape:perf:09313", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 5952, - "rot": 0, - "props": { - "w": 36, - "h": 27, - "fill": "hsl(45 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09314": { - "id": "shape:perf:09314", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 5952, - "rot": 0, - "props": { - "w": 36, - "h": 31, - "fill": "hsl(354 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09315": { - "id": "shape:perf:09315", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 5952, - "rot": 0, - "props": { - "w": 40, - "h": 40, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09316": { - "id": "shape:perf:09316", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 5952, - "rot": 0, - "props": { - "w": 24, - "h": 42, - "fill": "hsl(268 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09317": { - "id": "shape:perf:09317", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 5952, - "rot": 0, - "props": { - "w": 30, - "h": 46, - "fill": "hsl(269 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09318": { - "id": "shape:perf:09318", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 5952, - "rot": 0, - "props": { - "w": 34, - "h": 31, - "fill": "hsl(111 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09319": { - "id": "shape:perf:09319", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 5952, - "rot": 0, - "props": { - "w": 31, - "h": 43, - "fill": "hsl(278 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09320": { - "id": "shape:perf:09320", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 5952, - "rot": 0, - "props": { - "w": 25, - "h": 32, - "fill": "hsl(171 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09321": { - "id": "shape:perf:09321", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 5952, - "rot": 0, - "props": { - "w": 38, - "h": 39, - "fill": "hsl(304 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09322": { - "id": "shape:perf:09322", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 5952, - "rot": 0, - "props": { - "w": 32, - "h": 41, - "fill": "hsl(85 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09323": { - "id": "shape:perf:09323", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 5952, - "rot": 0, - "props": { - "w": 29, - "h": 33, - "fill": "hsl(32 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09324": { - "id": "shape:perf:09324", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 5952, - "rot": 0, - "props": { - "w": 33, - "h": 29, - "fill": "hsl(198 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09325": { - "id": "shape:perf:09325", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 5952, - "rot": 0, - "props": { - "w": 29, - "h": 44, - "fill": "hsl(173 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09326": { - "id": "shape:perf:09326", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 5952, - "rot": 0, - "props": { - "w": 27, - "h": 32, - "fill": "hsl(205 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09327": { - "id": "shape:perf:09327", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 5952, - "rot": 0, - "props": { - "w": 40, - "h": 34, - "fill": "hsl(336 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09328": { - "id": "shape:perf:09328", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 5952, - "rot": 0, - "props": { - "w": 44, - "h": 47, - "fill": "hsl(279 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09329": { - "id": "shape:perf:09329", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 5952, - "rot": 0, - "props": { - "w": 31, - "h": 38, - "fill": "hsl(103 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09330": { - "id": "shape:perf:09330", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 5952, - "rot": 0, - "props": { - "w": 28, - "h": 25, - "fill": "hsl(145 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09331": { - "id": "shape:perf:09331", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 5952, - "rot": 0, - "props": { - "w": 42, - "h": 39, - "fill": "hsl(87 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09332": { - "id": "shape:perf:09332", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 5952, - "rot": 0, - "props": { - "w": 47, - "h": 44, - "fill": "hsl(330 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09333": { - "id": "shape:perf:09333", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 5952, - "rot": 0, - "props": { - "w": 43, - "h": 30, - "fill": "hsl(195 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09334": { - "id": "shape:perf:09334", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 5952, - "rot": 0, - "props": { - "w": 35, - "h": 31, - "fill": "hsl(182 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09335": { - "id": "shape:perf:09335", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 5952, - "rot": 0, - "props": { - "w": 38, - "h": 39, - "fill": "hsl(201 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09336": { - "id": "shape:perf:09336", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 5952, - "rot": 0, - "props": { - "w": 28, - "h": 27, - "fill": "hsl(155 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09337": { - "id": "shape:perf:09337", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 5952, - "rot": 0, - "props": { - "w": 40, - "h": 40, - "fill": "hsl(319 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09338": { - "id": "shape:perf:09338", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 5952, - "rot": 0, - "props": { - "w": 39, - "h": 32, - "fill": "hsl(348 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09339": { - "id": "shape:perf:09339", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 5952, - "rot": 0, - "props": { - "w": 30, - "h": 42, - "fill": "hsl(47 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09340": { - "id": "shape:perf:09340", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 5952, - "rot": 0, - "props": { - "w": 34, - "h": 29, - "fill": "hsl(52 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09341": { - "id": "shape:perf:09341", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 5952, - "rot": 0, - "props": { - "w": 29, - "h": 31, - "fill": "hsl(333 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09342": { - "id": "shape:perf:09342", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 5952, - "rot": 0, - "props": { - "w": 34, - "h": 32, - "fill": "hsl(128 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09343": { - "id": "shape:perf:09343", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 5952, - "rot": 0, - "props": { - "w": 28, - "h": 29, - "fill": "hsl(348 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09344": { - "id": "shape:perf:09344", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 5952, - "rot": 0, - "props": { - "w": 41, - "h": 32, - "fill": "hsl(116 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09345": { - "id": "shape:perf:09345", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 5952, - "rot": 0, - "props": { - "w": 43, - "h": 43, - "fill": "hsl(95 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09346": { - "id": "shape:perf:09346", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 5952, - "rot": 0, - "props": { - "w": 25, - "h": 34, - "fill": "hsl(316 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09347": { - "id": "shape:perf:09347", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 5952, - "rot": 0, - "props": { - "w": 39, - "h": 39, - "fill": "hsl(318 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09348": { - "id": "shape:perf:09348", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 5952, - "rot": 0, - "props": { - "w": 45, - "h": 27, - "fill": "hsl(242 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09349": { - "id": "shape:perf:09349", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 5952, - "rot": 0, - "props": { - "w": 34, - "h": 25, - "fill": "hsl(289 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09350": { - "id": "shape:perf:09350", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 5952, - "rot": 0, - "props": { - "w": 43, - "h": 25, - "fill": "hsl(95 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09351": { - "id": "shape:perf:09351", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 5952, - "rot": 0, - "props": { - "w": 41, - "h": 38, - "fill": "hsl(39 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09352": { - "id": "shape:perf:09352", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 5952, - "rot": 0, - "props": { - "w": 31, - "h": 33, - "fill": "hsl(61 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09353": { - "id": "shape:perf:09353", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 5952, - "rot": 0, - "props": { - "w": 31, - "h": 38, - "fill": "hsl(116 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09354": { - "id": "shape:perf:09354", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 5952, - "rot": 0, - "props": { - "w": 33, - "h": 26, - "fill": "hsl(138 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09355": { - "id": "shape:perf:09355", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 5952, - "rot": 0, - "props": { - "w": 40, - "h": 43, - "fill": "hsl(353 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09356": { - "id": "shape:perf:09356", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 5952, - "rot": 0, - "props": { - "w": 28, - "h": 44, - "fill": "hsl(293 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09357": { - "id": "shape:perf:09357", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 5952, - "rot": 0, - "props": { - "w": 26, - "h": 37, - "fill": "hsl(229 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09358": { - "id": "shape:perf:09358", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 5952, - "rot": 0, - "props": { - "w": 43, - "h": 40, - "fill": "hsl(281 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09359": { - "id": "shape:perf:09359", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 5952, - "rot": 0, - "props": { - "w": 30, - "h": 46, - "fill": "hsl(279 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09360": { - "id": "shape:perf:09360", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 5952, - "rot": 0, - "props": { - "w": 32, - "h": 24, - "fill": "hsl(240 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09361": { - "id": "shape:perf:09361", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 5952, - "rot": 0, - "props": { - "w": 31, - "h": 46, - "fill": "hsl(328 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09362": { - "id": "shape:perf:09362", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 5952, - "rot": 0, - "props": { - "w": 28, - "h": 43, - "fill": "hsl(246 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09363": { - "id": "shape:perf:09363", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 5952, - "rot": 0, - "props": { - "w": 35, - "h": 26, - "fill": "hsl(268 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09364": { - "id": "shape:perf:09364", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 5952, - "rot": 0, - "props": { - "w": 40, - "h": 44, - "fill": "hsl(286 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09365": { - "id": "shape:perf:09365", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 5952, - "rot": 0, - "props": { - "w": 46, - "h": 31, - "fill": "hsl(317 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09366": { - "id": "shape:perf:09366", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 5952, - "rot": 0, - "props": { - "w": 29, - "h": 29, - "fill": "hsl(55 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09367": { - "id": "shape:perf:09367", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 5952, - "rot": 0, - "props": { - "w": 35, - "h": 38, - "fill": "hsl(312 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09368": { - "id": "shape:perf:09368", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 5952, - "rot": 0, - "props": { - "w": 43, - "h": 37, - "fill": "hsl(340 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09369": { - "id": "shape:perf:09369", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 5952, - "rot": 0, - "props": { - "w": 30, - "h": 25, - "fill": "hsl(22 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09370": { - "id": "shape:perf:09370", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 5952, - "rot": 0, - "props": { - "w": 28, - "h": 38, - "fill": "hsl(143 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09371": { - "id": "shape:perf:09371", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 5952, - "rot": 0, - "props": { - "w": 37, - "h": 39, - "fill": "hsl(322 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09372": { - "id": "shape:perf:09372", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 5952, - "rot": 0, - "props": { - "w": 24, - "h": 32, - "fill": "hsl(41 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09373": { - "id": "shape:perf:09373", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 5952, - "rot": 0, - "props": { - "w": 36, - "h": 39, - "fill": "hsl(85 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09374": { - "id": "shape:perf:09374", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 5952, - "rot": 0, - "props": { - "w": 35, - "h": 43, - "fill": "hsl(170 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09375": { - "id": "shape:perf:09375", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 5952, - "rot": 0, - "props": { - "w": 31, - "h": 45, - "fill": "hsl(262 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09376": { - "id": "shape:perf:09376", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 5952, - "rot": 0, - "props": { - "w": 47, - "h": 36, - "fill": "hsl(115 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09377": { - "id": "shape:perf:09377", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 5952, - "rot": 0, - "props": { - "w": 44, - "h": 41, - "fill": "hsl(273 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09378": { - "id": "shape:perf:09378", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 5952, - "rot": 0, - "props": { - "w": 42, - "h": 31, - "fill": "hsl(305 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09379": { - "id": "shape:perf:09379", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 5952, - "rot": 0, - "props": { - "w": 38, - "h": 46, - "fill": "hsl(57 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09380": { - "id": "shape:perf:09380", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 5952, - "rot": 0, - "props": { - "w": 35, - "h": 31, - "fill": "hsl(77 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09381": { - "id": "shape:perf:09381", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 5952, - "rot": 0, - "props": { - "w": 42, - "h": 47, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09382": { - "id": "shape:perf:09382", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 5952, - "rot": 0, - "props": { - "w": 36, - "h": 42, - "fill": "hsl(213 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09383": { - "id": "shape:perf:09383", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 5952, - "rot": 0, - "props": { - "w": 29, - "h": 34, - "fill": "hsl(196 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09384": { - "id": "shape:perf:09384", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 5952, - "rot": 0, - "props": { - "w": 28, - "h": 37, - "fill": "hsl(139 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09385": { - "id": "shape:perf:09385", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 5952, - "rot": 0, - "props": { - "w": 47, - "h": 25, - "fill": "hsl(106 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09386": { - "id": "shape:perf:09386", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 5952, - "rot": 0, - "props": { - "w": 35, - "h": 33, - "fill": "hsl(51 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09387": { - "id": "shape:perf:09387", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 5952, - "rot": 0, - "props": { - "w": 34, - "h": 31, - "fill": "hsl(343 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09388": { - "id": "shape:perf:09388", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 5952, - "rot": 0, - "props": { - "w": 36, - "h": 44, - "fill": "hsl(168 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09389": { - "id": "shape:perf:09389", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 5952, - "rot": 0, - "props": { - "w": 24, - "h": 45, - "fill": "hsl(283 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09390": { - "id": "shape:perf:09390", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 5952, - "rot": 0, - "props": { - "w": 39, - "h": 31, - "fill": "hsl(320 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09391": { - "id": "shape:perf:09391", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 5952, - "rot": 0, - "props": { - "w": 45, - "h": 27, - "fill": "hsl(290 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09392": { - "id": "shape:perf:09392", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 5952, - "rot": 0, - "props": { - "w": 31, - "h": 46, - "fill": "hsl(143 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09393": { - "id": "shape:perf:09393", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 5952, - "rot": 0, - "props": { - "w": 43, - "h": 31, - "fill": "hsl(68 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09394": { - "id": "shape:perf:09394", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 5952, - "rot": 0, - "props": { - "w": 42, - "h": 33, - "fill": "hsl(33 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09395": { - "id": "shape:perf:09395", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 5952, - "rot": 0, - "props": { - "w": 24, - "h": 47, - "fill": "hsl(44 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09396": { - "id": "shape:perf:09396", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 5952, - "rot": 0, - "props": { - "w": 38, - "h": 33, - "fill": "hsl(166 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09397": { - "id": "shape:perf:09397", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 5952, - "rot": 0, - "props": { - "w": 36, - "h": 45, - "fill": "hsl(285 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09398": { - "id": "shape:perf:09398", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 5952, - "rot": 0, - "props": { - "w": 44, - "h": 38, - "fill": "hsl(293 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09399": { - "id": "shape:perf:09399", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 5952, - "rot": 0, - "props": { - "w": 34, - "h": 34, - "fill": "hsl(296 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09400": { - "id": "shape:perf:09400", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 6016, - "rot": 0, - "props": { - "w": 46, - "h": 43, - "fill": "hsl(346 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09401": { - "id": "shape:perf:09401", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 6016, - "rot": 0, - "props": { - "w": 47, - "h": 28, - "fill": "hsl(236 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09402": { - "id": "shape:perf:09402", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 6016, - "rot": 0, - "props": { - "w": 30, - "h": 43, - "fill": "hsl(328 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09403": { - "id": "shape:perf:09403", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 6016, - "rot": 0, - "props": { - "w": 34, - "h": 47, - "fill": "hsl(267 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09404": { - "id": "shape:perf:09404", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 6016, - "rot": 0, - "props": { - "w": 34, - "h": 33, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09405": { - "id": "shape:perf:09405", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 6016, - "rot": 0, - "props": { - "w": 38, - "h": 25, - "fill": "hsl(351 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09406": { - "id": "shape:perf:09406", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 6016, - "rot": 0, - "props": { - "w": 31, - "h": 36, - "fill": "hsl(96 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09407": { - "id": "shape:perf:09407", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 6016, - "rot": 0, - "props": { - "w": 29, - "h": 47, - "fill": "hsl(110 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09408": { - "id": "shape:perf:09408", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 6016, - "rot": 0, - "props": { - "w": 38, - "h": 45, - "fill": "hsl(23 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09409": { - "id": "shape:perf:09409", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 6016, - "rot": 0, - "props": { - "w": 40, - "h": 32, - "fill": "hsl(231 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09410": { - "id": "shape:perf:09410", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 6016, - "rot": 0, - "props": { - "w": 29, - "h": 39, - "fill": "hsl(276 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09411": { - "id": "shape:perf:09411", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 6016, - "rot": 0, - "props": { - "w": 29, - "h": 39, - "fill": "hsl(354 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09412": { - "id": "shape:perf:09412", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 6016, - "rot": 0, - "props": { - "w": 33, - "h": 34, - "fill": "hsl(32 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09413": { - "id": "shape:perf:09413", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 6016, - "rot": 0, - "props": { - "w": 37, - "h": 37, - "fill": "hsl(287 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09414": { - "id": "shape:perf:09414", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 6016, - "rot": 0, - "props": { - "w": 31, - "h": 28, - "fill": "hsl(282 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09415": { - "id": "shape:perf:09415", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 6016, - "rot": 0, - "props": { - "w": 36, - "h": 24, - "fill": "hsl(8 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09416": { - "id": "shape:perf:09416", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 6016, - "rot": 0, - "props": { - "w": 36, - "h": 38, - "fill": "hsl(140 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09417": { - "id": "shape:perf:09417", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 6016, - "rot": 0, - "props": { - "w": 44, - "h": 32, - "fill": "hsl(154 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09418": { - "id": "shape:perf:09418", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 6016, - "rot": 0, - "props": { - "w": 32, - "h": 38, - "fill": "hsl(36 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09419": { - "id": "shape:perf:09419", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 6016, - "rot": 0, - "props": { - "w": 34, - "h": 36, - "fill": "hsl(16 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09420": { - "id": "shape:perf:09420", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 6016, - "rot": 0, - "props": { - "w": 35, - "h": 28, - "fill": "hsl(12 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09421": { - "id": "shape:perf:09421", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 6016, - "rot": 0, - "props": { - "w": 37, - "h": 24, - "fill": "hsl(109 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09422": { - "id": "shape:perf:09422", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 6016, - "rot": 0, - "props": { - "w": 35, - "h": 32, - "fill": "hsl(194 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09423": { - "id": "shape:perf:09423", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 6016, - "rot": 0, - "props": { - "w": 28, - "h": 30, - "fill": "hsl(182 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09424": { - "id": "shape:perf:09424", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 6016, - "rot": 0, - "props": { - "w": 35, - "h": 47, - "fill": "hsl(346 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09425": { - "id": "shape:perf:09425", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 6016, - "rot": 0, - "props": { - "w": 39, - "h": 42, - "fill": "hsl(283 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09426": { - "id": "shape:perf:09426", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 6016, - "rot": 0, - "props": { - "w": 42, - "h": 35, - "fill": "hsl(285 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09427": { - "id": "shape:perf:09427", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 6016, - "rot": 0, - "props": { - "w": 43, - "h": 28, - "fill": "hsl(48 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09428": { - "id": "shape:perf:09428", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 6016, - "rot": 0, - "props": { - "w": 29, - "h": 38, - "fill": "hsl(42 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09429": { - "id": "shape:perf:09429", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 6016, - "rot": 0, - "props": { - "w": 46, - "h": 33, - "fill": "hsl(121 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09430": { - "id": "shape:perf:09430", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 6016, - "rot": 0, - "props": { - "w": 29, - "h": 33, - "fill": "hsl(53 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09431": { - "id": "shape:perf:09431", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 6016, - "rot": 0, - "props": { - "w": 31, - "h": 41, - "fill": "hsl(292 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09432": { - "id": "shape:perf:09432", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 6016, - "rot": 0, - "props": { - "w": 29, - "h": 25, - "fill": "hsl(34 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09433": { - "id": "shape:perf:09433", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 6016, - "rot": 0, - "props": { - "w": 39, - "h": 43, - "fill": "hsl(258 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09434": { - "id": "shape:perf:09434", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 6016, - "rot": 0, - "props": { - "w": 40, - "h": 40, - "fill": "hsl(48 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09435": { - "id": "shape:perf:09435", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 6016, - "rot": 0, - "props": { - "w": 31, - "h": 46, - "fill": "hsl(190 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09436": { - "id": "shape:perf:09436", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 6016, - "rot": 0, - "props": { - "w": 33, - "h": 45, - "fill": "hsl(142 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09437": { - "id": "shape:perf:09437", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 6016, - "rot": 0, - "props": { - "w": 25, - "h": 24, - "fill": "hsl(98 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09438": { - "id": "shape:perf:09438", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 6016, - "rot": 0, - "props": { - "w": 39, - "h": 43, - "fill": "hsl(105 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09439": { - "id": "shape:perf:09439", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 6016, - "rot": 0, - "props": { - "w": 35, - "h": 25, - "fill": "hsl(133 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09440": { - "id": "shape:perf:09440", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 6016, - "rot": 0, - "props": { - "w": 46, - "h": 41, - "fill": "hsl(236 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09441": { - "id": "shape:perf:09441", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 6016, - "rot": 0, - "props": { - "w": 33, - "h": 45, - "fill": "hsl(259 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09442": { - "id": "shape:perf:09442", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 6016, - "rot": 0, - "props": { - "w": 46, - "h": 41, - "fill": "hsl(213 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09443": { - "id": "shape:perf:09443", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 6016, - "rot": 0, - "props": { - "w": 30, - "h": 28, - "fill": "hsl(248 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09444": { - "id": "shape:perf:09444", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 6016, - "rot": 0, - "props": { - "w": 34, - "h": 24, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09445": { - "id": "shape:perf:09445", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 6016, - "rot": 0, - "props": { - "w": 43, - "h": 31, - "fill": "hsl(128 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09446": { - "id": "shape:perf:09446", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 6016, - "rot": 0, - "props": { - "w": 39, - "h": 27, - "fill": "hsl(58 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09447": { - "id": "shape:perf:09447", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 6016, - "rot": 0, - "props": { - "w": 26, - "h": 26, - "fill": "hsl(315 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09448": { - "id": "shape:perf:09448", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 6016, - "rot": 0, - "props": { - "w": 28, - "h": 33, - "fill": "hsl(230 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09449": { - "id": "shape:perf:09449", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 6016, - "rot": 0, - "props": { - "w": 42, - "h": 26, - "fill": "hsl(235 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09450": { - "id": "shape:perf:09450", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 6016, - "rot": 0, - "props": { - "w": 26, - "h": 41, - "fill": "hsl(149 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09451": { - "id": "shape:perf:09451", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 6016, - "rot": 0, - "props": { - "w": 25, - "h": 42, - "fill": "hsl(156 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09452": { - "id": "shape:perf:09452", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 6016, - "rot": 0, - "props": { - "w": 44, - "h": 39, - "fill": "hsl(354 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09453": { - "id": "shape:perf:09453", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 6016, - "rot": 0, - "props": { - "w": 42, - "h": 31, - "fill": "hsl(206 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09454": { - "id": "shape:perf:09454", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 6016, - "rot": 0, - "props": { - "w": 32, - "h": 43, - "fill": "hsl(250 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09455": { - "id": "shape:perf:09455", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 6016, - "rot": 0, - "props": { - "w": 47, - "h": 45, - "fill": "hsl(85 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09456": { - "id": "shape:perf:09456", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 6016, - "rot": 0, - "props": { - "w": 28, - "h": 45, - "fill": "hsl(23 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09457": { - "id": "shape:perf:09457", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 6016, - "rot": 0, - "props": { - "w": 40, - "h": 30, - "fill": "hsl(51 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09458": { - "id": "shape:perf:09458", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 6016, - "rot": 0, - "props": { - "w": 43, - "h": 30, - "fill": "hsl(10 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09459": { - "id": "shape:perf:09459", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 6016, - "rot": 0, - "props": { - "w": 33, - "h": 47, - "fill": "hsl(65 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09460": { - "id": "shape:perf:09460", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 6016, - "rot": 0, - "props": { - "w": 30, - "h": 44, - "fill": "hsl(148 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09461": { - "id": "shape:perf:09461", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 6016, - "rot": 0, - "props": { - "w": 34, - "h": 45, - "fill": "hsl(32 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09462": { - "id": "shape:perf:09462", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 6016, - "rot": 0, - "props": { - "w": 45, - "h": 47, - "fill": "hsl(230 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09463": { - "id": "shape:perf:09463", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 6016, - "rot": 0, - "props": { - "w": 43, - "h": 44, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09464": { - "id": "shape:perf:09464", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 6016, - "rot": 0, - "props": { - "w": 31, - "h": 30, - "fill": "hsl(58 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09465": { - "id": "shape:perf:09465", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 6016, - "rot": 0, - "props": { - "w": 39, - "h": 24, - "fill": "hsl(202 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09466": { - "id": "shape:perf:09466", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 6016, - "rot": 0, - "props": { - "w": 36, - "h": 46, - "fill": "hsl(93 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09467": { - "id": "shape:perf:09467", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 6016, - "rot": 0, - "props": { - "w": 26, - "h": 35, - "fill": "hsl(91 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09468": { - "id": "shape:perf:09468", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 6016, - "rot": 0, - "props": { - "w": 33, - "h": 30, - "fill": "hsl(56 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09469": { - "id": "shape:perf:09469", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 6016, - "rot": 0, - "props": { - "w": 41, - "h": 28, - "fill": "hsl(96 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09470": { - "id": "shape:perf:09470", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 6016, - "rot": 0, - "props": { - "w": 34, - "h": 40, - "fill": "hsl(156 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09471": { - "id": "shape:perf:09471", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 6016, - "rot": 0, - "props": { - "w": 42, - "h": 31, - "fill": "hsl(176 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09472": { - "id": "shape:perf:09472", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 6016, - "rot": 0, - "props": { - "w": 43, - "h": 41, - "fill": "hsl(324 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09473": { - "id": "shape:perf:09473", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 6016, - "rot": 0, - "props": { - "w": 29, - "h": 37, - "fill": "hsl(201 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09474": { - "id": "shape:perf:09474", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 6016, - "rot": 0, - "props": { - "w": 31, - "h": 24, - "fill": "hsl(126 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09475": { - "id": "shape:perf:09475", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 6016, - "rot": 0, - "props": { - "w": 34, - "h": 26, - "fill": "hsl(87 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09476": { - "id": "shape:perf:09476", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 6016, - "rot": 0, - "props": { - "w": 43, - "h": 41, - "fill": "hsl(354 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09477": { - "id": "shape:perf:09477", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 6016, - "rot": 0, - "props": { - "w": 36, - "h": 30, - "fill": "hsl(84 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09478": { - "id": "shape:perf:09478", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 6016, - "rot": 0, - "props": { - "w": 42, - "h": 42, - "fill": "hsl(316 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09479": { - "id": "shape:perf:09479", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 6016, - "rot": 0, - "props": { - "w": 30, - "h": 34, - "fill": "hsl(297 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09480": { - "id": "shape:perf:09480", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 6016, - "rot": 0, - "props": { - "w": 27, - "h": 41, - "fill": "hsl(291 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09481": { - "id": "shape:perf:09481", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 6016, - "rot": 0, - "props": { - "w": 29, - "h": 32, - "fill": "hsl(59 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09482": { - "id": "shape:perf:09482", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 6016, - "rot": 0, - "props": { - "w": 34, - "h": 39, - "fill": "hsl(297 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09483": { - "id": "shape:perf:09483", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 6016, - "rot": 0, - "props": { - "w": 30, - "h": 25, - "fill": "hsl(157 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09484": { - "id": "shape:perf:09484", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 6016, - "rot": 0, - "props": { - "w": 33, - "h": 39, - "fill": "hsl(270 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09485": { - "id": "shape:perf:09485", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 6016, - "rot": 0, - "props": { - "w": 46, - "h": 26, - "fill": "hsl(357 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09486": { - "id": "shape:perf:09486", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 6016, - "rot": 0, - "props": { - "w": 39, - "h": 26, - "fill": "hsl(235 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09487": { - "id": "shape:perf:09487", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 6016, - "rot": 0, - "props": { - "w": 35, - "h": 29, - "fill": "hsl(94 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09488": { - "id": "shape:perf:09488", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 6016, - "rot": 0, - "props": { - "w": 33, - "h": 47, - "fill": "hsl(39 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09489": { - "id": "shape:perf:09489", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 6016, - "rot": 0, - "props": { - "w": 26, - "h": 37, - "fill": "hsl(163 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09490": { - "id": "shape:perf:09490", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 6016, - "rot": 0, - "props": { - "w": 39, - "h": 30, - "fill": "hsl(44 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09491": { - "id": "shape:perf:09491", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 6016, - "rot": 0, - "props": { - "w": 29, - "h": 41, - "fill": "hsl(109 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09492": { - "id": "shape:perf:09492", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 6016, - "rot": 0, - "props": { - "w": 45, - "h": 41, - "fill": "hsl(160 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09493": { - "id": "shape:perf:09493", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 6016, - "rot": 0, - "props": { - "w": 28, - "h": 24, - "fill": "hsl(52 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09494": { - "id": "shape:perf:09494", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 6016, - "rot": 0, - "props": { - "w": 27, - "h": 38, - "fill": "hsl(218 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09495": { - "id": "shape:perf:09495", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 6016, - "rot": 0, - "props": { - "w": 31, - "h": 30, - "fill": "hsl(142 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09496": { - "id": "shape:perf:09496", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 6016, - "rot": 0, - "props": { - "w": 46, - "h": 36, - "fill": "hsl(64 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09497": { - "id": "shape:perf:09497", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 6016, - "rot": 0, - "props": { - "w": 24, - "h": 27, - "fill": "hsl(275 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09498": { - "id": "shape:perf:09498", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 6016, - "rot": 0, - "props": { - "w": 32, - "h": 25, - "fill": "hsl(24 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09499": { - "id": "shape:perf:09499", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 6016, - "rot": 0, - "props": { - "w": 28, - "h": 30, - "fill": "hsl(20 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09500": { - "id": "shape:perf:09500", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 6080, - "rot": 0, - "props": { - "w": 45, - "h": 38, - "fill": "hsl(198 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09501": { - "id": "shape:perf:09501", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 6080, - "rot": 0, - "props": { - "w": 24, - "h": 29, - "fill": "hsl(45 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09502": { - "id": "shape:perf:09502", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 6080, - "rot": 0, - "props": { - "w": 44, - "h": 39, - "fill": "hsl(323 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09503": { - "id": "shape:perf:09503", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 6080, - "rot": 0, - "props": { - "w": 29, - "h": 32, - "fill": "hsl(40 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09504": { - "id": "shape:perf:09504", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 6080, - "rot": 0, - "props": { - "w": 41, - "h": 28, - "fill": "hsl(110 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09505": { - "id": "shape:perf:09505", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 6080, - "rot": 0, - "props": { - "w": 40, - "h": 28, - "fill": "hsl(176 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09506": { - "id": "shape:perf:09506", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 6080, - "rot": 0, - "props": { - "w": 42, - "h": 38, - "fill": "hsl(57 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09507": { - "id": "shape:perf:09507", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 6080, - "rot": 0, - "props": { - "w": 35, - "h": 26, - "fill": "hsl(94 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09508": { - "id": "shape:perf:09508", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 6080, - "rot": 0, - "props": { - "w": 24, - "h": 39, - "fill": "hsl(255 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09509": { - "id": "shape:perf:09509", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 6080, - "rot": 0, - "props": { - "w": 36, - "h": 25, - "fill": "hsl(10 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09510": { - "id": "shape:perf:09510", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 6080, - "rot": 0, - "props": { - "w": 34, - "h": 29, - "fill": "hsl(329 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09511": { - "id": "shape:perf:09511", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 6080, - "rot": 0, - "props": { - "w": 25, - "h": 37, - "fill": "hsl(354 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09512": { - "id": "shape:perf:09512", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 6080, - "rot": 0, - "props": { - "w": 34, - "h": 33, - "fill": "hsl(275 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09513": { - "id": "shape:perf:09513", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 6080, - "rot": 0, - "props": { - "w": 33, - "h": 33, - "fill": "hsl(154 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09514": { - "id": "shape:perf:09514", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 6080, - "rot": 0, - "props": { - "w": 32, - "h": 25, - "fill": "hsl(235 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09515": { - "id": "shape:perf:09515", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 6080, - "rot": 0, - "props": { - "w": 33, - "h": 29, - "fill": "hsl(185 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09516": { - "id": "shape:perf:09516", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 6080, - "rot": 0, - "props": { - "w": 39, - "h": 34, - "fill": "hsl(255 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09517": { - "id": "shape:perf:09517", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 6080, - "rot": 0, - "props": { - "w": 44, - "h": 44, - "fill": "hsl(354 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09518": { - "id": "shape:perf:09518", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 6080, - "rot": 0, - "props": { - "w": 42, - "h": 34, - "fill": "hsl(13 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09519": { - "id": "shape:perf:09519", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 6080, - "rot": 0, - "props": { - "w": 26, - "h": 42, - "fill": "hsl(261 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09520": { - "id": "shape:perf:09520", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 6080, - "rot": 0, - "props": { - "w": 37, - "h": 46, - "fill": "hsl(75 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09521": { - "id": "shape:perf:09521", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 6080, - "rot": 0, - "props": { - "w": 27, - "h": 29, - "fill": "hsl(247 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09522": { - "id": "shape:perf:09522", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 6080, - "rot": 0, - "props": { - "w": 44, - "h": 33, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09523": { - "id": "shape:perf:09523", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 6080, - "rot": 0, - "props": { - "w": 43, - "h": 24, - "fill": "hsl(66 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09524": { - "id": "shape:perf:09524", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 6080, - "rot": 0, - "props": { - "w": 35, - "h": 26, - "fill": "hsl(280 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09525": { - "id": "shape:perf:09525", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 6080, - "rot": 0, - "props": { - "w": 29, - "h": 44, - "fill": "hsl(41 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09526": { - "id": "shape:perf:09526", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 6080, - "rot": 0, - "props": { - "w": 46, - "h": 43, - "fill": "hsl(69 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09527": { - "id": "shape:perf:09527", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 6080, - "rot": 0, - "props": { - "w": 24, - "h": 32, - "fill": "hsl(258 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09528": { - "id": "shape:perf:09528", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 6080, - "rot": 0, - "props": { - "w": 46, - "h": 47, - "fill": "hsl(134 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09529": { - "id": "shape:perf:09529", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 6080, - "rot": 0, - "props": { - "w": 36, - "h": 24, - "fill": "hsl(62 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09530": { - "id": "shape:perf:09530", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 6080, - "rot": 0, - "props": { - "w": 31, - "h": 37, - "fill": "hsl(329 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09531": { - "id": "shape:perf:09531", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 6080, - "rot": 0, - "props": { - "w": 37, - "h": 39, - "fill": "hsl(78 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09532": { - "id": "shape:perf:09532", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 6080, - "rot": 0, - "props": { - "w": 24, - "h": 43, - "fill": "hsl(68 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09533": { - "id": "shape:perf:09533", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 6080, - "rot": 0, - "props": { - "w": 37, - "h": 46, - "fill": "hsl(6 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09534": { - "id": "shape:perf:09534", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 6080, - "rot": 0, - "props": { - "w": 27, - "h": 46, - "fill": "hsl(80 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09535": { - "id": "shape:perf:09535", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 6080, - "rot": 0, - "props": { - "w": 26, - "h": 29, - "fill": "hsl(211 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09536": { - "id": "shape:perf:09536", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 6080, - "rot": 0, - "props": { - "w": 40, - "h": 44, - "fill": "hsl(29 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09537": { - "id": "shape:perf:09537", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 6080, - "rot": 0, - "props": { - "w": 29, - "h": 36, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09538": { - "id": "shape:perf:09538", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 6080, - "rot": 0, - "props": { - "w": 39, - "h": 41, - "fill": "hsl(72 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09539": { - "id": "shape:perf:09539", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 6080, - "rot": 0, - "props": { - "w": 27, - "h": 28, - "fill": "hsl(357 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09540": { - "id": "shape:perf:09540", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 6080, - "rot": 0, - "props": { - "w": 46, - "h": 46, - "fill": "hsl(65 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09541": { - "id": "shape:perf:09541", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 6080, - "rot": 0, - "props": { - "w": 36, - "h": 46, - "fill": "hsl(308 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09542": { - "id": "shape:perf:09542", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 6080, - "rot": 0, - "props": { - "w": 31, - "h": 43, - "fill": "hsl(26 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09543": { - "id": "shape:perf:09543", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 6080, - "rot": 0, - "props": { - "w": 31, - "h": 27, - "fill": "hsl(310 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09544": { - "id": "shape:perf:09544", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 6080, - "rot": 0, - "props": { - "w": 28, - "h": 30, - "fill": "hsl(209 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09545": { - "id": "shape:perf:09545", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 6080, - "rot": 0, - "props": { - "w": 24, - "h": 45, - "fill": "hsl(60 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09546": { - "id": "shape:perf:09546", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 6080, - "rot": 0, - "props": { - "w": 34, - "h": 39, - "fill": "hsl(284 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09547": { - "id": "shape:perf:09547", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 6080, - "rot": 0, - "props": { - "w": 36, - "h": 38, - "fill": "hsl(96 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09548": { - "id": "shape:perf:09548", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 6080, - "rot": 0, - "props": { - "w": 47, - "h": 26, - "fill": "hsl(71 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09549": { - "id": "shape:perf:09549", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 6080, - "rot": 0, - "props": { - "w": 41, - "h": 28, - "fill": "hsl(353 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09550": { - "id": "shape:perf:09550", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 6080, - "rot": 0, - "props": { - "w": 34, - "h": 38, - "fill": "hsl(288 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09551": { - "id": "shape:perf:09551", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 6080, - "rot": 0, - "props": { - "w": 36, - "h": 37, - "fill": "hsl(241 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09552": { - "id": "shape:perf:09552", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 6080, - "rot": 0, - "props": { - "w": 41, - "h": 25, - "fill": "hsl(62 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09553": { - "id": "shape:perf:09553", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 6080, - "rot": 0, - "props": { - "w": 25, - "h": 40, - "fill": "hsl(207 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09554": { - "id": "shape:perf:09554", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 6080, - "rot": 0, - "props": { - "w": 47, - "h": 46, - "fill": "hsl(199 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09555": { - "id": "shape:perf:09555", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 6080, - "rot": 0, - "props": { - "w": 40, - "h": 41, - "fill": "hsl(53 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09556": { - "id": "shape:perf:09556", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 6080, - "rot": 0, - "props": { - "w": 42, - "h": 28, - "fill": "hsl(150 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09557": { - "id": "shape:perf:09557", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 6080, - "rot": 0, - "props": { - "w": 36, - "h": 29, - "fill": "hsl(42 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09558": { - "id": "shape:perf:09558", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 6080, - "rot": 0, - "props": { - "w": 47, - "h": 31, - "fill": "hsl(132 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09559": { - "id": "shape:perf:09559", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 6080, - "rot": 0, - "props": { - "w": 44, - "h": 33, - "fill": "hsl(189 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09560": { - "id": "shape:perf:09560", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 6080, - "rot": 0, - "props": { - "w": 30, - "h": 40, - "fill": "hsl(60 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09561": { - "id": "shape:perf:09561", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 6080, - "rot": 0, - "props": { - "w": 36, - "h": 40, - "fill": "hsl(324 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09562": { - "id": "shape:perf:09562", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 6080, - "rot": 0, - "props": { - "w": 43, - "h": 42, - "fill": "hsl(266 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09563": { - "id": "shape:perf:09563", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 6080, - "rot": 0, - "props": { - "w": 39, - "h": 39, - "fill": "hsl(55 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09564": { - "id": "shape:perf:09564", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 6080, - "rot": 0, - "props": { - "w": 44, - "h": 36, - "fill": "hsl(226 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09565": { - "id": "shape:perf:09565", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 6080, - "rot": 0, - "props": { - "w": 35, - "h": 25, - "fill": "hsl(48 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09566": { - "id": "shape:perf:09566", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 6080, - "rot": 0, - "props": { - "w": 46, - "h": 35, - "fill": "hsl(98 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09567": { - "id": "shape:perf:09567", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 6080, - "rot": 0, - "props": { - "w": 47, - "h": 32, - "fill": "hsl(51 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09568": { - "id": "shape:perf:09568", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 6080, - "rot": 0, - "props": { - "w": 31, - "h": 25, - "fill": "hsl(52 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09569": { - "id": "shape:perf:09569", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 6080, - "rot": 0, - "props": { - "w": 39, - "h": 29, - "fill": "hsl(287 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09570": { - "id": "shape:perf:09570", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 6080, - "rot": 0, - "props": { - "w": 29, - "h": 29, - "fill": "hsl(267 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09571": { - "id": "shape:perf:09571", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 6080, - "rot": 0, - "props": { - "w": 29, - "h": 36, - "fill": "hsl(120 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09572": { - "id": "shape:perf:09572", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 6080, - "rot": 0, - "props": { - "w": 41, - "h": 30, - "fill": "hsl(139 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09573": { - "id": "shape:perf:09573", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 6080, - "rot": 0, - "props": { - "w": 29, - "h": 40, - "fill": "hsl(127 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09574": { - "id": "shape:perf:09574", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 6080, - "rot": 0, - "props": { - "w": 39, - "h": 24, - "fill": "hsl(358 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09575": { - "id": "shape:perf:09575", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 6080, - "rot": 0, - "props": { - "w": 37, - "h": 41, - "fill": "hsl(124 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09576": { - "id": "shape:perf:09576", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 6080, - "rot": 0, - "props": { - "w": 38, - "h": 29, - "fill": "hsl(194 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09577": { - "id": "shape:perf:09577", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 6080, - "rot": 0, - "props": { - "w": 36, - "h": 43, - "fill": "hsl(137 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09578": { - "id": "shape:perf:09578", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 6080, - "rot": 0, - "props": { - "w": 39, - "h": 45, - "fill": "hsl(255 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09579": { - "id": "shape:perf:09579", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 6080, - "rot": 0, - "props": { - "w": 24, - "h": 34, - "fill": "hsl(156 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09580": { - "id": "shape:perf:09580", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 6080, - "rot": 0, - "props": { - "w": 36, - "h": 32, - "fill": "hsl(180 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09581": { - "id": "shape:perf:09581", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 6080, - "rot": 0, - "props": { - "w": 24, - "h": 39, - "fill": "hsl(154 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09582": { - "id": "shape:perf:09582", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 6080, - "rot": 0, - "props": { - "w": 36, - "h": 24, - "fill": "hsl(80 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09583": { - "id": "shape:perf:09583", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 6080, - "rot": 0, - "props": { - "w": 40, - "h": 26, - "fill": "hsl(10 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09584": { - "id": "shape:perf:09584", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 6080, - "rot": 0, - "props": { - "w": 39, - "h": 28, - "fill": "hsl(186 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09585": { - "id": "shape:perf:09585", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 6080, - "rot": 0, - "props": { - "w": 36, - "h": 29, - "fill": "hsl(222 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09586": { - "id": "shape:perf:09586", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 6080, - "rot": 0, - "props": { - "w": 39, - "h": 37, - "fill": "hsl(333 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09587": { - "id": "shape:perf:09587", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 6080, - "rot": 0, - "props": { - "w": 32, - "h": 43, - "fill": "hsl(55 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09588": { - "id": "shape:perf:09588", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 6080, - "rot": 0, - "props": { - "w": 46, - "h": 31, - "fill": "hsl(298 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09589": { - "id": "shape:perf:09589", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 6080, - "rot": 0, - "props": { - "w": 45, - "h": 34, - "fill": "hsl(288 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09590": { - "id": "shape:perf:09590", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 6080, - "rot": 0, - "props": { - "w": 39, - "h": 43, - "fill": "hsl(335 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09591": { - "id": "shape:perf:09591", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 6080, - "rot": 0, - "props": { - "w": 36, - "h": 39, - "fill": "hsl(59 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09592": { - "id": "shape:perf:09592", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 6080, - "rot": 0, - "props": { - "w": 44, - "h": 42, - "fill": "hsl(68 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09593": { - "id": "shape:perf:09593", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 6080, - "rot": 0, - "props": { - "w": 46, - "h": 35, - "fill": "hsl(115 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09594": { - "id": "shape:perf:09594", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 6080, - "rot": 0, - "props": { - "w": 43, - "h": 45, - "fill": "hsl(17 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09595": { - "id": "shape:perf:09595", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 6080, - "rot": 0, - "props": { - "w": 34, - "h": 24, - "fill": "hsl(154 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09596": { - "id": "shape:perf:09596", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 6080, - "rot": 0, - "props": { - "w": 28, - "h": 27, - "fill": "hsl(139 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09597": { - "id": "shape:perf:09597", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 6080, - "rot": 0, - "props": { - "w": 30, - "h": 37, - "fill": "hsl(247 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09598": { - "id": "shape:perf:09598", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 6080, - "rot": 0, - "props": { - "w": 46, - "h": 41, - "fill": "hsl(89 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09599": { - "id": "shape:perf:09599", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 6080, - "rot": 0, - "props": { - "w": 39, - "h": 41, - "fill": "hsl(327 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09600": { - "id": "shape:perf:09600", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 6144, - "rot": 0, - "props": { - "w": 43, - "h": 38, - "fill": "hsl(39 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09601": { - "id": "shape:perf:09601", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 6144, - "rot": 0, - "props": { - "w": 39, - "h": 38, - "fill": "hsl(241 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09602": { - "id": "shape:perf:09602", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 6144, - "rot": 0, - "props": { - "w": 43, - "h": 28, - "fill": "hsl(48 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09603": { - "id": "shape:perf:09603", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 6144, - "rot": 0, - "props": { - "w": 36, - "h": 34, - "fill": "hsl(293 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09604": { - "id": "shape:perf:09604", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 6144, - "rot": 0, - "props": { - "w": 44, - "h": 31, - "fill": "hsl(275 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09605": { - "id": "shape:perf:09605", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 6144, - "rot": 0, - "props": { - "w": 26, - "h": 39, - "fill": "hsl(239 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09606": { - "id": "shape:perf:09606", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 6144, - "rot": 0, - "props": { - "w": 34, - "h": 34, - "fill": "hsl(50 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09607": { - "id": "shape:perf:09607", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 6144, - "rot": 0, - "props": { - "w": 27, - "h": 42, - "fill": "hsl(262 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09608": { - "id": "shape:perf:09608", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 6144, - "rot": 0, - "props": { - "w": 46, - "h": 27, - "fill": "hsl(42 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09609": { - "id": "shape:perf:09609", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 6144, - "rot": 0, - "props": { - "w": 46, - "h": 34, - "fill": "hsl(116 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09610": { - "id": "shape:perf:09610", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 6144, - "rot": 0, - "props": { - "w": 33, - "h": 30, - "fill": "hsl(166 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09611": { - "id": "shape:perf:09611", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 6144, - "rot": 0, - "props": { - "w": 45, - "h": 36, - "fill": "hsl(324 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09612": { - "id": "shape:perf:09612", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 6144, - "rot": 0, - "props": { - "w": 32, - "h": 43, - "fill": "hsl(309 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09613": { - "id": "shape:perf:09613", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 6144, - "rot": 0, - "props": { - "w": 40, - "h": 47, - "fill": "hsl(286 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09614": { - "id": "shape:perf:09614", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 6144, - "rot": 0, - "props": { - "w": 28, - "h": 43, - "fill": "hsl(328 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09615": { - "id": "shape:perf:09615", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 6144, - "rot": 0, - "props": { - "w": 44, - "h": 29, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09616": { - "id": "shape:perf:09616", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 6144, - "rot": 0, - "props": { - "w": 35, - "h": 39, - "fill": "hsl(167 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09617": { - "id": "shape:perf:09617", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 6144, - "rot": 0, - "props": { - "w": 25, - "h": 44, - "fill": "hsl(27 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09618": { - "id": "shape:perf:09618", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 6144, - "rot": 0, - "props": { - "w": 29, - "h": 33, - "fill": "hsl(79 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09619": { - "id": "shape:perf:09619", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 6144, - "rot": 0, - "props": { - "w": 33, - "h": 35, - "fill": "hsl(291 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09620": { - "id": "shape:perf:09620", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 6144, - "rot": 0, - "props": { - "w": 31, - "h": 29, - "fill": "hsl(333 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09621": { - "id": "shape:perf:09621", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 6144, - "rot": 0, - "props": { - "w": 25, - "h": 33, - "fill": "hsl(112 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09622": { - "id": "shape:perf:09622", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 6144, - "rot": 0, - "props": { - "w": 24, - "h": 29, - "fill": "hsl(184 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09623": { - "id": "shape:perf:09623", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 6144, - "rot": 0, - "props": { - "w": 35, - "h": 32, - "fill": "hsl(131 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09624": { - "id": "shape:perf:09624", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 6144, - "rot": 0, - "props": { - "w": 43, - "h": 32, - "fill": "hsl(98 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09625": { - "id": "shape:perf:09625", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 6144, - "rot": 0, - "props": { - "w": 34, - "h": 27, - "fill": "hsl(27 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09626": { - "id": "shape:perf:09626", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 6144, - "rot": 0, - "props": { - "w": 43, - "h": 24, - "fill": "hsl(337 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09627": { - "id": "shape:perf:09627", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 6144, - "rot": 0, - "props": { - "w": 35, - "h": 29, - "fill": "hsl(268 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09628": { - "id": "shape:perf:09628", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 6144, - "rot": 0, - "props": { - "w": 42, - "h": 46, - "fill": "hsl(333 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09629": { - "id": "shape:perf:09629", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 6144, - "rot": 0, - "props": { - "w": 43, - "h": 35, - "fill": "hsl(321 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09630": { - "id": "shape:perf:09630", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 6144, - "rot": 0, - "props": { - "w": 26, - "h": 44, - "fill": "hsl(240 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09631": { - "id": "shape:perf:09631", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 6144, - "rot": 0, - "props": { - "w": 31, - "h": 42, - "fill": "hsl(324 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09632": { - "id": "shape:perf:09632", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 6144, - "rot": 0, - "props": { - "w": 46, - "h": 43, - "fill": "hsl(107 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09633": { - "id": "shape:perf:09633", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 6144, - "rot": 0, - "props": { - "w": 31, - "h": 47, - "fill": "hsl(225 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09634": { - "id": "shape:perf:09634", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 6144, - "rot": 0, - "props": { - "w": 37, - "h": 27, - "fill": "hsl(284 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09635": { - "id": "shape:perf:09635", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 6144, - "rot": 0, - "props": { - "w": 44, - "h": 36, - "fill": "hsl(219 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09636": { - "id": "shape:perf:09636", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 6144, - "rot": 0, - "props": { - "w": 28, - "h": 29, - "fill": "hsl(73 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09637": { - "id": "shape:perf:09637", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 6144, - "rot": 0, - "props": { - "w": 38, - "h": 42, - "fill": "hsl(163 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09638": { - "id": "shape:perf:09638", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 6144, - "rot": 0, - "props": { - "w": 32, - "h": 43, - "fill": "hsl(289 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09639": { - "id": "shape:perf:09639", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 6144, - "rot": 0, - "props": { - "w": 29, - "h": 41, - "fill": "hsl(244 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09640": { - "id": "shape:perf:09640", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 6144, - "rot": 0, - "props": { - "w": 37, - "h": 45, - "fill": "hsl(359 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09641": { - "id": "shape:perf:09641", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 6144, - "rot": 0, - "props": { - "w": 47, - "h": 34, - "fill": "hsl(188 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09642": { - "id": "shape:perf:09642", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 6144, - "rot": 0, - "props": { - "w": 37, - "h": 26, - "fill": "hsl(245 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09643": { - "id": "shape:perf:09643", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 6144, - "rot": 0, - "props": { - "w": 40, - "h": 33, - "fill": "hsl(245 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09644": { - "id": "shape:perf:09644", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 6144, - "rot": 0, - "props": { - "w": 31, - "h": 42, - "fill": "hsl(168 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09645": { - "id": "shape:perf:09645", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 6144, - "rot": 0, - "props": { - "w": 25, - "h": 47, - "fill": "hsl(200 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09646": { - "id": "shape:perf:09646", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 6144, - "rot": 0, - "props": { - "w": 40, - "h": 39, - "fill": "hsl(289 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09647": { - "id": "shape:perf:09647", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 6144, - "rot": 0, - "props": { - "w": 35, - "h": 33, - "fill": "hsl(51 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09648": { - "id": "shape:perf:09648", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 6144, - "rot": 0, - "props": { - "w": 24, - "h": 29, - "fill": "hsl(335 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09649": { - "id": "shape:perf:09649", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 6144, - "rot": 0, - "props": { - "w": 36, - "h": 36, - "fill": "hsl(351 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09650": { - "id": "shape:perf:09650", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 6144, - "rot": 0, - "props": { - "w": 29, - "h": 44, - "fill": "hsl(53 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09651": { - "id": "shape:perf:09651", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 6144, - "rot": 0, - "props": { - "w": 31, - "h": 28, - "fill": "hsl(128 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09652": { - "id": "shape:perf:09652", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 6144, - "rot": 0, - "props": { - "w": 39, - "h": 44, - "fill": "hsl(28 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09653": { - "id": "shape:perf:09653", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 6144, - "rot": 0, - "props": { - "w": 38, - "h": 38, - "fill": "hsl(118 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09654": { - "id": "shape:perf:09654", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 6144, - "rot": 0, - "props": { - "w": 45, - "h": 41, - "fill": "hsl(204 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09655": { - "id": "shape:perf:09655", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 6144, - "rot": 0, - "props": { - "w": 24, - "h": 41, - "fill": "hsl(87 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09656": { - "id": "shape:perf:09656", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 6144, - "rot": 0, - "props": { - "w": 29, - "h": 39, - "fill": "hsl(163 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09657": { - "id": "shape:perf:09657", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 6144, - "rot": 0, - "props": { - "w": 30, - "h": 41, - "fill": "hsl(26 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09658": { - "id": "shape:perf:09658", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 6144, - "rot": 0, - "props": { - "w": 37, - "h": 29, - "fill": "hsl(25 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09659": { - "id": "shape:perf:09659", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 6144, - "rot": 0, - "props": { - "w": 40, - "h": 34, - "fill": "hsl(339 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09660": { - "id": "shape:perf:09660", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 6144, - "rot": 0, - "props": { - "w": 25, - "h": 42, - "fill": "hsl(241 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09661": { - "id": "shape:perf:09661", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 6144, - "rot": 0, - "props": { - "w": 32, - "h": 43, - "fill": "hsl(356 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09662": { - "id": "shape:perf:09662", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 6144, - "rot": 0, - "props": { - "w": 37, - "h": 40, - "fill": "hsl(136 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09663": { - "id": "shape:perf:09663", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 6144, - "rot": 0, - "props": { - "w": 30, - "h": 31, - "fill": "hsl(9 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09664": { - "id": "shape:perf:09664", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 6144, - "rot": 0, - "props": { - "w": 25, - "h": 37, - "fill": "hsl(263 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09665": { - "id": "shape:perf:09665", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 6144, - "rot": 0, - "props": { - "w": 41, - "h": 33, - "fill": "hsl(297 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09666": { - "id": "shape:perf:09666", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 6144, - "rot": 0, - "props": { - "w": 40, - "h": 24, - "fill": "hsl(78 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09667": { - "id": "shape:perf:09667", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 6144, - "rot": 0, - "props": { - "w": 47, - "h": 36, - "fill": "hsl(193 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09668": { - "id": "shape:perf:09668", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 6144, - "rot": 0, - "props": { - "w": 45, - "h": 30, - "fill": "hsl(19 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09669": { - "id": "shape:perf:09669", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 6144, - "rot": 0, - "props": { - "w": 47, - "h": 38, - "fill": "hsl(324 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09670": { - "id": "shape:perf:09670", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 6144, - "rot": 0, - "props": { - "w": 43, - "h": 26, - "fill": "hsl(36 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09671": { - "id": "shape:perf:09671", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 6144, - "rot": 0, - "props": { - "w": 38, - "h": 24, - "fill": "hsl(97 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09672": { - "id": "shape:perf:09672", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 6144, - "rot": 0, - "props": { - "w": 44, - "h": 33, - "fill": "hsl(24 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09673": { - "id": "shape:perf:09673", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 6144, - "rot": 0, - "props": { - "w": 47, - "h": 42, - "fill": "hsl(276 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09674": { - "id": "shape:perf:09674", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 6144, - "rot": 0, - "props": { - "w": 36, - "h": 37, - "fill": "hsl(206 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09675": { - "id": "shape:perf:09675", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 6144, - "rot": 0, - "props": { - "w": 32, - "h": 33, - "fill": "hsl(341 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09676": { - "id": "shape:perf:09676", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 6144, - "rot": 0, - "props": { - "w": 25, - "h": 31, - "fill": "hsl(169 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09677": { - "id": "shape:perf:09677", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 6144, - "rot": 0, - "props": { - "w": 44, - "h": 35, - "fill": "hsl(75 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09678": { - "id": "shape:perf:09678", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 6144, - "rot": 0, - "props": { - "w": 36, - "h": 46, - "fill": "hsl(58 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09679": { - "id": "shape:perf:09679", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 6144, - "rot": 0, - "props": { - "w": 31, - "h": 34, - "fill": "hsl(78 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09680": { - "id": "shape:perf:09680", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 6144, - "rot": 0, - "props": { - "w": 41, - "h": 31, - "fill": "hsl(195 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09681": { - "id": "shape:perf:09681", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 6144, - "rot": 0, - "props": { - "w": 44, - "h": 46, - "fill": "hsl(40 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09682": { - "id": "shape:perf:09682", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 6144, - "rot": 0, - "props": { - "w": 24, - "h": 45, - "fill": "hsl(180 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09683": { - "id": "shape:perf:09683", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 6144, - "rot": 0, - "props": { - "w": 42, - "h": 36, - "fill": "hsl(245 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09684": { - "id": "shape:perf:09684", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 6144, - "rot": 0, - "props": { - "w": 25, - "h": 33, - "fill": "hsl(39 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09685": { - "id": "shape:perf:09685", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 6144, - "rot": 0, - "props": { - "w": 25, - "h": 27, - "fill": "hsl(13 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09686": { - "id": "shape:perf:09686", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 6144, - "rot": 0, - "props": { - "w": 41, - "h": 34, - "fill": "hsl(136 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09687": { - "id": "shape:perf:09687", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 6144, - "rot": 0, - "props": { - "w": 25, - "h": 44, - "fill": "hsl(114 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09688": { - "id": "shape:perf:09688", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 6144, - "rot": 0, - "props": { - "w": 32, - "h": 42, - "fill": "hsl(348 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09689": { - "id": "shape:perf:09689", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 6144, - "rot": 0, - "props": { - "w": 32, - "h": 39, - "fill": "hsl(174 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09690": { - "id": "shape:perf:09690", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 6144, - "rot": 0, - "props": { - "w": 34, - "h": 32, - "fill": "hsl(251 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09691": { - "id": "shape:perf:09691", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 6144, - "rot": 0, - "props": { - "w": 38, - "h": 35, - "fill": "hsl(1 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09692": { - "id": "shape:perf:09692", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 6144, - "rot": 0, - "props": { - "w": 34, - "h": 32, - "fill": "hsl(355 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09693": { - "id": "shape:perf:09693", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 6144, - "rot": 0, - "props": { - "w": 38, - "h": 41, - "fill": "hsl(83 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09694": { - "id": "shape:perf:09694", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 6144, - "rot": 0, - "props": { - "w": 41, - "h": 38, - "fill": "hsl(203 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09695": { - "id": "shape:perf:09695", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 6144, - "rot": 0, - "props": { - "w": 27, - "h": 40, - "fill": "hsl(28 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09696": { - "id": "shape:perf:09696", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 6144, - "rot": 0, - "props": { - "w": 25, - "h": 27, - "fill": "hsl(49 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09697": { - "id": "shape:perf:09697", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 6144, - "rot": 0, - "props": { - "w": 27, - "h": 41, - "fill": "hsl(71 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09698": { - "id": "shape:perf:09698", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 6144, - "rot": 0, - "props": { - "w": 30, - "h": 27, - "fill": "hsl(358 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09699": { - "id": "shape:perf:09699", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 6144, - "rot": 0, - "props": { - "w": 42, - "h": 34, - "fill": "hsl(17 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09700": { - "id": "shape:perf:09700", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 6208, - "rot": 0, - "props": { - "w": 32, - "h": 25, - "fill": "hsl(41 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09701": { - "id": "shape:perf:09701", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 6208, - "rot": 0, - "props": { - "w": 35, - "h": 30, - "fill": "hsl(251 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09702": { - "id": "shape:perf:09702", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 6208, - "rot": 0, - "props": { - "w": 45, - "h": 29, - "fill": "hsl(354 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09703": { - "id": "shape:perf:09703", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 6208, - "rot": 0, - "props": { - "w": 47, - "h": 24, - "fill": "hsl(345 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09704": { - "id": "shape:perf:09704", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 6208, - "rot": 0, - "props": { - "w": 33, - "h": 37, - "fill": "hsl(150 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09705": { - "id": "shape:perf:09705", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 6208, - "rot": 0, - "props": { - "w": 46, - "h": 40, - "fill": "hsl(41 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09706": { - "id": "shape:perf:09706", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 6208, - "rot": 0, - "props": { - "w": 25, - "h": 41, - "fill": "hsl(333 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09707": { - "id": "shape:perf:09707", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 6208, - "rot": 0, - "props": { - "w": 35, - "h": 33, - "fill": "hsl(358 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09708": { - "id": "shape:perf:09708", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 6208, - "rot": 0, - "props": { - "w": 26, - "h": 30, - "fill": "hsl(347 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09709": { - "id": "shape:perf:09709", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 6208, - "rot": 0, - "props": { - "w": 28, - "h": 34, - "fill": "hsl(95 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09710": { - "id": "shape:perf:09710", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 6208, - "rot": 0, - "props": { - "w": 33, - "h": 39, - "fill": "hsl(210 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09711": { - "id": "shape:perf:09711", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 6208, - "rot": 0, - "props": { - "w": 33, - "h": 37, - "fill": "hsl(118 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09712": { - "id": "shape:perf:09712", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 6208, - "rot": 0, - "props": { - "w": 35, - "h": 42, - "fill": "hsl(227 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09713": { - "id": "shape:perf:09713", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 6208, - "rot": 0, - "props": { - "w": 26, - "h": 39, - "fill": "hsl(18 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09714": { - "id": "shape:perf:09714", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 6208, - "rot": 0, - "props": { - "w": 46, - "h": 40, - "fill": "hsl(52 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09715": { - "id": "shape:perf:09715", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 6208, - "rot": 0, - "props": { - "w": 31, - "h": 31, - "fill": "hsl(112 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09716": { - "id": "shape:perf:09716", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 6208, - "rot": 0, - "props": { - "w": 45, - "h": 32, - "fill": "hsl(104 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09717": { - "id": "shape:perf:09717", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 6208, - "rot": 0, - "props": { - "w": 43, - "h": 39, - "fill": "hsl(48 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09718": { - "id": "shape:perf:09718", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 6208, - "rot": 0, - "props": { - "w": 42, - "h": 41, - "fill": "hsl(21 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09719": { - "id": "shape:perf:09719", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 6208, - "rot": 0, - "props": { - "w": 35, - "h": 43, - "fill": "hsl(175 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09720": { - "id": "shape:perf:09720", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 6208, - "rot": 0, - "props": { - "w": 35, - "h": 45, - "fill": "hsl(92 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09721": { - "id": "shape:perf:09721", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 6208, - "rot": 0, - "props": { - "w": 30, - "h": 36, - "fill": "hsl(270 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09722": { - "id": "shape:perf:09722", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 6208, - "rot": 0, - "props": { - "w": 29, - "h": 29, - "fill": "hsl(232 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09723": { - "id": "shape:perf:09723", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 6208, - "rot": 0, - "props": { - "w": 31, - "h": 45, - "fill": "hsl(20 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09724": { - "id": "shape:perf:09724", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 6208, - "rot": 0, - "props": { - "w": 24, - "h": 29, - "fill": "hsl(74 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09725": { - "id": "shape:perf:09725", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 6208, - "rot": 0, - "props": { - "w": 37, - "h": 35, - "fill": "hsl(320 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09726": { - "id": "shape:perf:09726", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 6208, - "rot": 0, - "props": { - "w": 26, - "h": 40, - "fill": "hsl(263 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09727": { - "id": "shape:perf:09727", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 6208, - "rot": 0, - "props": { - "w": 45, - "h": 38, - "fill": "hsl(269 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09728": { - "id": "shape:perf:09728", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 6208, - "rot": 0, - "props": { - "w": 36, - "h": 35, - "fill": "hsl(340 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09729": { - "id": "shape:perf:09729", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 6208, - "rot": 0, - "props": { - "w": 47, - "h": 41, - "fill": "hsl(157 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09730": { - "id": "shape:perf:09730", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 6208, - "rot": 0, - "props": { - "w": 33, - "h": 28, - "fill": "hsl(279 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09731": { - "id": "shape:perf:09731", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 6208, - "rot": 0, - "props": { - "w": 27, - "h": 34, - "fill": "hsl(87 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09732": { - "id": "shape:perf:09732", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 6208, - "rot": 0, - "props": { - "w": 36, - "h": 35, - "fill": "hsl(227 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09733": { - "id": "shape:perf:09733", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 6208, - "rot": 0, - "props": { - "w": 28, - "h": 34, - "fill": "hsl(21 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09734": { - "id": "shape:perf:09734", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 6208, - "rot": 0, - "props": { - "w": 33, - "h": 34, - "fill": "hsl(82 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09735": { - "id": "shape:perf:09735", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 6208, - "rot": 0, - "props": { - "w": 41, - "h": 24, - "fill": "hsl(212 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09736": { - "id": "shape:perf:09736", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 6208, - "rot": 0, - "props": { - "w": 41, - "h": 32, - "fill": "hsl(122 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09737": { - "id": "shape:perf:09737", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 6208, - "rot": 0, - "props": { - "w": 35, - "h": 43, - "fill": "hsl(318 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09738": { - "id": "shape:perf:09738", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 6208, - "rot": 0, - "props": { - "w": 33, - "h": 38, - "fill": "hsl(35 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09739": { - "id": "shape:perf:09739", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 6208, - "rot": 0, - "props": { - "w": 25, - "h": 26, - "fill": "hsl(97 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09740": { - "id": "shape:perf:09740", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 6208, - "rot": 0, - "props": { - "w": 42, - "h": 31, - "fill": "hsl(3 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09741": { - "id": "shape:perf:09741", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 6208, - "rot": 0, - "props": { - "w": 37, - "h": 44, - "fill": "hsl(90 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09742": { - "id": "shape:perf:09742", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 6208, - "rot": 0, - "props": { - "w": 29, - "h": 35, - "fill": "hsl(354 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09743": { - "id": "shape:perf:09743", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 6208, - "rot": 0, - "props": { - "w": 47, - "h": 38, - "fill": "hsl(309 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09744": { - "id": "shape:perf:09744", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 6208, - "rot": 0, - "props": { - "w": 45, - "h": 47, - "fill": "hsl(80 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09745": { - "id": "shape:perf:09745", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 6208, - "rot": 0, - "props": { - "w": 36, - "h": 25, - "fill": "hsl(39 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09746": { - "id": "shape:perf:09746", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 6208, - "rot": 0, - "props": { - "w": 30, - "h": 45, - "fill": "hsl(10 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09747": { - "id": "shape:perf:09747", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 6208, - "rot": 0, - "props": { - "w": 38, - "h": 38, - "fill": "hsl(147 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09748": { - "id": "shape:perf:09748", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 6208, - "rot": 0, - "props": { - "w": 45, - "h": 34, - "fill": "hsl(127 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09749": { - "id": "shape:perf:09749", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 6208, - "rot": 0, - "props": { - "w": 26, - "h": 31, - "fill": "hsl(304 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09750": { - "id": "shape:perf:09750", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 6208, - "rot": 0, - "props": { - "w": 44, - "h": 25, - "fill": "hsl(197 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09751": { - "id": "shape:perf:09751", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 6208, - "rot": 0, - "props": { - "w": 42, - "h": 40, - "fill": "hsl(16 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09752": { - "id": "shape:perf:09752", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 6208, - "rot": 0, - "props": { - "w": 47, - "h": 29, - "fill": "hsl(348 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09753": { - "id": "shape:perf:09753", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 6208, - "rot": 0, - "props": { - "w": 27, - "h": 34, - "fill": "hsl(208 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09754": { - "id": "shape:perf:09754", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 6208, - "rot": 0, - "props": { - "w": 26, - "h": 36, - "fill": "hsl(112 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09755": { - "id": "shape:perf:09755", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 6208, - "rot": 0, - "props": { - "w": 32, - "h": 24, - "fill": "hsl(129 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09756": { - "id": "shape:perf:09756", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 6208, - "rot": 0, - "props": { - "w": 43, - "h": 39, - "fill": "hsl(218 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09757": { - "id": "shape:perf:09757", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 6208, - "rot": 0, - "props": { - "w": 40, - "h": 32, - "fill": "hsl(89 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09758": { - "id": "shape:perf:09758", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 6208, - "rot": 0, - "props": { - "w": 35, - "h": 40, - "fill": "hsl(256 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09759": { - "id": "shape:perf:09759", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 6208, - "rot": 0, - "props": { - "w": 39, - "h": 30, - "fill": "hsl(220 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09760": { - "id": "shape:perf:09760", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 6208, - "rot": 0, - "props": { - "w": 34, - "h": 46, - "fill": "hsl(103 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09761": { - "id": "shape:perf:09761", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 6208, - "rot": 0, - "props": { - "w": 40, - "h": 45, - "fill": "hsl(359 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09762": { - "id": "shape:perf:09762", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 6208, - "rot": 0, - "props": { - "w": 25, - "h": 29, - "fill": "hsl(107 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09763": { - "id": "shape:perf:09763", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 6208, - "rot": 0, - "props": { - "w": 45, - "h": 44, - "fill": "hsl(308 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09764": { - "id": "shape:perf:09764", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 6208, - "rot": 0, - "props": { - "w": 34, - "h": 39, - "fill": "hsl(114 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09765": { - "id": "shape:perf:09765", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 6208, - "rot": 0, - "props": { - "w": 25, - "h": 32, - "fill": "hsl(255 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09766": { - "id": "shape:perf:09766", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 6208, - "rot": 0, - "props": { - "w": 42, - "h": 24, - "fill": "hsl(157 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09767": { - "id": "shape:perf:09767", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 6208, - "rot": 0, - "props": { - "w": 47, - "h": 30, - "fill": "hsl(145 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09768": { - "id": "shape:perf:09768", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 6208, - "rot": 0, - "props": { - "w": 36, - "h": 41, - "fill": "hsl(119 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09769": { - "id": "shape:perf:09769", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 6208, - "rot": 0, - "props": { - "w": 43, - "h": 27, - "fill": "hsl(240 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09770": { - "id": "shape:perf:09770", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 6208, - "rot": 0, - "props": { - "w": 29, - "h": 26, - "fill": "hsl(13 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09771": { - "id": "shape:perf:09771", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 6208, - "rot": 0, - "props": { - "w": 41, - "h": 45, - "fill": "hsl(129 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09772": { - "id": "shape:perf:09772", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 6208, - "rot": 0, - "props": { - "w": 29, - "h": 41, - "fill": "hsl(218 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09773": { - "id": "shape:perf:09773", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 6208, - "rot": 0, - "props": { - "w": 43, - "h": 43, - "fill": "hsl(255 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09774": { - "id": "shape:perf:09774", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 6208, - "rot": 0, - "props": { - "w": 27, - "h": 39, - "fill": "hsl(221 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09775": { - "id": "shape:perf:09775", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 6208, - "rot": 0, - "props": { - "w": 39, - "h": 39, - "fill": "hsl(30 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09776": { - "id": "shape:perf:09776", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 6208, - "rot": 0, - "props": { - "w": 25, - "h": 43, - "fill": "hsl(20 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09777": { - "id": "shape:perf:09777", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 6208, - "rot": 0, - "props": { - "w": 33, - "h": 32, - "fill": "hsl(138 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09778": { - "id": "shape:perf:09778", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 6208, - "rot": 0, - "props": { - "w": 31, - "h": 37, - "fill": "hsl(63 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09779": { - "id": "shape:perf:09779", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 6208, - "rot": 0, - "props": { - "w": 28, - "h": 39, - "fill": "hsl(283 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09780": { - "id": "shape:perf:09780", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 6208, - "rot": 0, - "props": { - "w": 26, - "h": 40, - "fill": "hsl(172 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09781": { - "id": "shape:perf:09781", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 6208, - "rot": 0, - "props": { - "w": 28, - "h": 47, - "fill": "hsl(324 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09782": { - "id": "shape:perf:09782", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 6208, - "rot": 0, - "props": { - "w": 39, - "h": 27, - "fill": "hsl(222 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09783": { - "id": "shape:perf:09783", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 6208, - "rot": 0, - "props": { - "w": 28, - "h": 33, - "fill": "hsl(243 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09784": { - "id": "shape:perf:09784", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 6208, - "rot": 0, - "props": { - "w": 31, - "h": 24, - "fill": "hsl(340 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09785": { - "id": "shape:perf:09785", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 6208, - "rot": 0, - "props": { - "w": 44, - "h": 41, - "fill": "hsl(336 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09786": { - "id": "shape:perf:09786", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 6208, - "rot": 0, - "props": { - "w": 41, - "h": 42, - "fill": "hsl(246 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09787": { - "id": "shape:perf:09787", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 6208, - "rot": 0, - "props": { - "w": 42, - "h": 42, - "fill": "hsl(115 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09788": { - "id": "shape:perf:09788", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 6208, - "rot": 0, - "props": { - "w": 40, - "h": 37, - "fill": "hsl(151 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09789": { - "id": "shape:perf:09789", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 6208, - "rot": 0, - "props": { - "w": 43, - "h": 42, - "fill": "hsl(217 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09790": { - "id": "shape:perf:09790", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 6208, - "rot": 0, - "props": { - "w": 42, - "h": 45, - "fill": "hsl(241 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09791": { - "id": "shape:perf:09791", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 6208, - "rot": 0, - "props": { - "w": 43, - "h": 34, - "fill": "hsl(51 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09792": { - "id": "shape:perf:09792", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 6208, - "rot": 0, - "props": { - "w": 37, - "h": 34, - "fill": "hsl(0 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09793": { - "id": "shape:perf:09793", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 6208, - "rot": 0, - "props": { - "w": 25, - "h": 39, - "fill": "hsl(38 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09794": { - "id": "shape:perf:09794", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 6208, - "rot": 0, - "props": { - "w": 30, - "h": 42, - "fill": "hsl(135 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09795": { - "id": "shape:perf:09795", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 6208, - "rot": 0, - "props": { - "w": 45, - "h": 32, - "fill": "hsl(95 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09796": { - "id": "shape:perf:09796", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 6208, - "rot": 0, - "props": { - "w": 38, - "h": 47, - "fill": "hsl(116 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09797": { - "id": "shape:perf:09797", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 6208, - "rot": 0, - "props": { - "w": 47, - "h": 45, - "fill": "hsl(319 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09798": { - "id": "shape:perf:09798", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 6208, - "rot": 0, - "props": { - "w": 31, - "h": 34, - "fill": "hsl(16 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09799": { - "id": "shape:perf:09799", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 6208, - "rot": 0, - "props": { - "w": 42, - "h": 24, - "fill": "hsl(10 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09800": { - "id": "shape:perf:09800", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 6272, - "rot": 0, - "props": { - "w": 37, - "h": 39, - "fill": "hsl(31 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09801": { - "id": "shape:perf:09801", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 6272, - "rot": 0, - "props": { - "w": 45, - "h": 45, - "fill": "hsl(112 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09802": { - "id": "shape:perf:09802", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 6272, - "rot": 0, - "props": { - "w": 42, - "h": 45, - "fill": "hsl(94 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09803": { - "id": "shape:perf:09803", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 6272, - "rot": 0, - "props": { - "w": 35, - "h": 43, - "fill": "hsl(354 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09804": { - "id": "shape:perf:09804", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 6272, - "rot": 0, - "props": { - "w": 35, - "h": 41, - "fill": "hsl(257 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09805": { - "id": "shape:perf:09805", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 6272, - "rot": 0, - "props": { - "w": 30, - "h": 36, - "fill": "hsl(71 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09806": { - "id": "shape:perf:09806", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 6272, - "rot": 0, - "props": { - "w": 34, - "h": 25, - "fill": "hsl(19 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09807": { - "id": "shape:perf:09807", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 6272, - "rot": 0, - "props": { - "w": 28, - "h": 34, - "fill": "hsl(59 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09808": { - "id": "shape:perf:09808", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 6272, - "rot": 0, - "props": { - "w": 40, - "h": 41, - "fill": "hsl(204 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09809": { - "id": "shape:perf:09809", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 6272, - "rot": 0, - "props": { - "w": 31, - "h": 39, - "fill": "hsl(263 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09810": { - "id": "shape:perf:09810", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 6272, - "rot": 0, - "props": { - "w": 29, - "h": 26, - "fill": "hsl(247 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09811": { - "id": "shape:perf:09811", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 6272, - "rot": 0, - "props": { - "w": 42, - "h": 43, - "fill": "hsl(319 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09812": { - "id": "shape:perf:09812", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 6272, - "rot": 0, - "props": { - "w": 46, - "h": 32, - "fill": "hsl(108 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09813": { - "id": "shape:perf:09813", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 6272, - "rot": 0, - "props": { - "w": 24, - "h": 24, - "fill": "hsl(197 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09814": { - "id": "shape:perf:09814", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 6272, - "rot": 0, - "props": { - "w": 34, - "h": 40, - "fill": "hsl(309 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09815": { - "id": "shape:perf:09815", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 6272, - "rot": 0, - "props": { - "w": 44, - "h": 47, - "fill": "hsl(164 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09816": { - "id": "shape:perf:09816", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 6272, - "rot": 0, - "props": { - "w": 47, - "h": 35, - "fill": "hsl(86 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09817": { - "id": "shape:perf:09817", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 6272, - "rot": 0, - "props": { - "w": 44, - "h": 26, - "fill": "hsl(20 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09818": { - "id": "shape:perf:09818", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 6272, - "rot": 0, - "props": { - "w": 30, - "h": 35, - "fill": "hsl(113 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09819": { - "id": "shape:perf:09819", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 6272, - "rot": 0, - "props": { - "w": 28, - "h": 43, - "fill": "hsl(173 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09820": { - "id": "shape:perf:09820", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 6272, - "rot": 0, - "props": { - "w": 30, - "h": 42, - "fill": "hsl(300 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09821": { - "id": "shape:perf:09821", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 6272, - "rot": 0, - "props": { - "w": 28, - "h": 26, - "fill": "hsl(98 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09822": { - "id": "shape:perf:09822", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 6272, - "rot": 0, - "props": { - "w": 29, - "h": 32, - "fill": "hsl(34 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09823": { - "id": "shape:perf:09823", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 6272, - "rot": 0, - "props": { - "w": 27, - "h": 27, - "fill": "hsl(251 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09824": { - "id": "shape:perf:09824", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 6272, - "rot": 0, - "props": { - "w": 25, - "h": 32, - "fill": "hsl(224 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09825": { - "id": "shape:perf:09825", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 6272, - "rot": 0, - "props": { - "w": 44, - "h": 27, - "fill": "hsl(271 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09826": { - "id": "shape:perf:09826", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 6272, - "rot": 0, - "props": { - "w": 46, - "h": 41, - "fill": "hsl(323 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09827": { - "id": "shape:perf:09827", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 6272, - "rot": 0, - "props": { - "w": 27, - "h": 40, - "fill": "hsl(175 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09828": { - "id": "shape:perf:09828", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 6272, - "rot": 0, - "props": { - "w": 42, - "h": 25, - "fill": "hsl(95 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09829": { - "id": "shape:perf:09829", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 6272, - "rot": 0, - "props": { - "w": 40, - "h": 34, - "fill": "hsl(127 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09830": { - "id": "shape:perf:09830", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 6272, - "rot": 0, - "props": { - "w": 44, - "h": 30, - "fill": "hsl(111 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09831": { - "id": "shape:perf:09831", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 6272, - "rot": 0, - "props": { - "w": 40, - "h": 33, - "fill": "hsl(174 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09832": { - "id": "shape:perf:09832", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 6272, - "rot": 0, - "props": { - "w": 38, - "h": 26, - "fill": "hsl(185 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09833": { - "id": "shape:perf:09833", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 6272, - "rot": 0, - "props": { - "w": 29, - "h": 40, - "fill": "hsl(338 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09834": { - "id": "shape:perf:09834", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 6272, - "rot": 0, - "props": { - "w": 36, - "h": 41, - "fill": "hsl(312 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09835": { - "id": "shape:perf:09835", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 6272, - "rot": 0, - "props": { - "w": 46, - "h": 39, - "fill": "hsl(4 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09836": { - "id": "shape:perf:09836", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 6272, - "rot": 0, - "props": { - "w": 30, - "h": 29, - "fill": "hsl(89 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09837": { - "id": "shape:perf:09837", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 6272, - "rot": 0, - "props": { - "w": 38, - "h": 28, - "fill": "hsl(105 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09838": { - "id": "shape:perf:09838", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 6272, - "rot": 0, - "props": { - "w": 40, - "h": 33, - "fill": "hsl(73 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09839": { - "id": "shape:perf:09839", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 6272, - "rot": 0, - "props": { - "w": 40, - "h": 24, - "fill": "hsl(58 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09840": { - "id": "shape:perf:09840", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 6272, - "rot": 0, - "props": { - "w": 24, - "h": 39, - "fill": "hsl(321 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09841": { - "id": "shape:perf:09841", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 6272, - "rot": 0, - "props": { - "w": 45, - "h": 41, - "fill": "hsl(278 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09842": { - "id": "shape:perf:09842", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 6272, - "rot": 0, - "props": { - "w": 27, - "h": 33, - "fill": "hsl(268 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09843": { - "id": "shape:perf:09843", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 6272, - "rot": 0, - "props": { - "w": 24, - "h": 43, - "fill": "hsl(288 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09844": { - "id": "shape:perf:09844", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 6272, - "rot": 0, - "props": { - "w": 25, - "h": 47, - "fill": "hsl(327 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09845": { - "id": "shape:perf:09845", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 6272, - "rot": 0, - "props": { - "w": 39, - "h": 32, - "fill": "hsl(200 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09846": { - "id": "shape:perf:09846", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 6272, - "rot": 0, - "props": { - "w": 28, - "h": 39, - "fill": "hsl(252 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09847": { - "id": "shape:perf:09847", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 6272, - "rot": 0, - "props": { - "w": 38, - "h": 29, - "fill": "hsl(306 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09848": { - "id": "shape:perf:09848", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 6272, - "rot": 0, - "props": { - "w": 39, - "h": 44, - "fill": "hsl(38 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09849": { - "id": "shape:perf:09849", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 6272, - "rot": 0, - "props": { - "w": 29, - "h": 37, - "fill": "hsl(159 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09850": { - "id": "shape:perf:09850", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 6272, - "rot": 0, - "props": { - "w": 31, - "h": 47, - "fill": "hsl(125 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09851": { - "id": "shape:perf:09851", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 6272, - "rot": 0, - "props": { - "w": 39, - "h": 37, - "fill": "hsl(191 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09852": { - "id": "shape:perf:09852", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 6272, - "rot": 0, - "props": { - "w": 24, - "h": 44, - "fill": "hsl(354 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09853": { - "id": "shape:perf:09853", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 6272, - "rot": 0, - "props": { - "w": 33, - "h": 47, - "fill": "hsl(213 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09854": { - "id": "shape:perf:09854", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 6272, - "rot": 0, - "props": { - "w": 28, - "h": 41, - "fill": "hsl(291 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09855": { - "id": "shape:perf:09855", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 6272, - "rot": 0, - "props": { - "w": 37, - "h": 47, - "fill": "hsl(190 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09856": { - "id": "shape:perf:09856", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 6272, - "rot": 0, - "props": { - "w": 42, - "h": 41, - "fill": "hsl(143 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09857": { - "id": "shape:perf:09857", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 6272, - "rot": 0, - "props": { - "w": 24, - "h": 36, - "fill": "hsl(249 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09858": { - "id": "shape:perf:09858", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 6272, - "rot": 0, - "props": { - "w": 46, - "h": 30, - "fill": "hsl(301 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09859": { - "id": "shape:perf:09859", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 6272, - "rot": 0, - "props": { - "w": 35, - "h": 43, - "fill": "hsl(65 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09860": { - "id": "shape:perf:09860", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 6272, - "rot": 0, - "props": { - "w": 27, - "h": 44, - "fill": "hsl(74 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09861": { - "id": "shape:perf:09861", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 6272, - "rot": 0, - "props": { - "w": 43, - "h": 24, - "fill": "hsl(136 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09862": { - "id": "shape:perf:09862", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 6272, - "rot": 0, - "props": { - "w": 25, - "h": 29, - "fill": "hsl(116 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09863": { - "id": "shape:perf:09863", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 6272, - "rot": 0, - "props": { - "w": 30, - "h": 37, - "fill": "hsl(66 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09864": { - "id": "shape:perf:09864", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 6272, - "rot": 0, - "props": { - "w": 37, - "h": 26, - "fill": "hsl(258 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09865": { - "id": "shape:perf:09865", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 6272, - "rot": 0, - "props": { - "w": 25, - "h": 34, - "fill": "hsl(336 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09866": { - "id": "shape:perf:09866", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 6272, - "rot": 0, - "props": { - "w": 38, - "h": 27, - "fill": "hsl(193 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09867": { - "id": "shape:perf:09867", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 6272, - "rot": 0, - "props": { - "w": 29, - "h": 44, - "fill": "hsl(161 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09868": { - "id": "shape:perf:09868", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 6272, - "rot": 0, - "props": { - "w": 31, - "h": 44, - "fill": "hsl(24 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09869": { - "id": "shape:perf:09869", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 6272, - "rot": 0, - "props": { - "w": 44, - "h": 28, - "fill": "hsl(207 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09870": { - "id": "shape:perf:09870", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 6272, - "rot": 0, - "props": { - "w": 36, - "h": 41, - "fill": "hsl(108 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09871": { - "id": "shape:perf:09871", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 6272, - "rot": 0, - "props": { - "w": 35, - "h": 45, - "fill": "hsl(6 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09872": { - "id": "shape:perf:09872", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 6272, - "rot": 0, - "props": { - "w": 47, - "h": 46, - "fill": "hsl(317 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09873": { - "id": "shape:perf:09873", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 6272, - "rot": 0, - "props": { - "w": 44, - "h": 31, - "fill": "hsl(323 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09874": { - "id": "shape:perf:09874", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 6272, - "rot": 0, - "props": { - "w": 28, - "h": 37, - "fill": "hsl(218 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09875": { - "id": "shape:perf:09875", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 6272, - "rot": 0, - "props": { - "w": 38, - "h": 33, - "fill": "hsl(92 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09876": { - "id": "shape:perf:09876", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 6272, - "rot": 0, - "props": { - "w": 37, - "h": 33, - "fill": "hsl(304 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09877": { - "id": "shape:perf:09877", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 6272, - "rot": 0, - "props": { - "w": 44, - "h": 37, - "fill": "hsl(73 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09878": { - "id": "shape:perf:09878", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 6272, - "rot": 0, - "props": { - "w": 39, - "h": 24, - "fill": "hsl(142 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09879": { - "id": "shape:perf:09879", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 6272, - "rot": 0, - "props": { - "w": 47, - "h": 25, - "fill": "hsl(256 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09880": { - "id": "shape:perf:09880", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 6272, - "rot": 0, - "props": { - "w": 47, - "h": 33, - "fill": "hsl(1 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09881": { - "id": "shape:perf:09881", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 6272, - "rot": 0, - "props": { - "w": 42, - "h": 35, - "fill": "hsl(310 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09882": { - "id": "shape:perf:09882", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 6272, - "rot": 0, - "props": { - "w": 44, - "h": 36, - "fill": "hsl(179 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09883": { - "id": "shape:perf:09883", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 6272, - "rot": 0, - "props": { - "w": 44, - "h": 26, - "fill": "hsl(107 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09884": { - "id": "shape:perf:09884", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 6272, - "rot": 0, - "props": { - "w": 30, - "h": 26, - "fill": "hsl(346 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09885": { - "id": "shape:perf:09885", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 6272, - "rot": 0, - "props": { - "w": 34, - "h": 47, - "fill": "hsl(325 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09886": { - "id": "shape:perf:09886", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 6272, - "rot": 0, - "props": { - "w": 28, - "h": 28, - "fill": "hsl(345 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09887": { - "id": "shape:perf:09887", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 6272, - "rot": 0, - "props": { - "w": 31, - "h": 47, - "fill": "hsl(278 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09888": { - "id": "shape:perf:09888", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 6272, - "rot": 0, - "props": { - "w": 25, - "h": 46, - "fill": "hsl(96 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09889": { - "id": "shape:perf:09889", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 6272, - "rot": 0, - "props": { - "w": 40, - "h": 36, - "fill": "hsl(160 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09890": { - "id": "shape:perf:09890", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 6272, - "rot": 0, - "props": { - "w": 26, - "h": 26, - "fill": "hsl(85 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09891": { - "id": "shape:perf:09891", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 6272, - "rot": 0, - "props": { - "w": 43, - "h": 46, - "fill": "hsl(232 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09892": { - "id": "shape:perf:09892", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 6272, - "rot": 0, - "props": { - "w": 27, - "h": 37, - "fill": "hsl(239 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09893": { - "id": "shape:perf:09893", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 6272, - "rot": 0, - "props": { - "w": 47, - "h": 28, - "fill": "hsl(271 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09894": { - "id": "shape:perf:09894", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 6272, - "rot": 0, - "props": { - "w": 28, - "h": 29, - "fill": "hsl(359 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09895": { - "id": "shape:perf:09895", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 6272, - "rot": 0, - "props": { - "w": 41, - "h": 37, - "fill": "hsl(333 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09896": { - "id": "shape:perf:09896", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 6272, - "rot": 0, - "props": { - "w": 35, - "h": 39, - "fill": "hsl(1 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09897": { - "id": "shape:perf:09897", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 6272, - "rot": 0, - "props": { - "w": 26, - "h": 33, - "fill": "hsl(340 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09898": { - "id": "shape:perf:09898", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 6272, - "rot": 0, - "props": { - "w": 36, - "h": 36, - "fill": "hsl(187 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09899": { - "id": "shape:perf:09899", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 6272, - "rot": 0, - "props": { - "w": 47, - "h": 39, - "fill": "hsl(158 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09900": { - "id": "shape:perf:09900", - "type": "rect", - "pageId": "page:10000", - "x": 0, - "y": 6336, - "rot": 0, - "props": { - "w": 25, - "h": 26, - "fill": "hsl(358 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09901": { - "id": "shape:perf:09901", - "type": "rect", - "pageId": "page:10000", - "x": 64, - "y": 6336, - "rot": 0, - "props": { - "w": 35, - "h": 45, - "fill": "hsl(237 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09902": { - "id": "shape:perf:09902", - "type": "rect", - "pageId": "page:10000", - "x": 128, - "y": 6336, - "rot": 0, - "props": { - "w": 46, - "h": 47, - "fill": "hsl(325 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09903": { - "id": "shape:perf:09903", - "type": "rect", - "pageId": "page:10000", - "x": 192, - "y": 6336, - "rot": 0, - "props": { - "w": 28, - "h": 28, - "fill": "hsl(204 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09904": { - "id": "shape:perf:09904", - "type": "rect", - "pageId": "page:10000", - "x": 256, - "y": 6336, - "rot": 0, - "props": { - "w": 46, - "h": 40, - "fill": "hsl(28 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09905": { - "id": "shape:perf:09905", - "type": "rect", - "pageId": "page:10000", - "x": 320, - "y": 6336, - "rot": 0, - "props": { - "w": 28, - "h": 46, - "fill": "hsl(92 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09906": { - "id": "shape:perf:09906", - "type": "rect", - "pageId": "page:10000", - "x": 384, - "y": 6336, - "rot": 0, - "props": { - "w": 35, - "h": 29, - "fill": "hsl(219 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09907": { - "id": "shape:perf:09907", - "type": "rect", - "pageId": "page:10000", - "x": 448, - "y": 6336, - "rot": 0, - "props": { - "w": 27, - "h": 40, - "fill": "hsl(224 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09908": { - "id": "shape:perf:09908", - "type": "rect", - "pageId": "page:10000", - "x": 512, - "y": 6336, - "rot": 0, - "props": { - "w": 42, - "h": 40, - "fill": "hsl(35 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09909": { - "id": "shape:perf:09909", - "type": "rect", - "pageId": "page:10000", - "x": 576, - "y": 6336, - "rot": 0, - "props": { - "w": 34, - "h": 42, - "fill": "hsl(103 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09910": { - "id": "shape:perf:09910", - "type": "rect", - "pageId": "page:10000", - "x": 640, - "y": 6336, - "rot": 0, - "props": { - "w": 29, - "h": 24, - "fill": "hsl(7 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09911": { - "id": "shape:perf:09911", - "type": "rect", - "pageId": "page:10000", - "x": 704, - "y": 6336, - "rot": 0, - "props": { - "w": 34, - "h": 30, - "fill": "hsl(104 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09912": { - "id": "shape:perf:09912", - "type": "rect", - "pageId": "page:10000", - "x": 768, - "y": 6336, - "rot": 0, - "props": { - "w": 41, - "h": 32, - "fill": "hsl(212 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09913": { - "id": "shape:perf:09913", - "type": "rect", - "pageId": "page:10000", - "x": 832, - "y": 6336, - "rot": 0, - "props": { - "w": 45, - "h": 34, - "fill": "hsl(125 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09914": { - "id": "shape:perf:09914", - "type": "rect", - "pageId": "page:10000", - "x": 896, - "y": 6336, - "rot": 0, - "props": { - "w": 33, - "h": 29, - "fill": "hsl(20 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09915": { - "id": "shape:perf:09915", - "type": "rect", - "pageId": "page:10000", - "x": 960, - "y": 6336, - "rot": 0, - "props": { - "w": 44, - "h": 27, - "fill": "hsl(268 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09916": { - "id": "shape:perf:09916", - "type": "rect", - "pageId": "page:10000", - "x": 1024, - "y": 6336, - "rot": 0, - "props": { - "w": 26, - "h": 37, - "fill": "hsl(292 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09917": { - "id": "shape:perf:09917", - "type": "rect", - "pageId": "page:10000", - "x": 1088, - "y": 6336, - "rot": 0, - "props": { - "w": 41, - "h": 43, - "fill": "hsl(205 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09918": { - "id": "shape:perf:09918", - "type": "rect", - "pageId": "page:10000", - "x": 1152, - "y": 6336, - "rot": 0, - "props": { - "w": 25, - "h": 42, - "fill": "hsl(7 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09919": { - "id": "shape:perf:09919", - "type": "rect", - "pageId": "page:10000", - "x": 1216, - "y": 6336, - "rot": 0, - "props": { - "w": 44, - "h": 39, - "fill": "hsl(168 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09920": { - "id": "shape:perf:09920", - "type": "rect", - "pageId": "page:10000", - "x": 1280, - "y": 6336, - "rot": 0, - "props": { - "w": 47, - "h": 46, - "fill": "hsl(318 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09921": { - "id": "shape:perf:09921", - "type": "rect", - "pageId": "page:10000", - "x": 1344, - "y": 6336, - "rot": 0, - "props": { - "w": 26, - "h": 45, - "fill": "hsl(107 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09922": { - "id": "shape:perf:09922", - "type": "rect", - "pageId": "page:10000", - "x": 1408, - "y": 6336, - "rot": 0, - "props": { - "w": 29, - "h": 30, - "fill": "hsl(82 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09923": { - "id": "shape:perf:09923", - "type": "rect", - "pageId": "page:10000", - "x": 1472, - "y": 6336, - "rot": 0, - "props": { - "w": 28, - "h": 34, - "fill": "hsl(296 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09924": { - "id": "shape:perf:09924", - "type": "rect", - "pageId": "page:10000", - "x": 1536, - "y": 6336, - "rot": 0, - "props": { - "w": 36, - "h": 39, - "fill": "hsl(218 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09925": { - "id": "shape:perf:09925", - "type": "rect", - "pageId": "page:10000", - "x": 1600, - "y": 6336, - "rot": 0, - "props": { - "w": 36, - "h": 26, - "fill": "hsl(281 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09926": { - "id": "shape:perf:09926", - "type": "rect", - "pageId": "page:10000", - "x": 1664, - "y": 6336, - "rot": 0, - "props": { - "w": 30, - "h": 29, - "fill": "hsl(30 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09927": { - "id": "shape:perf:09927", - "type": "rect", - "pageId": "page:10000", - "x": 1728, - "y": 6336, - "rot": 0, - "props": { - "w": 25, - "h": 34, - "fill": "hsl(325 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09928": { - "id": "shape:perf:09928", - "type": "rect", - "pageId": "page:10000", - "x": 1792, - "y": 6336, - "rot": 0, - "props": { - "w": 31, - "h": 42, - "fill": "hsl(319 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09929": { - "id": "shape:perf:09929", - "type": "rect", - "pageId": "page:10000", - "x": 1856, - "y": 6336, - "rot": 0, - "props": { - "w": 46, - "h": 28, - "fill": "hsl(319 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09930": { - "id": "shape:perf:09930", - "type": "rect", - "pageId": "page:10000", - "x": 1920, - "y": 6336, - "rot": 0, - "props": { - "w": 29, - "h": 29, - "fill": "hsl(235 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09931": { - "id": "shape:perf:09931", - "type": "rect", - "pageId": "page:10000", - "x": 1984, - "y": 6336, - "rot": 0, - "props": { - "w": 31, - "h": 45, - "fill": "hsl(99 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09932": { - "id": "shape:perf:09932", - "type": "rect", - "pageId": "page:10000", - "x": 2048, - "y": 6336, - "rot": 0, - "props": { - "w": 43, - "h": 28, - "fill": "hsl(288 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09933": { - "id": "shape:perf:09933", - "type": "rect", - "pageId": "page:10000", - "x": 2112, - "y": 6336, - "rot": 0, - "props": { - "w": 30, - "h": 43, - "fill": "hsl(58 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09934": { - "id": "shape:perf:09934", - "type": "rect", - "pageId": "page:10000", - "x": 2176, - "y": 6336, - "rot": 0, - "props": { - "w": 24, - "h": 39, - "fill": "hsl(325 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09935": { - "id": "shape:perf:09935", - "type": "rect", - "pageId": "page:10000", - "x": 2240, - "y": 6336, - "rot": 0, - "props": { - "w": 40, - "h": 29, - "fill": "hsl(194 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09936": { - "id": "shape:perf:09936", - "type": "rect", - "pageId": "page:10000", - "x": 2304, - "y": 6336, - "rot": 0, - "props": { - "w": 46, - "h": 30, - "fill": "hsl(264 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09937": { - "id": "shape:perf:09937", - "type": "rect", - "pageId": "page:10000", - "x": 2368, - "y": 6336, - "rot": 0, - "props": { - "w": 46, - "h": 47, - "fill": "hsl(277 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09938": { - "id": "shape:perf:09938", - "type": "rect", - "pageId": "page:10000", - "x": 2432, - "y": 6336, - "rot": 0, - "props": { - "w": 46, - "h": 33, - "fill": "hsl(60 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09939": { - "id": "shape:perf:09939", - "type": "rect", - "pageId": "page:10000", - "x": 2496, - "y": 6336, - "rot": 0, - "props": { - "w": 34, - "h": 45, - "fill": "hsl(328 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09940": { - "id": "shape:perf:09940", - "type": "rect", - "pageId": "page:10000", - "x": 2560, - "y": 6336, - "rot": 0, - "props": { - "w": 33, - "h": 27, - "fill": "hsl(42 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09941": { - "id": "shape:perf:09941", - "type": "rect", - "pageId": "page:10000", - "x": 2624, - "y": 6336, - "rot": 0, - "props": { - "w": 46, - "h": 38, - "fill": "hsl(42 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09942": { - "id": "shape:perf:09942", - "type": "rect", - "pageId": "page:10000", - "x": 2688, - "y": 6336, - "rot": 0, - "props": { - "w": 25, - "h": 47, - "fill": "hsl(176 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09943": { - "id": "shape:perf:09943", - "type": "rect", - "pageId": "page:10000", - "x": 2752, - "y": 6336, - "rot": 0, - "props": { - "w": 24, - "h": 39, - "fill": "hsl(79 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09944": { - "id": "shape:perf:09944", - "type": "rect", - "pageId": "page:10000", - "x": 2816, - "y": 6336, - "rot": 0, - "props": { - "w": 41, - "h": 25, - "fill": "hsl(261 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09945": { - "id": "shape:perf:09945", - "type": "rect", - "pageId": "page:10000", - "x": 2880, - "y": 6336, - "rot": 0, - "props": { - "w": 37, - "h": 36, - "fill": "hsl(71 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09946": { - "id": "shape:perf:09946", - "type": "rect", - "pageId": "page:10000", - "x": 2944, - "y": 6336, - "rot": 0, - "props": { - "w": 45, - "h": 27, - "fill": "hsl(322 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09947": { - "id": "shape:perf:09947", - "type": "rect", - "pageId": "page:10000", - "x": 3008, - "y": 6336, - "rot": 0, - "props": { - "w": 31, - "h": 30, - "fill": "hsl(353 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09948": { - "id": "shape:perf:09948", - "type": "rect", - "pageId": "page:10000", - "x": 3072, - "y": 6336, - "rot": 0, - "props": { - "w": 37, - "h": 26, - "fill": "hsl(193 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09949": { - "id": "shape:perf:09949", - "type": "rect", - "pageId": "page:10000", - "x": 3136, - "y": 6336, - "rot": 0, - "props": { - "w": 24, - "h": 29, - "fill": "hsl(349 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09950": { - "id": "shape:perf:09950", - "type": "rect", - "pageId": "page:10000", - "x": 3200, - "y": 6336, - "rot": 0, - "props": { - "w": 41, - "h": 46, - "fill": "hsl(286 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09951": { - "id": "shape:perf:09951", - "type": "rect", - "pageId": "page:10000", - "x": 3264, - "y": 6336, - "rot": 0, - "props": { - "w": 24, - "h": 44, - "fill": "hsl(191 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09952": { - "id": "shape:perf:09952", - "type": "rect", - "pageId": "page:10000", - "x": 3328, - "y": 6336, - "rot": 0, - "props": { - "w": 24, - "h": 29, - "fill": "hsl(214 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09953": { - "id": "shape:perf:09953", - "type": "rect", - "pageId": "page:10000", - "x": 3392, - "y": 6336, - "rot": 0, - "props": { - "w": 38, - "h": 28, - "fill": "hsl(108 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09954": { - "id": "shape:perf:09954", - "type": "rect", - "pageId": "page:10000", - "x": 3456, - "y": 6336, - "rot": 0, - "props": { - "w": 25, - "h": 29, - "fill": "hsl(4 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09955": { - "id": "shape:perf:09955", - "type": "rect", - "pageId": "page:10000", - "x": 3520, - "y": 6336, - "rot": 0, - "props": { - "w": 35, - "h": 47, - "fill": "hsl(105 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09956": { - "id": "shape:perf:09956", - "type": "rect", - "pageId": "page:10000", - "x": 3584, - "y": 6336, - "rot": 0, - "props": { - "w": 33, - "h": 42, - "fill": "hsl(166 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09957": { - "id": "shape:perf:09957", - "type": "rect", - "pageId": "page:10000", - "x": 3648, - "y": 6336, - "rot": 0, - "props": { - "w": 42, - "h": 35, - "fill": "hsl(100 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09958": { - "id": "shape:perf:09958", - "type": "rect", - "pageId": "page:10000", - "x": 3712, - "y": 6336, - "rot": 0, - "props": { - "w": 25, - "h": 34, - "fill": "hsl(55 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09959": { - "id": "shape:perf:09959", - "type": "rect", - "pageId": "page:10000", - "x": 3776, - "y": 6336, - "rot": 0, - "props": { - "w": 25, - "h": 28, - "fill": "hsl(252 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09960": { - "id": "shape:perf:09960", - "type": "rect", - "pageId": "page:10000", - "x": 3840, - "y": 6336, - "rot": 0, - "props": { - "w": 30, - "h": 37, - "fill": "hsl(28 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09961": { - "id": "shape:perf:09961", - "type": "rect", - "pageId": "page:10000", - "x": 3904, - "y": 6336, - "rot": 0, - "props": { - "w": 37, - "h": 40, - "fill": "hsl(339 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09962": { - "id": "shape:perf:09962", - "type": "rect", - "pageId": "page:10000", - "x": 3968, - "y": 6336, - "rot": 0, - "props": { - "w": 26, - "h": 35, - "fill": "hsl(123 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09963": { - "id": "shape:perf:09963", - "type": "rect", - "pageId": "page:10000", - "x": 4032, - "y": 6336, - "rot": 0, - "props": { - "w": 45, - "h": 28, - "fill": "hsl(138 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09964": { - "id": "shape:perf:09964", - "type": "rect", - "pageId": "page:10000", - "x": 4096, - "y": 6336, - "rot": 0, - "props": { - "w": 40, - "h": 24, - "fill": "hsl(76 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09965": { - "id": "shape:perf:09965", - "type": "rect", - "pageId": "page:10000", - "x": 4160, - "y": 6336, - "rot": 0, - "props": { - "w": 36, - "h": 36, - "fill": "hsl(258 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09966": { - "id": "shape:perf:09966", - "type": "rect", - "pageId": "page:10000", - "x": 4224, - "y": 6336, - "rot": 0, - "props": { - "w": 27, - "h": 43, - "fill": "hsl(186 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09967": { - "id": "shape:perf:09967", - "type": "rect", - "pageId": "page:10000", - "x": 4288, - "y": 6336, - "rot": 0, - "props": { - "w": 27, - "h": 47, - "fill": "hsl(199 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09968": { - "id": "shape:perf:09968", - "type": "rect", - "pageId": "page:10000", - "x": 4352, - "y": 6336, - "rot": 0, - "props": { - "w": 38, - "h": 40, - "fill": "hsl(287 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09969": { - "id": "shape:perf:09969", - "type": "rect", - "pageId": "page:10000", - "x": 4416, - "y": 6336, - "rot": 0, - "props": { - "w": 30, - "h": 38, - "fill": "hsl(45 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09970": { - "id": "shape:perf:09970", - "type": "rect", - "pageId": "page:10000", - "x": 4480, - "y": 6336, - "rot": 0, - "props": { - "w": 38, - "h": 35, - "fill": "hsl(279 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09971": { - "id": "shape:perf:09971", - "type": "rect", - "pageId": "page:10000", - "x": 4544, - "y": 6336, - "rot": 0, - "props": { - "w": 27, - "h": 35, - "fill": "hsl(278 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09972": { - "id": "shape:perf:09972", - "type": "rect", - "pageId": "page:10000", - "x": 4608, - "y": 6336, - "rot": 0, - "props": { - "w": 34, - "h": 32, - "fill": "hsl(290 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09973": { - "id": "shape:perf:09973", - "type": "rect", - "pageId": "page:10000", - "x": 4672, - "y": 6336, - "rot": 0, - "props": { - "w": 46, - "h": 33, - "fill": "hsl(189 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09974": { - "id": "shape:perf:09974", - "type": "rect", - "pageId": "page:10000", - "x": 4736, - "y": 6336, - "rot": 0, - "props": { - "w": 46, - "h": 34, - "fill": "hsl(193 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09975": { - "id": "shape:perf:09975", - "type": "rect", - "pageId": "page:10000", - "x": 4800, - "y": 6336, - "rot": 0, - "props": { - "w": 40, - "h": 43, - "fill": "hsl(190 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09976": { - "id": "shape:perf:09976", - "type": "rect", - "pageId": "page:10000", - "x": 4864, - "y": 6336, - "rot": 0, - "props": { - "w": 46, - "h": 44, - "fill": "hsl(173 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09977": { - "id": "shape:perf:09977", - "type": "rect", - "pageId": "page:10000", - "x": 4928, - "y": 6336, - "rot": 0, - "props": { - "w": 36, - "h": 25, - "fill": "hsl(351 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09978": { - "id": "shape:perf:09978", - "type": "rect", - "pageId": "page:10000", - "x": 4992, - "y": 6336, - "rot": 0, - "props": { - "w": 41, - "h": 28, - "fill": "hsl(168 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09979": { - "id": "shape:perf:09979", - "type": "rect", - "pageId": "page:10000", - "x": 5056, - "y": 6336, - "rot": 0, - "props": { - "w": 34, - "h": 37, - "fill": "hsl(92 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09980": { - "id": "shape:perf:09980", - "type": "rect", - "pageId": "page:10000", - "x": 5120, - "y": 6336, - "rot": 0, - "props": { - "w": 33, - "h": 31, - "fill": "hsl(29 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09981": { - "id": "shape:perf:09981", - "type": "rect", - "pageId": "page:10000", - "x": 5184, - "y": 6336, - "rot": 0, - "props": { - "w": 37, - "h": 27, - "fill": "hsl(180 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09982": { - "id": "shape:perf:09982", - "type": "rect", - "pageId": "page:10000", - "x": 5248, - "y": 6336, - "rot": 0, - "props": { - "w": 34, - "h": 46, - "fill": "hsl(150 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09983": { - "id": "shape:perf:09983", - "type": "rect", - "pageId": "page:10000", - "x": 5312, - "y": 6336, - "rot": 0, - "props": { - "w": 42, - "h": 24, - "fill": "hsl(279 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09984": { - "id": "shape:perf:09984", - "type": "rect", - "pageId": "page:10000", - "x": 5376, - "y": 6336, - "rot": 0, - "props": { - "w": 31, - "h": 44, - "fill": "hsl(165 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09985": { - "id": "shape:perf:09985", - "type": "rect", - "pageId": "page:10000", - "x": 5440, - "y": 6336, - "rot": 0, - "props": { - "w": 42, - "h": 39, - "fill": "hsl(99 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09986": { - "id": "shape:perf:09986", - "type": "rect", - "pageId": "page:10000", - "x": 5504, - "y": 6336, - "rot": 0, - "props": { - "w": 31, - "h": 41, - "fill": "hsl(312 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09987": { - "id": "shape:perf:09987", - "type": "rect", - "pageId": "page:10000", - "x": 5568, - "y": 6336, - "rot": 0, - "props": { - "w": 41, - "h": 31, - "fill": "hsl(98 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09988": { - "id": "shape:perf:09988", - "type": "rect", - "pageId": "page:10000", - "x": 5632, - "y": 6336, - "rot": 0, - "props": { - "w": 29, - "h": 47, - "fill": "hsl(37 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09989": { - "id": "shape:perf:09989", - "type": "rect", - "pageId": "page:10000", - "x": 5696, - "y": 6336, - "rot": 0, - "props": { - "w": 24, - "h": 39, - "fill": "hsl(210 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09990": { - "id": "shape:perf:09990", - "type": "rect", - "pageId": "page:10000", - "x": 5760, - "y": 6336, - "rot": 0, - "props": { - "w": 46, - "h": 27, - "fill": "hsl(217 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09991": { - "id": "shape:perf:09991", - "type": "rect", - "pageId": "page:10000", - "x": 5824, - "y": 6336, - "rot": 0, - "props": { - "w": 28, - "h": 41, - "fill": "hsl(103 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09992": { - "id": "shape:perf:09992", - "type": "rect", - "pageId": "page:10000", - "x": 5888, - "y": 6336, - "rot": 0, - "props": { - "w": 36, - "h": 25, - "fill": "hsl(178 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09993": { - "id": "shape:perf:09993", - "type": "rect", - "pageId": "page:10000", - "x": 5952, - "y": 6336, - "rot": 0, - "props": { - "w": 42, - "h": 27, - "fill": "hsl(200 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09994": { - "id": "shape:perf:09994", - "type": "rect", - "pageId": "page:10000", - "x": 6016, - "y": 6336, - "rot": 0, - "props": { - "w": 26, - "h": 33, - "fill": "hsl(210 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - }, - "shape:perf:09995": { - "id": "shape:perf:09995", - "type": "rect", - "pageId": "page:10000", - "x": 6080, - "y": 6336, - "rot": 0, - "props": { - "w": 45, - "h": 42, - "fill": "hsl(119 70% 80%)", - "stroke": "#334155", - "radius": 0 - } - }, - "shape:perf:09996": { - "id": "shape:perf:09996", - "type": "rect", - "pageId": "page:10000", - "x": 6144, - "y": 6336, - "rot": 0, - "props": { - "w": 40, - "h": 33, - "fill": "hsl(324 70% 80%)", - "stroke": "#334155", - "radius": 1 - } - }, - "shape:perf:09997": { - "id": "shape:perf:09997", - "type": "rect", - "pageId": "page:10000", - "x": 6208, - "y": 6336, - "rot": 0, - "props": { - "w": 44, - "h": 38, - "fill": "hsl(353 70% 80%)", - "stroke": "#334155", - "radius": 2 - } - }, - "shape:perf:09998": { - "id": "shape:perf:09998", - "type": "rect", - "pageId": "page:10000", - "x": 6272, - "y": 6336, - "rot": 0, - "props": { - "w": 43, - "h": 29, - "fill": "hsl(105 70% 80%)", - "stroke": "#334155", - "radius": 3 - } - }, - "shape:perf:09999": { - "id": "shape:perf:09999", - "type": "rect", - "pageId": "page:10000", - "x": 6336, - "y": 6336, - "rot": 0, - "props": { - "w": 46, - "h": 43, - "fill": "hsl(40 70% 80%)", - "stroke": "#334155", - "radius": 4 - } - } - }, - "bindings": {} - }, - "order": { - "pageIds": [ - "page:10000" - ], - "shapeOrder": { - "page:10000": [ - "shape:perf:00000", - "shape:perf:00001", - "shape:perf:00002", - "shape:perf:00003", - "shape:perf:00004", - "shape:perf:00005", - "shape:perf:00006", - "shape:perf:00007", - "shape:perf:00008", - "shape:perf:00009", - "shape:perf:00010", - "shape:perf:00011", - "shape:perf:00012", - "shape:perf:00013", - "shape:perf:00014", - "shape:perf:00015", - "shape:perf:00016", - "shape:perf:00017", - "shape:perf:00018", - "shape:perf:00019", - "shape:perf:00020", - "shape:perf:00021", - "shape:perf:00022", - "shape:perf:00023", - "shape:perf:00024", - "shape:perf:00025", - "shape:perf:00026", - "shape:perf:00027", - "shape:perf:00028", - "shape:perf:00029", - "shape:perf:00030", - "shape:perf:00031", - "shape:perf:00032", - "shape:perf:00033", - "shape:perf:00034", - "shape:perf:00035", - "shape:perf:00036", - "shape:perf:00037", - "shape:perf:00038", - "shape:perf:00039", - "shape:perf:00040", - "shape:perf:00041", - "shape:perf:00042", - "shape:perf:00043", - "shape:perf:00044", - "shape:perf:00045", - "shape:perf:00046", - "shape:perf:00047", - "shape:perf:00048", - "shape:perf:00049", - "shape:perf:00050", - "shape:perf:00051", - "shape:perf:00052", - "shape:perf:00053", - "shape:perf:00054", - "shape:perf:00055", - "shape:perf:00056", - "shape:perf:00057", - "shape:perf:00058", - "shape:perf:00059", - "shape:perf:00060", - "shape:perf:00061", - "shape:perf:00062", - "shape:perf:00063", - "shape:perf:00064", - "shape:perf:00065", - "shape:perf:00066", - "shape:perf:00067", - "shape:perf:00068", - "shape:perf:00069", - "shape:perf:00070", - "shape:perf:00071", - "shape:perf:00072", - "shape:perf:00073", - "shape:perf:00074", - "shape:perf:00075", - "shape:perf:00076", - "shape:perf:00077", - "shape:perf:00078", - "shape:perf:00079", - "shape:perf:00080", - "shape:perf:00081", - "shape:perf:00082", - "shape:perf:00083", - "shape:perf:00084", - "shape:perf:00085", - "shape:perf:00086", - "shape:perf:00087", - "shape:perf:00088", - "shape:perf:00089", - "shape:perf:00090", - "shape:perf:00091", - "shape:perf:00092", - "shape:perf:00093", - "shape:perf:00094", - "shape:perf:00095", - "shape:perf:00096", - "shape:perf:00097", - "shape:perf:00098", - "shape:perf:00099", - "shape:perf:00100", - "shape:perf:00101", - "shape:perf:00102", - "shape:perf:00103", - "shape:perf:00104", - "shape:perf:00105", - "shape:perf:00106", - "shape:perf:00107", - "shape:perf:00108", - "shape:perf:00109", - "shape:perf:00110", - "shape:perf:00111", - "shape:perf:00112", - "shape:perf:00113", - "shape:perf:00114", - "shape:perf:00115", - "shape:perf:00116", - "shape:perf:00117", - "shape:perf:00118", - "shape:perf:00119", - "shape:perf:00120", - "shape:perf:00121", - "shape:perf:00122", - "shape:perf:00123", - "shape:perf:00124", - "shape:perf:00125", - "shape:perf:00126", - "shape:perf:00127", - "shape:perf:00128", - "shape:perf:00129", - "shape:perf:00130", - "shape:perf:00131", - "shape:perf:00132", - "shape:perf:00133", - "shape:perf:00134", - "shape:perf:00135", - "shape:perf:00136", - "shape:perf:00137", - "shape:perf:00138", - "shape:perf:00139", - "shape:perf:00140", - "shape:perf:00141", - "shape:perf:00142", - "shape:perf:00143", - "shape:perf:00144", - "shape:perf:00145", - "shape:perf:00146", - "shape:perf:00147", - "shape:perf:00148", - "shape:perf:00149", - "shape:perf:00150", - "shape:perf:00151", - "shape:perf:00152", - "shape:perf:00153", - "shape:perf:00154", - "shape:perf:00155", - "shape:perf:00156", - "shape:perf:00157", - "shape:perf:00158", - "shape:perf:00159", - "shape:perf:00160", - "shape:perf:00161", - "shape:perf:00162", - "shape:perf:00163", - "shape:perf:00164", - "shape:perf:00165", - "shape:perf:00166", - "shape:perf:00167", - "shape:perf:00168", - "shape:perf:00169", - "shape:perf:00170", - "shape:perf:00171", - "shape:perf:00172", - "shape:perf:00173", - "shape:perf:00174", - "shape:perf:00175", - "shape:perf:00176", - "shape:perf:00177", - "shape:perf:00178", - "shape:perf:00179", - "shape:perf:00180", - "shape:perf:00181", - "shape:perf:00182", - "shape:perf:00183", - "shape:perf:00184", - "shape:perf:00185", - "shape:perf:00186", - "shape:perf:00187", - "shape:perf:00188", - "shape:perf:00189", - "shape:perf:00190", - "shape:perf:00191", - "shape:perf:00192", - "shape:perf:00193", - "shape:perf:00194", - "shape:perf:00195", - "shape:perf:00196", - "shape:perf:00197", - "shape:perf:00198", - "shape:perf:00199", - "shape:perf:00200", - "shape:perf:00201", - "shape:perf:00202", - "shape:perf:00203", - "shape:perf:00204", - "shape:perf:00205", - "shape:perf:00206", - "shape:perf:00207", - "shape:perf:00208", - "shape:perf:00209", - "shape:perf:00210", - "shape:perf:00211", - "shape:perf:00212", - "shape:perf:00213", - "shape:perf:00214", - "shape:perf:00215", - "shape:perf:00216", - "shape:perf:00217", - "shape:perf:00218", - "shape:perf:00219", - "shape:perf:00220", - "shape:perf:00221", - "shape:perf:00222", - "shape:perf:00223", - "shape:perf:00224", - "shape:perf:00225", - "shape:perf:00226", - "shape:perf:00227", - "shape:perf:00228", - "shape:perf:00229", - "shape:perf:00230", - "shape:perf:00231", - "shape:perf:00232", - "shape:perf:00233", - "shape:perf:00234", - "shape:perf:00235", - "shape:perf:00236", - "shape:perf:00237", - "shape:perf:00238", - "shape:perf:00239", - "shape:perf:00240", - "shape:perf:00241", - "shape:perf:00242", - "shape:perf:00243", - "shape:perf:00244", - "shape:perf:00245", - "shape:perf:00246", - "shape:perf:00247", - "shape:perf:00248", - "shape:perf:00249", - "shape:perf:00250", - "shape:perf:00251", - "shape:perf:00252", - "shape:perf:00253", - "shape:perf:00254", - "shape:perf:00255", - "shape:perf:00256", - "shape:perf:00257", - "shape:perf:00258", - "shape:perf:00259", - "shape:perf:00260", - "shape:perf:00261", - "shape:perf:00262", - "shape:perf:00263", - "shape:perf:00264", - "shape:perf:00265", - "shape:perf:00266", - "shape:perf:00267", - "shape:perf:00268", - "shape:perf:00269", - "shape:perf:00270", - "shape:perf:00271", - "shape:perf:00272", - "shape:perf:00273", - "shape:perf:00274", - "shape:perf:00275", - "shape:perf:00276", - "shape:perf:00277", - "shape:perf:00278", - "shape:perf:00279", - "shape:perf:00280", - "shape:perf:00281", - "shape:perf:00282", - "shape:perf:00283", - "shape:perf:00284", - "shape:perf:00285", - "shape:perf:00286", - "shape:perf:00287", - "shape:perf:00288", - "shape:perf:00289", - "shape:perf:00290", - "shape:perf:00291", - "shape:perf:00292", - "shape:perf:00293", - "shape:perf:00294", - "shape:perf:00295", - "shape:perf:00296", - "shape:perf:00297", - "shape:perf:00298", - "shape:perf:00299", - "shape:perf:00300", - "shape:perf:00301", - "shape:perf:00302", - "shape:perf:00303", - "shape:perf:00304", - "shape:perf:00305", - "shape:perf:00306", - "shape:perf:00307", - "shape:perf:00308", - "shape:perf:00309", - "shape:perf:00310", - "shape:perf:00311", - "shape:perf:00312", - "shape:perf:00313", - "shape:perf:00314", - "shape:perf:00315", - "shape:perf:00316", - "shape:perf:00317", - "shape:perf:00318", - "shape:perf:00319", - "shape:perf:00320", - "shape:perf:00321", - "shape:perf:00322", - "shape:perf:00323", - "shape:perf:00324", - "shape:perf:00325", - "shape:perf:00326", - "shape:perf:00327", - "shape:perf:00328", - "shape:perf:00329", - "shape:perf:00330", - "shape:perf:00331", - "shape:perf:00332", - "shape:perf:00333", - "shape:perf:00334", - "shape:perf:00335", - "shape:perf:00336", - "shape:perf:00337", - "shape:perf:00338", - "shape:perf:00339", - "shape:perf:00340", - "shape:perf:00341", - "shape:perf:00342", - "shape:perf:00343", - "shape:perf:00344", - "shape:perf:00345", - "shape:perf:00346", - "shape:perf:00347", - "shape:perf:00348", - "shape:perf:00349", - "shape:perf:00350", - "shape:perf:00351", - "shape:perf:00352", - "shape:perf:00353", - "shape:perf:00354", - "shape:perf:00355", - "shape:perf:00356", - "shape:perf:00357", - "shape:perf:00358", - "shape:perf:00359", - "shape:perf:00360", - "shape:perf:00361", - "shape:perf:00362", - "shape:perf:00363", - "shape:perf:00364", - "shape:perf:00365", - "shape:perf:00366", - "shape:perf:00367", - "shape:perf:00368", - "shape:perf:00369", - "shape:perf:00370", - "shape:perf:00371", - "shape:perf:00372", - "shape:perf:00373", - "shape:perf:00374", - "shape:perf:00375", - "shape:perf:00376", - "shape:perf:00377", - "shape:perf:00378", - "shape:perf:00379", - "shape:perf:00380", - "shape:perf:00381", - "shape:perf:00382", - "shape:perf:00383", - "shape:perf:00384", - "shape:perf:00385", - "shape:perf:00386", - "shape:perf:00387", - "shape:perf:00388", - "shape:perf:00389", - "shape:perf:00390", - "shape:perf:00391", - "shape:perf:00392", - "shape:perf:00393", - "shape:perf:00394", - "shape:perf:00395", - "shape:perf:00396", - "shape:perf:00397", - "shape:perf:00398", - "shape:perf:00399", - "shape:perf:00400", - "shape:perf:00401", - "shape:perf:00402", - "shape:perf:00403", - "shape:perf:00404", - "shape:perf:00405", - "shape:perf:00406", - "shape:perf:00407", - "shape:perf:00408", - "shape:perf:00409", - "shape:perf:00410", - "shape:perf:00411", - "shape:perf:00412", - "shape:perf:00413", - "shape:perf:00414", - "shape:perf:00415", - "shape:perf:00416", - "shape:perf:00417", - "shape:perf:00418", - "shape:perf:00419", - "shape:perf:00420", - "shape:perf:00421", - "shape:perf:00422", - "shape:perf:00423", - "shape:perf:00424", - "shape:perf:00425", - "shape:perf:00426", - "shape:perf:00427", - "shape:perf:00428", - "shape:perf:00429", - "shape:perf:00430", - "shape:perf:00431", - "shape:perf:00432", - "shape:perf:00433", - "shape:perf:00434", - "shape:perf:00435", - "shape:perf:00436", - "shape:perf:00437", - "shape:perf:00438", - "shape:perf:00439", - "shape:perf:00440", - "shape:perf:00441", - "shape:perf:00442", - "shape:perf:00443", - "shape:perf:00444", - "shape:perf:00445", - "shape:perf:00446", - "shape:perf:00447", - "shape:perf:00448", - "shape:perf:00449", - "shape:perf:00450", - "shape:perf:00451", - "shape:perf:00452", - "shape:perf:00453", - "shape:perf:00454", - "shape:perf:00455", - "shape:perf:00456", - "shape:perf:00457", - "shape:perf:00458", - "shape:perf:00459", - "shape:perf:00460", - "shape:perf:00461", - "shape:perf:00462", - "shape:perf:00463", - "shape:perf:00464", - "shape:perf:00465", - "shape:perf:00466", - "shape:perf:00467", - "shape:perf:00468", - "shape:perf:00469", - "shape:perf:00470", - "shape:perf:00471", - "shape:perf:00472", - "shape:perf:00473", - "shape:perf:00474", - "shape:perf:00475", - "shape:perf:00476", - "shape:perf:00477", - "shape:perf:00478", - "shape:perf:00479", - "shape:perf:00480", - "shape:perf:00481", - "shape:perf:00482", - "shape:perf:00483", - "shape:perf:00484", - "shape:perf:00485", - "shape:perf:00486", - "shape:perf:00487", - "shape:perf:00488", - "shape:perf:00489", - "shape:perf:00490", - "shape:perf:00491", - "shape:perf:00492", - "shape:perf:00493", - "shape:perf:00494", - "shape:perf:00495", - "shape:perf:00496", - "shape:perf:00497", - "shape:perf:00498", - "shape:perf:00499", - "shape:perf:00500", - "shape:perf:00501", - "shape:perf:00502", - "shape:perf:00503", - "shape:perf:00504", - "shape:perf:00505", - "shape:perf:00506", - "shape:perf:00507", - "shape:perf:00508", - "shape:perf:00509", - "shape:perf:00510", - "shape:perf:00511", - "shape:perf:00512", - "shape:perf:00513", - "shape:perf:00514", - "shape:perf:00515", - "shape:perf:00516", - "shape:perf:00517", - "shape:perf:00518", - "shape:perf:00519", - "shape:perf:00520", - "shape:perf:00521", - "shape:perf:00522", - "shape:perf:00523", - "shape:perf:00524", - "shape:perf:00525", - "shape:perf:00526", - "shape:perf:00527", - "shape:perf:00528", - "shape:perf:00529", - "shape:perf:00530", - "shape:perf:00531", - "shape:perf:00532", - "shape:perf:00533", - "shape:perf:00534", - "shape:perf:00535", - "shape:perf:00536", - "shape:perf:00537", - "shape:perf:00538", - "shape:perf:00539", - "shape:perf:00540", - "shape:perf:00541", - "shape:perf:00542", - "shape:perf:00543", - "shape:perf:00544", - "shape:perf:00545", - "shape:perf:00546", - "shape:perf:00547", - "shape:perf:00548", - "shape:perf:00549", - "shape:perf:00550", - "shape:perf:00551", - "shape:perf:00552", - "shape:perf:00553", - "shape:perf:00554", - "shape:perf:00555", - "shape:perf:00556", - "shape:perf:00557", - "shape:perf:00558", - "shape:perf:00559", - "shape:perf:00560", - "shape:perf:00561", - "shape:perf:00562", - "shape:perf:00563", - "shape:perf:00564", - "shape:perf:00565", - "shape:perf:00566", - "shape:perf:00567", - "shape:perf:00568", - "shape:perf:00569", - "shape:perf:00570", - "shape:perf:00571", - "shape:perf:00572", - "shape:perf:00573", - "shape:perf:00574", - "shape:perf:00575", - "shape:perf:00576", - "shape:perf:00577", - "shape:perf:00578", - "shape:perf:00579", - "shape:perf:00580", - "shape:perf:00581", - "shape:perf:00582", - "shape:perf:00583", - "shape:perf:00584", - "shape:perf:00585", - "shape:perf:00586", - "shape:perf:00587", - "shape:perf:00588", - "shape:perf:00589", - "shape:perf:00590", - "shape:perf:00591", - "shape:perf:00592", - "shape:perf:00593", - "shape:perf:00594", - "shape:perf:00595", - "shape:perf:00596", - "shape:perf:00597", - "shape:perf:00598", - "shape:perf:00599", - "shape:perf:00600", - "shape:perf:00601", - "shape:perf:00602", - "shape:perf:00603", - "shape:perf:00604", - "shape:perf:00605", - "shape:perf:00606", - "shape:perf:00607", - "shape:perf:00608", - "shape:perf:00609", - "shape:perf:00610", - "shape:perf:00611", - "shape:perf:00612", - "shape:perf:00613", - "shape:perf:00614", - "shape:perf:00615", - "shape:perf:00616", - "shape:perf:00617", - "shape:perf:00618", - "shape:perf:00619", - "shape:perf:00620", - "shape:perf:00621", - "shape:perf:00622", - "shape:perf:00623", - "shape:perf:00624", - "shape:perf:00625", - "shape:perf:00626", - "shape:perf:00627", - "shape:perf:00628", - "shape:perf:00629", - "shape:perf:00630", - "shape:perf:00631", - "shape:perf:00632", - "shape:perf:00633", - "shape:perf:00634", - "shape:perf:00635", - "shape:perf:00636", - "shape:perf:00637", - "shape:perf:00638", - "shape:perf:00639", - "shape:perf:00640", - "shape:perf:00641", - "shape:perf:00642", - "shape:perf:00643", - "shape:perf:00644", - "shape:perf:00645", - "shape:perf:00646", - "shape:perf:00647", - "shape:perf:00648", - "shape:perf:00649", - "shape:perf:00650", - "shape:perf:00651", - "shape:perf:00652", - "shape:perf:00653", - "shape:perf:00654", - "shape:perf:00655", - "shape:perf:00656", - "shape:perf:00657", - "shape:perf:00658", - "shape:perf:00659", - "shape:perf:00660", - "shape:perf:00661", - "shape:perf:00662", - "shape:perf:00663", - "shape:perf:00664", - "shape:perf:00665", - "shape:perf:00666", - "shape:perf:00667", - "shape:perf:00668", - "shape:perf:00669", - "shape:perf:00670", - "shape:perf:00671", - "shape:perf:00672", - "shape:perf:00673", - "shape:perf:00674", - "shape:perf:00675", - "shape:perf:00676", - "shape:perf:00677", - "shape:perf:00678", - "shape:perf:00679", - "shape:perf:00680", - "shape:perf:00681", - "shape:perf:00682", - "shape:perf:00683", - "shape:perf:00684", - "shape:perf:00685", - "shape:perf:00686", - "shape:perf:00687", - "shape:perf:00688", - "shape:perf:00689", - "shape:perf:00690", - "shape:perf:00691", - "shape:perf:00692", - "shape:perf:00693", - "shape:perf:00694", - "shape:perf:00695", - "shape:perf:00696", - "shape:perf:00697", - "shape:perf:00698", - "shape:perf:00699", - "shape:perf:00700", - "shape:perf:00701", - "shape:perf:00702", - "shape:perf:00703", - "shape:perf:00704", - "shape:perf:00705", - "shape:perf:00706", - "shape:perf:00707", - "shape:perf:00708", - "shape:perf:00709", - "shape:perf:00710", - "shape:perf:00711", - "shape:perf:00712", - "shape:perf:00713", - "shape:perf:00714", - "shape:perf:00715", - "shape:perf:00716", - "shape:perf:00717", - "shape:perf:00718", - "shape:perf:00719", - "shape:perf:00720", - "shape:perf:00721", - "shape:perf:00722", - "shape:perf:00723", - "shape:perf:00724", - "shape:perf:00725", - "shape:perf:00726", - "shape:perf:00727", - "shape:perf:00728", - "shape:perf:00729", - "shape:perf:00730", - "shape:perf:00731", - "shape:perf:00732", - "shape:perf:00733", - "shape:perf:00734", - "shape:perf:00735", - "shape:perf:00736", - "shape:perf:00737", - "shape:perf:00738", - "shape:perf:00739", - "shape:perf:00740", - "shape:perf:00741", - "shape:perf:00742", - "shape:perf:00743", - "shape:perf:00744", - "shape:perf:00745", - "shape:perf:00746", - "shape:perf:00747", - "shape:perf:00748", - "shape:perf:00749", - "shape:perf:00750", - "shape:perf:00751", - "shape:perf:00752", - "shape:perf:00753", - "shape:perf:00754", - "shape:perf:00755", - "shape:perf:00756", - "shape:perf:00757", - "shape:perf:00758", - "shape:perf:00759", - "shape:perf:00760", - "shape:perf:00761", - "shape:perf:00762", - "shape:perf:00763", - "shape:perf:00764", - "shape:perf:00765", - "shape:perf:00766", - "shape:perf:00767", - "shape:perf:00768", - "shape:perf:00769", - "shape:perf:00770", - "shape:perf:00771", - "shape:perf:00772", - "shape:perf:00773", - "shape:perf:00774", - "shape:perf:00775", - "shape:perf:00776", - "shape:perf:00777", - "shape:perf:00778", - "shape:perf:00779", - "shape:perf:00780", - "shape:perf:00781", - "shape:perf:00782", - "shape:perf:00783", - "shape:perf:00784", - "shape:perf:00785", - "shape:perf:00786", - "shape:perf:00787", - "shape:perf:00788", - "shape:perf:00789", - "shape:perf:00790", - "shape:perf:00791", - "shape:perf:00792", - "shape:perf:00793", - "shape:perf:00794", - "shape:perf:00795", - "shape:perf:00796", - "shape:perf:00797", - "shape:perf:00798", - "shape:perf:00799", - "shape:perf:00800", - "shape:perf:00801", - "shape:perf:00802", - "shape:perf:00803", - "shape:perf:00804", - "shape:perf:00805", - "shape:perf:00806", - "shape:perf:00807", - "shape:perf:00808", - "shape:perf:00809", - "shape:perf:00810", - "shape:perf:00811", - "shape:perf:00812", - "shape:perf:00813", - "shape:perf:00814", - "shape:perf:00815", - "shape:perf:00816", - "shape:perf:00817", - "shape:perf:00818", - "shape:perf:00819", - "shape:perf:00820", - "shape:perf:00821", - "shape:perf:00822", - "shape:perf:00823", - "shape:perf:00824", - "shape:perf:00825", - "shape:perf:00826", - "shape:perf:00827", - "shape:perf:00828", - "shape:perf:00829", - "shape:perf:00830", - "shape:perf:00831", - "shape:perf:00832", - "shape:perf:00833", - "shape:perf:00834", - "shape:perf:00835", - "shape:perf:00836", - "shape:perf:00837", - "shape:perf:00838", - "shape:perf:00839", - "shape:perf:00840", - "shape:perf:00841", - "shape:perf:00842", - "shape:perf:00843", - "shape:perf:00844", - "shape:perf:00845", - "shape:perf:00846", - "shape:perf:00847", - "shape:perf:00848", - "shape:perf:00849", - "shape:perf:00850", - "shape:perf:00851", - "shape:perf:00852", - "shape:perf:00853", - "shape:perf:00854", - "shape:perf:00855", - "shape:perf:00856", - "shape:perf:00857", - "shape:perf:00858", - "shape:perf:00859", - "shape:perf:00860", - "shape:perf:00861", - "shape:perf:00862", - "shape:perf:00863", - "shape:perf:00864", - "shape:perf:00865", - "shape:perf:00866", - "shape:perf:00867", - "shape:perf:00868", - "shape:perf:00869", - "shape:perf:00870", - "shape:perf:00871", - "shape:perf:00872", - "shape:perf:00873", - "shape:perf:00874", - "shape:perf:00875", - "shape:perf:00876", - "shape:perf:00877", - "shape:perf:00878", - "shape:perf:00879", - "shape:perf:00880", - "shape:perf:00881", - "shape:perf:00882", - "shape:perf:00883", - "shape:perf:00884", - "shape:perf:00885", - "shape:perf:00886", - "shape:perf:00887", - "shape:perf:00888", - "shape:perf:00889", - "shape:perf:00890", - "shape:perf:00891", - "shape:perf:00892", - "shape:perf:00893", - "shape:perf:00894", - "shape:perf:00895", - "shape:perf:00896", - "shape:perf:00897", - "shape:perf:00898", - "shape:perf:00899", - "shape:perf:00900", - "shape:perf:00901", - "shape:perf:00902", - "shape:perf:00903", - "shape:perf:00904", - "shape:perf:00905", - "shape:perf:00906", - "shape:perf:00907", - "shape:perf:00908", - "shape:perf:00909", - "shape:perf:00910", - "shape:perf:00911", - "shape:perf:00912", - "shape:perf:00913", - "shape:perf:00914", - "shape:perf:00915", - "shape:perf:00916", - "shape:perf:00917", - "shape:perf:00918", - "shape:perf:00919", - "shape:perf:00920", - "shape:perf:00921", - "shape:perf:00922", - "shape:perf:00923", - "shape:perf:00924", - "shape:perf:00925", - "shape:perf:00926", - "shape:perf:00927", - "shape:perf:00928", - "shape:perf:00929", - "shape:perf:00930", - "shape:perf:00931", - "shape:perf:00932", - "shape:perf:00933", - "shape:perf:00934", - "shape:perf:00935", - "shape:perf:00936", - "shape:perf:00937", - "shape:perf:00938", - "shape:perf:00939", - "shape:perf:00940", - "shape:perf:00941", - "shape:perf:00942", - "shape:perf:00943", - "shape:perf:00944", - "shape:perf:00945", - "shape:perf:00946", - "shape:perf:00947", - "shape:perf:00948", - "shape:perf:00949", - "shape:perf:00950", - "shape:perf:00951", - "shape:perf:00952", - "shape:perf:00953", - "shape:perf:00954", - "shape:perf:00955", - "shape:perf:00956", - "shape:perf:00957", - "shape:perf:00958", - "shape:perf:00959", - "shape:perf:00960", - "shape:perf:00961", - "shape:perf:00962", - "shape:perf:00963", - "shape:perf:00964", - "shape:perf:00965", - "shape:perf:00966", - "shape:perf:00967", - "shape:perf:00968", - "shape:perf:00969", - "shape:perf:00970", - "shape:perf:00971", - "shape:perf:00972", - "shape:perf:00973", - "shape:perf:00974", - "shape:perf:00975", - "shape:perf:00976", - "shape:perf:00977", - "shape:perf:00978", - "shape:perf:00979", - "shape:perf:00980", - "shape:perf:00981", - "shape:perf:00982", - "shape:perf:00983", - "shape:perf:00984", - "shape:perf:00985", - "shape:perf:00986", - "shape:perf:00987", - "shape:perf:00988", - "shape:perf:00989", - "shape:perf:00990", - "shape:perf:00991", - "shape:perf:00992", - "shape:perf:00993", - "shape:perf:00994", - "shape:perf:00995", - "shape:perf:00996", - "shape:perf:00997", - "shape:perf:00998", - "shape:perf:00999", - "shape:perf:01000", - "shape:perf:01001", - "shape:perf:01002", - "shape:perf:01003", - "shape:perf:01004", - "shape:perf:01005", - "shape:perf:01006", - "shape:perf:01007", - "shape:perf:01008", - "shape:perf:01009", - "shape:perf:01010", - "shape:perf:01011", - "shape:perf:01012", - "shape:perf:01013", - "shape:perf:01014", - "shape:perf:01015", - "shape:perf:01016", - "shape:perf:01017", - "shape:perf:01018", - "shape:perf:01019", - "shape:perf:01020", - "shape:perf:01021", - "shape:perf:01022", - "shape:perf:01023", - "shape:perf:01024", - "shape:perf:01025", - "shape:perf:01026", - "shape:perf:01027", - "shape:perf:01028", - "shape:perf:01029", - "shape:perf:01030", - "shape:perf:01031", - "shape:perf:01032", - "shape:perf:01033", - "shape:perf:01034", - "shape:perf:01035", - "shape:perf:01036", - "shape:perf:01037", - "shape:perf:01038", - "shape:perf:01039", - "shape:perf:01040", - "shape:perf:01041", - "shape:perf:01042", - "shape:perf:01043", - "shape:perf:01044", - "shape:perf:01045", - "shape:perf:01046", - "shape:perf:01047", - "shape:perf:01048", - "shape:perf:01049", - "shape:perf:01050", - "shape:perf:01051", - "shape:perf:01052", - "shape:perf:01053", - "shape:perf:01054", - "shape:perf:01055", - "shape:perf:01056", - "shape:perf:01057", - "shape:perf:01058", - "shape:perf:01059", - "shape:perf:01060", - "shape:perf:01061", - "shape:perf:01062", - "shape:perf:01063", - "shape:perf:01064", - "shape:perf:01065", - "shape:perf:01066", - "shape:perf:01067", - "shape:perf:01068", - "shape:perf:01069", - "shape:perf:01070", - "shape:perf:01071", - "shape:perf:01072", - "shape:perf:01073", - "shape:perf:01074", - "shape:perf:01075", - "shape:perf:01076", - "shape:perf:01077", - "shape:perf:01078", - "shape:perf:01079", - "shape:perf:01080", - "shape:perf:01081", - "shape:perf:01082", - "shape:perf:01083", - "shape:perf:01084", - "shape:perf:01085", - "shape:perf:01086", - "shape:perf:01087", - "shape:perf:01088", - "shape:perf:01089", - "shape:perf:01090", - "shape:perf:01091", - "shape:perf:01092", - "shape:perf:01093", - "shape:perf:01094", - "shape:perf:01095", - "shape:perf:01096", - "shape:perf:01097", - "shape:perf:01098", - "shape:perf:01099", - "shape:perf:01100", - "shape:perf:01101", - "shape:perf:01102", - "shape:perf:01103", - "shape:perf:01104", - "shape:perf:01105", - "shape:perf:01106", - "shape:perf:01107", - "shape:perf:01108", - "shape:perf:01109", - "shape:perf:01110", - "shape:perf:01111", - "shape:perf:01112", - "shape:perf:01113", - "shape:perf:01114", - "shape:perf:01115", - "shape:perf:01116", - "shape:perf:01117", - "shape:perf:01118", - "shape:perf:01119", - "shape:perf:01120", - "shape:perf:01121", - "shape:perf:01122", - "shape:perf:01123", - "shape:perf:01124", - "shape:perf:01125", - "shape:perf:01126", - "shape:perf:01127", - "shape:perf:01128", - "shape:perf:01129", - "shape:perf:01130", - "shape:perf:01131", - "shape:perf:01132", - "shape:perf:01133", - "shape:perf:01134", - "shape:perf:01135", - "shape:perf:01136", - "shape:perf:01137", - "shape:perf:01138", - "shape:perf:01139", - "shape:perf:01140", - "shape:perf:01141", - "shape:perf:01142", - "shape:perf:01143", - "shape:perf:01144", - "shape:perf:01145", - "shape:perf:01146", - "shape:perf:01147", - "shape:perf:01148", - "shape:perf:01149", - "shape:perf:01150", - "shape:perf:01151", - "shape:perf:01152", - "shape:perf:01153", - "shape:perf:01154", - "shape:perf:01155", - "shape:perf:01156", - "shape:perf:01157", - "shape:perf:01158", - "shape:perf:01159", - "shape:perf:01160", - "shape:perf:01161", - "shape:perf:01162", - "shape:perf:01163", - "shape:perf:01164", - "shape:perf:01165", - "shape:perf:01166", - "shape:perf:01167", - "shape:perf:01168", - "shape:perf:01169", - "shape:perf:01170", - "shape:perf:01171", - "shape:perf:01172", - "shape:perf:01173", - "shape:perf:01174", - "shape:perf:01175", - "shape:perf:01176", - "shape:perf:01177", - "shape:perf:01178", - "shape:perf:01179", - "shape:perf:01180", - "shape:perf:01181", - "shape:perf:01182", - "shape:perf:01183", - "shape:perf:01184", - "shape:perf:01185", - "shape:perf:01186", - "shape:perf:01187", - "shape:perf:01188", - "shape:perf:01189", - "shape:perf:01190", - "shape:perf:01191", - "shape:perf:01192", - "shape:perf:01193", - "shape:perf:01194", - "shape:perf:01195", - "shape:perf:01196", - "shape:perf:01197", - "shape:perf:01198", - "shape:perf:01199", - "shape:perf:01200", - "shape:perf:01201", - "shape:perf:01202", - "shape:perf:01203", - "shape:perf:01204", - "shape:perf:01205", - "shape:perf:01206", - "shape:perf:01207", - "shape:perf:01208", - "shape:perf:01209", - "shape:perf:01210", - "shape:perf:01211", - "shape:perf:01212", - "shape:perf:01213", - "shape:perf:01214", - "shape:perf:01215", - "shape:perf:01216", - "shape:perf:01217", - "shape:perf:01218", - "shape:perf:01219", - "shape:perf:01220", - "shape:perf:01221", - "shape:perf:01222", - "shape:perf:01223", - "shape:perf:01224", - "shape:perf:01225", - "shape:perf:01226", - "shape:perf:01227", - "shape:perf:01228", - "shape:perf:01229", - "shape:perf:01230", - "shape:perf:01231", - "shape:perf:01232", - "shape:perf:01233", - "shape:perf:01234", - "shape:perf:01235", - "shape:perf:01236", - "shape:perf:01237", - "shape:perf:01238", - "shape:perf:01239", - "shape:perf:01240", - "shape:perf:01241", - "shape:perf:01242", - "shape:perf:01243", - "shape:perf:01244", - "shape:perf:01245", - "shape:perf:01246", - "shape:perf:01247", - "shape:perf:01248", - "shape:perf:01249", - "shape:perf:01250", - "shape:perf:01251", - "shape:perf:01252", - "shape:perf:01253", - "shape:perf:01254", - "shape:perf:01255", - "shape:perf:01256", - "shape:perf:01257", - "shape:perf:01258", - "shape:perf:01259", - "shape:perf:01260", - "shape:perf:01261", - "shape:perf:01262", - "shape:perf:01263", - "shape:perf:01264", - "shape:perf:01265", - "shape:perf:01266", - "shape:perf:01267", - "shape:perf:01268", - "shape:perf:01269", - "shape:perf:01270", - "shape:perf:01271", - "shape:perf:01272", - "shape:perf:01273", - "shape:perf:01274", - "shape:perf:01275", - "shape:perf:01276", - "shape:perf:01277", - "shape:perf:01278", - "shape:perf:01279", - "shape:perf:01280", - "shape:perf:01281", - "shape:perf:01282", - "shape:perf:01283", - "shape:perf:01284", - "shape:perf:01285", - "shape:perf:01286", - "shape:perf:01287", - "shape:perf:01288", - "shape:perf:01289", - "shape:perf:01290", - "shape:perf:01291", - "shape:perf:01292", - "shape:perf:01293", - "shape:perf:01294", - "shape:perf:01295", - "shape:perf:01296", - "shape:perf:01297", - "shape:perf:01298", - "shape:perf:01299", - "shape:perf:01300", - "shape:perf:01301", - "shape:perf:01302", - "shape:perf:01303", - "shape:perf:01304", - "shape:perf:01305", - "shape:perf:01306", - "shape:perf:01307", - "shape:perf:01308", - "shape:perf:01309", - "shape:perf:01310", - "shape:perf:01311", - "shape:perf:01312", - "shape:perf:01313", - "shape:perf:01314", - "shape:perf:01315", - "shape:perf:01316", - "shape:perf:01317", - "shape:perf:01318", - "shape:perf:01319", - "shape:perf:01320", - "shape:perf:01321", - "shape:perf:01322", - "shape:perf:01323", - "shape:perf:01324", - "shape:perf:01325", - "shape:perf:01326", - "shape:perf:01327", - "shape:perf:01328", - "shape:perf:01329", - "shape:perf:01330", - "shape:perf:01331", - "shape:perf:01332", - "shape:perf:01333", - "shape:perf:01334", - "shape:perf:01335", - "shape:perf:01336", - "shape:perf:01337", - "shape:perf:01338", - "shape:perf:01339", - "shape:perf:01340", - "shape:perf:01341", - "shape:perf:01342", - "shape:perf:01343", - "shape:perf:01344", - "shape:perf:01345", - "shape:perf:01346", - "shape:perf:01347", - "shape:perf:01348", - "shape:perf:01349", - "shape:perf:01350", - "shape:perf:01351", - "shape:perf:01352", - "shape:perf:01353", - "shape:perf:01354", - "shape:perf:01355", - "shape:perf:01356", - "shape:perf:01357", - "shape:perf:01358", - "shape:perf:01359", - "shape:perf:01360", - "shape:perf:01361", - "shape:perf:01362", - "shape:perf:01363", - "shape:perf:01364", - "shape:perf:01365", - "shape:perf:01366", - "shape:perf:01367", - "shape:perf:01368", - "shape:perf:01369", - "shape:perf:01370", - "shape:perf:01371", - "shape:perf:01372", - "shape:perf:01373", - "shape:perf:01374", - "shape:perf:01375", - "shape:perf:01376", - "shape:perf:01377", - "shape:perf:01378", - "shape:perf:01379", - "shape:perf:01380", - "shape:perf:01381", - "shape:perf:01382", - "shape:perf:01383", - "shape:perf:01384", - "shape:perf:01385", - "shape:perf:01386", - "shape:perf:01387", - "shape:perf:01388", - "shape:perf:01389", - "shape:perf:01390", - "shape:perf:01391", - "shape:perf:01392", - "shape:perf:01393", - "shape:perf:01394", - "shape:perf:01395", - "shape:perf:01396", - "shape:perf:01397", - "shape:perf:01398", - "shape:perf:01399", - "shape:perf:01400", - "shape:perf:01401", - "shape:perf:01402", - "shape:perf:01403", - "shape:perf:01404", - "shape:perf:01405", - "shape:perf:01406", - "shape:perf:01407", - "shape:perf:01408", - "shape:perf:01409", - "shape:perf:01410", - "shape:perf:01411", - "shape:perf:01412", - "shape:perf:01413", - "shape:perf:01414", - "shape:perf:01415", - "shape:perf:01416", - "shape:perf:01417", - "shape:perf:01418", - "shape:perf:01419", - "shape:perf:01420", - "shape:perf:01421", - "shape:perf:01422", - "shape:perf:01423", - "shape:perf:01424", - "shape:perf:01425", - "shape:perf:01426", - "shape:perf:01427", - "shape:perf:01428", - "shape:perf:01429", - "shape:perf:01430", - "shape:perf:01431", - "shape:perf:01432", - "shape:perf:01433", - "shape:perf:01434", - "shape:perf:01435", - "shape:perf:01436", - "shape:perf:01437", - "shape:perf:01438", - "shape:perf:01439", - "shape:perf:01440", - "shape:perf:01441", - "shape:perf:01442", - "shape:perf:01443", - "shape:perf:01444", - "shape:perf:01445", - "shape:perf:01446", - "shape:perf:01447", - "shape:perf:01448", - "shape:perf:01449", - "shape:perf:01450", - "shape:perf:01451", - "shape:perf:01452", - "shape:perf:01453", - "shape:perf:01454", - "shape:perf:01455", - "shape:perf:01456", - "shape:perf:01457", - "shape:perf:01458", - "shape:perf:01459", - "shape:perf:01460", - "shape:perf:01461", - "shape:perf:01462", - "shape:perf:01463", - "shape:perf:01464", - "shape:perf:01465", - "shape:perf:01466", - "shape:perf:01467", - "shape:perf:01468", - "shape:perf:01469", - "shape:perf:01470", - "shape:perf:01471", - "shape:perf:01472", - "shape:perf:01473", - "shape:perf:01474", - "shape:perf:01475", - "shape:perf:01476", - "shape:perf:01477", - "shape:perf:01478", - "shape:perf:01479", - "shape:perf:01480", - "shape:perf:01481", - "shape:perf:01482", - "shape:perf:01483", - "shape:perf:01484", - "shape:perf:01485", - "shape:perf:01486", - "shape:perf:01487", - "shape:perf:01488", - "shape:perf:01489", - "shape:perf:01490", - "shape:perf:01491", - "shape:perf:01492", - "shape:perf:01493", - "shape:perf:01494", - "shape:perf:01495", - "shape:perf:01496", - "shape:perf:01497", - "shape:perf:01498", - "shape:perf:01499", - "shape:perf:01500", - "shape:perf:01501", - "shape:perf:01502", - "shape:perf:01503", - "shape:perf:01504", - "shape:perf:01505", - "shape:perf:01506", - "shape:perf:01507", - "shape:perf:01508", - "shape:perf:01509", - "shape:perf:01510", - "shape:perf:01511", - "shape:perf:01512", - "shape:perf:01513", - "shape:perf:01514", - "shape:perf:01515", - "shape:perf:01516", - "shape:perf:01517", - "shape:perf:01518", - "shape:perf:01519", - "shape:perf:01520", - "shape:perf:01521", - "shape:perf:01522", - "shape:perf:01523", - "shape:perf:01524", - "shape:perf:01525", - "shape:perf:01526", - "shape:perf:01527", - "shape:perf:01528", - "shape:perf:01529", - "shape:perf:01530", - "shape:perf:01531", - "shape:perf:01532", - "shape:perf:01533", - "shape:perf:01534", - "shape:perf:01535", - "shape:perf:01536", - "shape:perf:01537", - "shape:perf:01538", - "shape:perf:01539", - "shape:perf:01540", - "shape:perf:01541", - "shape:perf:01542", - "shape:perf:01543", - "shape:perf:01544", - "shape:perf:01545", - "shape:perf:01546", - "shape:perf:01547", - "shape:perf:01548", - "shape:perf:01549", - "shape:perf:01550", - "shape:perf:01551", - "shape:perf:01552", - "shape:perf:01553", - "shape:perf:01554", - "shape:perf:01555", - "shape:perf:01556", - "shape:perf:01557", - "shape:perf:01558", - "shape:perf:01559", - "shape:perf:01560", - "shape:perf:01561", - "shape:perf:01562", - "shape:perf:01563", - "shape:perf:01564", - "shape:perf:01565", - "shape:perf:01566", - "shape:perf:01567", - "shape:perf:01568", - "shape:perf:01569", - "shape:perf:01570", - "shape:perf:01571", - "shape:perf:01572", - "shape:perf:01573", - "shape:perf:01574", - "shape:perf:01575", - "shape:perf:01576", - "shape:perf:01577", - "shape:perf:01578", - "shape:perf:01579", - "shape:perf:01580", - "shape:perf:01581", - "shape:perf:01582", - "shape:perf:01583", - "shape:perf:01584", - "shape:perf:01585", - "shape:perf:01586", - "shape:perf:01587", - "shape:perf:01588", - "shape:perf:01589", - "shape:perf:01590", - "shape:perf:01591", - "shape:perf:01592", - "shape:perf:01593", - "shape:perf:01594", - "shape:perf:01595", - "shape:perf:01596", - "shape:perf:01597", - "shape:perf:01598", - "shape:perf:01599", - "shape:perf:01600", - "shape:perf:01601", - "shape:perf:01602", - "shape:perf:01603", - "shape:perf:01604", - "shape:perf:01605", - "shape:perf:01606", - "shape:perf:01607", - "shape:perf:01608", - "shape:perf:01609", - "shape:perf:01610", - "shape:perf:01611", - "shape:perf:01612", - "shape:perf:01613", - "shape:perf:01614", - "shape:perf:01615", - "shape:perf:01616", - "shape:perf:01617", - "shape:perf:01618", - "shape:perf:01619", - "shape:perf:01620", - "shape:perf:01621", - "shape:perf:01622", - "shape:perf:01623", - "shape:perf:01624", - "shape:perf:01625", - "shape:perf:01626", - "shape:perf:01627", - "shape:perf:01628", - "shape:perf:01629", - "shape:perf:01630", - "shape:perf:01631", - "shape:perf:01632", - "shape:perf:01633", - "shape:perf:01634", - "shape:perf:01635", - "shape:perf:01636", - "shape:perf:01637", - "shape:perf:01638", - "shape:perf:01639", - "shape:perf:01640", - "shape:perf:01641", - "shape:perf:01642", - "shape:perf:01643", - "shape:perf:01644", - "shape:perf:01645", - "shape:perf:01646", - "shape:perf:01647", - "shape:perf:01648", - "shape:perf:01649", - "shape:perf:01650", - "shape:perf:01651", - "shape:perf:01652", - "shape:perf:01653", - "shape:perf:01654", - "shape:perf:01655", - "shape:perf:01656", - "shape:perf:01657", - "shape:perf:01658", - "shape:perf:01659", - "shape:perf:01660", - "shape:perf:01661", - "shape:perf:01662", - "shape:perf:01663", - "shape:perf:01664", - "shape:perf:01665", - "shape:perf:01666", - "shape:perf:01667", - "shape:perf:01668", - "shape:perf:01669", - "shape:perf:01670", - "shape:perf:01671", - "shape:perf:01672", - "shape:perf:01673", - "shape:perf:01674", - "shape:perf:01675", - "shape:perf:01676", - "shape:perf:01677", - "shape:perf:01678", - "shape:perf:01679", - "shape:perf:01680", - "shape:perf:01681", - "shape:perf:01682", - "shape:perf:01683", - "shape:perf:01684", - "shape:perf:01685", - "shape:perf:01686", - "shape:perf:01687", - "shape:perf:01688", - "shape:perf:01689", - "shape:perf:01690", - "shape:perf:01691", - "shape:perf:01692", - "shape:perf:01693", - "shape:perf:01694", - "shape:perf:01695", - "shape:perf:01696", - "shape:perf:01697", - "shape:perf:01698", - "shape:perf:01699", - "shape:perf:01700", - "shape:perf:01701", - "shape:perf:01702", - "shape:perf:01703", - "shape:perf:01704", - "shape:perf:01705", - "shape:perf:01706", - "shape:perf:01707", - "shape:perf:01708", - "shape:perf:01709", - "shape:perf:01710", - "shape:perf:01711", - "shape:perf:01712", - "shape:perf:01713", - "shape:perf:01714", - "shape:perf:01715", - "shape:perf:01716", - "shape:perf:01717", - "shape:perf:01718", - "shape:perf:01719", - "shape:perf:01720", - "shape:perf:01721", - "shape:perf:01722", - "shape:perf:01723", - "shape:perf:01724", - "shape:perf:01725", - "shape:perf:01726", - "shape:perf:01727", - "shape:perf:01728", - "shape:perf:01729", - "shape:perf:01730", - "shape:perf:01731", - "shape:perf:01732", - "shape:perf:01733", - "shape:perf:01734", - "shape:perf:01735", - "shape:perf:01736", - "shape:perf:01737", - "shape:perf:01738", - "shape:perf:01739", - "shape:perf:01740", - "shape:perf:01741", - "shape:perf:01742", - "shape:perf:01743", - "shape:perf:01744", - "shape:perf:01745", - "shape:perf:01746", - "shape:perf:01747", - "shape:perf:01748", - "shape:perf:01749", - "shape:perf:01750", - "shape:perf:01751", - "shape:perf:01752", - "shape:perf:01753", - "shape:perf:01754", - "shape:perf:01755", - "shape:perf:01756", - "shape:perf:01757", - "shape:perf:01758", - "shape:perf:01759", - "shape:perf:01760", - "shape:perf:01761", - "shape:perf:01762", - "shape:perf:01763", - "shape:perf:01764", - "shape:perf:01765", - "shape:perf:01766", - "shape:perf:01767", - "shape:perf:01768", - "shape:perf:01769", - "shape:perf:01770", - "shape:perf:01771", - "shape:perf:01772", - "shape:perf:01773", - "shape:perf:01774", - "shape:perf:01775", - "shape:perf:01776", - "shape:perf:01777", - "shape:perf:01778", - "shape:perf:01779", - "shape:perf:01780", - "shape:perf:01781", - "shape:perf:01782", - "shape:perf:01783", - "shape:perf:01784", - "shape:perf:01785", - "shape:perf:01786", - "shape:perf:01787", - "shape:perf:01788", - "shape:perf:01789", - "shape:perf:01790", - "shape:perf:01791", - "shape:perf:01792", - "shape:perf:01793", - "shape:perf:01794", - "shape:perf:01795", - "shape:perf:01796", - "shape:perf:01797", - "shape:perf:01798", - "shape:perf:01799", - "shape:perf:01800", - "shape:perf:01801", - "shape:perf:01802", - "shape:perf:01803", - "shape:perf:01804", - "shape:perf:01805", - "shape:perf:01806", - "shape:perf:01807", - "shape:perf:01808", - "shape:perf:01809", - "shape:perf:01810", - "shape:perf:01811", - "shape:perf:01812", - "shape:perf:01813", - "shape:perf:01814", - "shape:perf:01815", - "shape:perf:01816", - "shape:perf:01817", - "shape:perf:01818", - "shape:perf:01819", - "shape:perf:01820", - "shape:perf:01821", - "shape:perf:01822", - "shape:perf:01823", - "shape:perf:01824", - "shape:perf:01825", - "shape:perf:01826", - "shape:perf:01827", - "shape:perf:01828", - "shape:perf:01829", - "shape:perf:01830", - "shape:perf:01831", - "shape:perf:01832", - "shape:perf:01833", - "shape:perf:01834", - "shape:perf:01835", - "shape:perf:01836", - "shape:perf:01837", - "shape:perf:01838", - "shape:perf:01839", - "shape:perf:01840", - "shape:perf:01841", - "shape:perf:01842", - "shape:perf:01843", - "shape:perf:01844", - "shape:perf:01845", - "shape:perf:01846", - "shape:perf:01847", - "shape:perf:01848", - "shape:perf:01849", - "shape:perf:01850", - "shape:perf:01851", - "shape:perf:01852", - "shape:perf:01853", - "shape:perf:01854", - "shape:perf:01855", - "shape:perf:01856", - "shape:perf:01857", - "shape:perf:01858", - "shape:perf:01859", - "shape:perf:01860", - "shape:perf:01861", - "shape:perf:01862", - "shape:perf:01863", - "shape:perf:01864", - "shape:perf:01865", - "shape:perf:01866", - "shape:perf:01867", - "shape:perf:01868", - "shape:perf:01869", - "shape:perf:01870", - "shape:perf:01871", - "shape:perf:01872", - "shape:perf:01873", - "shape:perf:01874", - "shape:perf:01875", - "shape:perf:01876", - "shape:perf:01877", - "shape:perf:01878", - "shape:perf:01879", - "shape:perf:01880", - "shape:perf:01881", - "shape:perf:01882", - "shape:perf:01883", - "shape:perf:01884", - "shape:perf:01885", - "shape:perf:01886", - "shape:perf:01887", - "shape:perf:01888", - "shape:perf:01889", - "shape:perf:01890", - "shape:perf:01891", - "shape:perf:01892", - "shape:perf:01893", - "shape:perf:01894", - "shape:perf:01895", - "shape:perf:01896", - "shape:perf:01897", - "shape:perf:01898", - "shape:perf:01899", - "shape:perf:01900", - "shape:perf:01901", - "shape:perf:01902", - "shape:perf:01903", - "shape:perf:01904", - "shape:perf:01905", - "shape:perf:01906", - "shape:perf:01907", - "shape:perf:01908", - "shape:perf:01909", - "shape:perf:01910", - "shape:perf:01911", - "shape:perf:01912", - "shape:perf:01913", - "shape:perf:01914", - "shape:perf:01915", - "shape:perf:01916", - "shape:perf:01917", - "shape:perf:01918", - "shape:perf:01919", - "shape:perf:01920", - "shape:perf:01921", - "shape:perf:01922", - "shape:perf:01923", - "shape:perf:01924", - "shape:perf:01925", - "shape:perf:01926", - "shape:perf:01927", - "shape:perf:01928", - "shape:perf:01929", - "shape:perf:01930", - "shape:perf:01931", - "shape:perf:01932", - "shape:perf:01933", - "shape:perf:01934", - "shape:perf:01935", - "shape:perf:01936", - "shape:perf:01937", - "shape:perf:01938", - "shape:perf:01939", - "shape:perf:01940", - "shape:perf:01941", - "shape:perf:01942", - "shape:perf:01943", - "shape:perf:01944", - "shape:perf:01945", - "shape:perf:01946", - "shape:perf:01947", - "shape:perf:01948", - "shape:perf:01949", - "shape:perf:01950", - "shape:perf:01951", - "shape:perf:01952", - "shape:perf:01953", - "shape:perf:01954", - "shape:perf:01955", - "shape:perf:01956", - "shape:perf:01957", - "shape:perf:01958", - "shape:perf:01959", - "shape:perf:01960", - "shape:perf:01961", - "shape:perf:01962", - "shape:perf:01963", - "shape:perf:01964", - "shape:perf:01965", - "shape:perf:01966", - "shape:perf:01967", - "shape:perf:01968", - "shape:perf:01969", - "shape:perf:01970", - "shape:perf:01971", - "shape:perf:01972", - "shape:perf:01973", - "shape:perf:01974", - "shape:perf:01975", - "shape:perf:01976", - "shape:perf:01977", - "shape:perf:01978", - "shape:perf:01979", - "shape:perf:01980", - "shape:perf:01981", - "shape:perf:01982", - "shape:perf:01983", - "shape:perf:01984", - "shape:perf:01985", - "shape:perf:01986", - "shape:perf:01987", - "shape:perf:01988", - "shape:perf:01989", - "shape:perf:01990", - "shape:perf:01991", - "shape:perf:01992", - "shape:perf:01993", - "shape:perf:01994", - "shape:perf:01995", - "shape:perf:01996", - "shape:perf:01997", - "shape:perf:01998", - "shape:perf:01999", - "shape:perf:02000", - "shape:perf:02001", - "shape:perf:02002", - "shape:perf:02003", - "shape:perf:02004", - "shape:perf:02005", - "shape:perf:02006", - "shape:perf:02007", - "shape:perf:02008", - "shape:perf:02009", - "shape:perf:02010", - "shape:perf:02011", - "shape:perf:02012", - "shape:perf:02013", - "shape:perf:02014", - "shape:perf:02015", - "shape:perf:02016", - "shape:perf:02017", - "shape:perf:02018", - "shape:perf:02019", - "shape:perf:02020", - "shape:perf:02021", - "shape:perf:02022", - "shape:perf:02023", - "shape:perf:02024", - "shape:perf:02025", - "shape:perf:02026", - "shape:perf:02027", - "shape:perf:02028", - "shape:perf:02029", - "shape:perf:02030", - "shape:perf:02031", - "shape:perf:02032", - "shape:perf:02033", - "shape:perf:02034", - "shape:perf:02035", - "shape:perf:02036", - "shape:perf:02037", - "shape:perf:02038", - "shape:perf:02039", - "shape:perf:02040", - "shape:perf:02041", - "shape:perf:02042", - "shape:perf:02043", - "shape:perf:02044", - "shape:perf:02045", - "shape:perf:02046", - "shape:perf:02047", - "shape:perf:02048", - "shape:perf:02049", - "shape:perf:02050", - "shape:perf:02051", - "shape:perf:02052", - "shape:perf:02053", - "shape:perf:02054", - "shape:perf:02055", - "shape:perf:02056", - "shape:perf:02057", - "shape:perf:02058", - "shape:perf:02059", - "shape:perf:02060", - "shape:perf:02061", - "shape:perf:02062", - "shape:perf:02063", - "shape:perf:02064", - "shape:perf:02065", - "shape:perf:02066", - "shape:perf:02067", - "shape:perf:02068", - "shape:perf:02069", - "shape:perf:02070", - "shape:perf:02071", - "shape:perf:02072", - "shape:perf:02073", - "shape:perf:02074", - "shape:perf:02075", - "shape:perf:02076", - "shape:perf:02077", - "shape:perf:02078", - "shape:perf:02079", - "shape:perf:02080", - "shape:perf:02081", - "shape:perf:02082", - "shape:perf:02083", - "shape:perf:02084", - "shape:perf:02085", - "shape:perf:02086", - "shape:perf:02087", - "shape:perf:02088", - "shape:perf:02089", - "shape:perf:02090", - "shape:perf:02091", - "shape:perf:02092", - "shape:perf:02093", - "shape:perf:02094", - "shape:perf:02095", - "shape:perf:02096", - "shape:perf:02097", - "shape:perf:02098", - "shape:perf:02099", - "shape:perf:02100", - "shape:perf:02101", - "shape:perf:02102", - "shape:perf:02103", - "shape:perf:02104", - "shape:perf:02105", - "shape:perf:02106", - "shape:perf:02107", - "shape:perf:02108", - "shape:perf:02109", - "shape:perf:02110", - "shape:perf:02111", - "shape:perf:02112", - "shape:perf:02113", - "shape:perf:02114", - "shape:perf:02115", - "shape:perf:02116", - "shape:perf:02117", - "shape:perf:02118", - "shape:perf:02119", - "shape:perf:02120", - "shape:perf:02121", - "shape:perf:02122", - "shape:perf:02123", - "shape:perf:02124", - "shape:perf:02125", - "shape:perf:02126", - "shape:perf:02127", - "shape:perf:02128", - "shape:perf:02129", - "shape:perf:02130", - "shape:perf:02131", - "shape:perf:02132", - "shape:perf:02133", - "shape:perf:02134", - "shape:perf:02135", - "shape:perf:02136", - "shape:perf:02137", - "shape:perf:02138", - "shape:perf:02139", - "shape:perf:02140", - "shape:perf:02141", - "shape:perf:02142", - "shape:perf:02143", - "shape:perf:02144", - "shape:perf:02145", - "shape:perf:02146", - "shape:perf:02147", - "shape:perf:02148", - "shape:perf:02149", - "shape:perf:02150", - "shape:perf:02151", - "shape:perf:02152", - "shape:perf:02153", - "shape:perf:02154", - "shape:perf:02155", - "shape:perf:02156", - "shape:perf:02157", - "shape:perf:02158", - "shape:perf:02159", - "shape:perf:02160", - "shape:perf:02161", - "shape:perf:02162", - "shape:perf:02163", - "shape:perf:02164", - "shape:perf:02165", - "shape:perf:02166", - "shape:perf:02167", - "shape:perf:02168", - "shape:perf:02169", - "shape:perf:02170", - "shape:perf:02171", - "shape:perf:02172", - "shape:perf:02173", - "shape:perf:02174", - "shape:perf:02175", - "shape:perf:02176", - "shape:perf:02177", - "shape:perf:02178", - "shape:perf:02179", - "shape:perf:02180", - "shape:perf:02181", - "shape:perf:02182", - "shape:perf:02183", - "shape:perf:02184", - "shape:perf:02185", - "shape:perf:02186", - "shape:perf:02187", - "shape:perf:02188", - "shape:perf:02189", - "shape:perf:02190", - "shape:perf:02191", - "shape:perf:02192", - "shape:perf:02193", - "shape:perf:02194", - "shape:perf:02195", - "shape:perf:02196", - "shape:perf:02197", - "shape:perf:02198", - "shape:perf:02199", - "shape:perf:02200", - "shape:perf:02201", - "shape:perf:02202", - "shape:perf:02203", - "shape:perf:02204", - "shape:perf:02205", - "shape:perf:02206", - "shape:perf:02207", - "shape:perf:02208", - "shape:perf:02209", - "shape:perf:02210", - "shape:perf:02211", - "shape:perf:02212", - "shape:perf:02213", - "shape:perf:02214", - "shape:perf:02215", - "shape:perf:02216", - "shape:perf:02217", - "shape:perf:02218", - "shape:perf:02219", - "shape:perf:02220", - "shape:perf:02221", - "shape:perf:02222", - "shape:perf:02223", - "shape:perf:02224", - "shape:perf:02225", - "shape:perf:02226", - "shape:perf:02227", - "shape:perf:02228", - "shape:perf:02229", - "shape:perf:02230", - "shape:perf:02231", - "shape:perf:02232", - "shape:perf:02233", - "shape:perf:02234", - "shape:perf:02235", - "shape:perf:02236", - "shape:perf:02237", - "shape:perf:02238", - "shape:perf:02239", - "shape:perf:02240", - "shape:perf:02241", - "shape:perf:02242", - "shape:perf:02243", - "shape:perf:02244", - "shape:perf:02245", - "shape:perf:02246", - "shape:perf:02247", - "shape:perf:02248", - "shape:perf:02249", - "shape:perf:02250", - "shape:perf:02251", - "shape:perf:02252", - "shape:perf:02253", - "shape:perf:02254", - "shape:perf:02255", - "shape:perf:02256", - "shape:perf:02257", - "shape:perf:02258", - "shape:perf:02259", - "shape:perf:02260", - "shape:perf:02261", - "shape:perf:02262", - "shape:perf:02263", - "shape:perf:02264", - "shape:perf:02265", - "shape:perf:02266", - "shape:perf:02267", - "shape:perf:02268", - "shape:perf:02269", - "shape:perf:02270", - "shape:perf:02271", - "shape:perf:02272", - "shape:perf:02273", - "shape:perf:02274", - "shape:perf:02275", - "shape:perf:02276", - "shape:perf:02277", - "shape:perf:02278", - "shape:perf:02279", - "shape:perf:02280", - "shape:perf:02281", - "shape:perf:02282", - "shape:perf:02283", - "shape:perf:02284", - "shape:perf:02285", - "shape:perf:02286", - "shape:perf:02287", - "shape:perf:02288", - "shape:perf:02289", - "shape:perf:02290", - "shape:perf:02291", - "shape:perf:02292", - "shape:perf:02293", - "shape:perf:02294", - "shape:perf:02295", - "shape:perf:02296", - "shape:perf:02297", - "shape:perf:02298", - "shape:perf:02299", - "shape:perf:02300", - "shape:perf:02301", - "shape:perf:02302", - "shape:perf:02303", - "shape:perf:02304", - "shape:perf:02305", - "shape:perf:02306", - "shape:perf:02307", - "shape:perf:02308", - "shape:perf:02309", - "shape:perf:02310", - "shape:perf:02311", - "shape:perf:02312", - "shape:perf:02313", - "shape:perf:02314", - "shape:perf:02315", - "shape:perf:02316", - "shape:perf:02317", - "shape:perf:02318", - "shape:perf:02319", - "shape:perf:02320", - "shape:perf:02321", - "shape:perf:02322", - "shape:perf:02323", - "shape:perf:02324", - "shape:perf:02325", - "shape:perf:02326", - "shape:perf:02327", - "shape:perf:02328", - "shape:perf:02329", - "shape:perf:02330", - "shape:perf:02331", - "shape:perf:02332", - "shape:perf:02333", - "shape:perf:02334", - "shape:perf:02335", - "shape:perf:02336", - "shape:perf:02337", - "shape:perf:02338", - "shape:perf:02339", - "shape:perf:02340", - "shape:perf:02341", - "shape:perf:02342", - "shape:perf:02343", - "shape:perf:02344", - "shape:perf:02345", - "shape:perf:02346", - "shape:perf:02347", - "shape:perf:02348", - "shape:perf:02349", - "shape:perf:02350", - "shape:perf:02351", - "shape:perf:02352", - "shape:perf:02353", - "shape:perf:02354", - "shape:perf:02355", - "shape:perf:02356", - "shape:perf:02357", - "shape:perf:02358", - "shape:perf:02359", - "shape:perf:02360", - "shape:perf:02361", - "shape:perf:02362", - "shape:perf:02363", - "shape:perf:02364", - "shape:perf:02365", - "shape:perf:02366", - "shape:perf:02367", - "shape:perf:02368", - "shape:perf:02369", - "shape:perf:02370", - "shape:perf:02371", - "shape:perf:02372", - "shape:perf:02373", - "shape:perf:02374", - "shape:perf:02375", - "shape:perf:02376", - "shape:perf:02377", - "shape:perf:02378", - "shape:perf:02379", - "shape:perf:02380", - "shape:perf:02381", - "shape:perf:02382", - "shape:perf:02383", - "shape:perf:02384", - "shape:perf:02385", - "shape:perf:02386", - "shape:perf:02387", - "shape:perf:02388", - "shape:perf:02389", - "shape:perf:02390", - "shape:perf:02391", - "shape:perf:02392", - "shape:perf:02393", - "shape:perf:02394", - "shape:perf:02395", - "shape:perf:02396", - "shape:perf:02397", - "shape:perf:02398", - "shape:perf:02399", - "shape:perf:02400", - "shape:perf:02401", - "shape:perf:02402", - "shape:perf:02403", - "shape:perf:02404", - "shape:perf:02405", - "shape:perf:02406", - "shape:perf:02407", - "shape:perf:02408", - "shape:perf:02409", - "shape:perf:02410", - "shape:perf:02411", - "shape:perf:02412", - "shape:perf:02413", - "shape:perf:02414", - "shape:perf:02415", - "shape:perf:02416", - "shape:perf:02417", - "shape:perf:02418", - "shape:perf:02419", - "shape:perf:02420", - "shape:perf:02421", - "shape:perf:02422", - "shape:perf:02423", - "shape:perf:02424", - "shape:perf:02425", - "shape:perf:02426", - "shape:perf:02427", - "shape:perf:02428", - "shape:perf:02429", - "shape:perf:02430", - "shape:perf:02431", - "shape:perf:02432", - "shape:perf:02433", - "shape:perf:02434", - "shape:perf:02435", - "shape:perf:02436", - "shape:perf:02437", - "shape:perf:02438", - "shape:perf:02439", - "shape:perf:02440", - "shape:perf:02441", - "shape:perf:02442", - "shape:perf:02443", - "shape:perf:02444", - "shape:perf:02445", - "shape:perf:02446", - "shape:perf:02447", - "shape:perf:02448", - "shape:perf:02449", - "shape:perf:02450", - "shape:perf:02451", - "shape:perf:02452", - "shape:perf:02453", - "shape:perf:02454", - "shape:perf:02455", - "shape:perf:02456", - "shape:perf:02457", - "shape:perf:02458", - "shape:perf:02459", - "shape:perf:02460", - "shape:perf:02461", - "shape:perf:02462", - "shape:perf:02463", - "shape:perf:02464", - "shape:perf:02465", - "shape:perf:02466", - "shape:perf:02467", - "shape:perf:02468", - "shape:perf:02469", - "shape:perf:02470", - "shape:perf:02471", - "shape:perf:02472", - "shape:perf:02473", - "shape:perf:02474", - "shape:perf:02475", - "shape:perf:02476", - "shape:perf:02477", - "shape:perf:02478", - "shape:perf:02479", - "shape:perf:02480", - "shape:perf:02481", - "shape:perf:02482", - "shape:perf:02483", - "shape:perf:02484", - "shape:perf:02485", - "shape:perf:02486", - "shape:perf:02487", - "shape:perf:02488", - "shape:perf:02489", - "shape:perf:02490", - "shape:perf:02491", - "shape:perf:02492", - "shape:perf:02493", - "shape:perf:02494", - "shape:perf:02495", - "shape:perf:02496", - "shape:perf:02497", - "shape:perf:02498", - "shape:perf:02499", - "shape:perf:02500", - "shape:perf:02501", - "shape:perf:02502", - "shape:perf:02503", - "shape:perf:02504", - "shape:perf:02505", - "shape:perf:02506", - "shape:perf:02507", - "shape:perf:02508", - "shape:perf:02509", - "shape:perf:02510", - "shape:perf:02511", - "shape:perf:02512", - "shape:perf:02513", - "shape:perf:02514", - "shape:perf:02515", - "shape:perf:02516", - "shape:perf:02517", - "shape:perf:02518", - "shape:perf:02519", - "shape:perf:02520", - "shape:perf:02521", - "shape:perf:02522", - "shape:perf:02523", - "shape:perf:02524", - "shape:perf:02525", - "shape:perf:02526", - "shape:perf:02527", - "shape:perf:02528", - "shape:perf:02529", - "shape:perf:02530", - "shape:perf:02531", - "shape:perf:02532", - "shape:perf:02533", - "shape:perf:02534", - "shape:perf:02535", - "shape:perf:02536", - "shape:perf:02537", - "shape:perf:02538", - "shape:perf:02539", - "shape:perf:02540", - "shape:perf:02541", - "shape:perf:02542", - "shape:perf:02543", - "shape:perf:02544", - "shape:perf:02545", - "shape:perf:02546", - "shape:perf:02547", - "shape:perf:02548", - "shape:perf:02549", - "shape:perf:02550", - "shape:perf:02551", - "shape:perf:02552", - "shape:perf:02553", - "shape:perf:02554", - "shape:perf:02555", - "shape:perf:02556", - "shape:perf:02557", - "shape:perf:02558", - "shape:perf:02559", - "shape:perf:02560", - "shape:perf:02561", - "shape:perf:02562", - "shape:perf:02563", - "shape:perf:02564", - "shape:perf:02565", - "shape:perf:02566", - "shape:perf:02567", - "shape:perf:02568", - "shape:perf:02569", - "shape:perf:02570", - "shape:perf:02571", - "shape:perf:02572", - "shape:perf:02573", - "shape:perf:02574", - "shape:perf:02575", - "shape:perf:02576", - "shape:perf:02577", - "shape:perf:02578", - "shape:perf:02579", - "shape:perf:02580", - "shape:perf:02581", - "shape:perf:02582", - "shape:perf:02583", - "shape:perf:02584", - "shape:perf:02585", - "shape:perf:02586", - "shape:perf:02587", - "shape:perf:02588", - "shape:perf:02589", - "shape:perf:02590", - "shape:perf:02591", - "shape:perf:02592", - "shape:perf:02593", - "shape:perf:02594", - "shape:perf:02595", - "shape:perf:02596", - "shape:perf:02597", - "shape:perf:02598", - "shape:perf:02599", - "shape:perf:02600", - "shape:perf:02601", - "shape:perf:02602", - "shape:perf:02603", - "shape:perf:02604", - "shape:perf:02605", - "shape:perf:02606", - "shape:perf:02607", - "shape:perf:02608", - "shape:perf:02609", - "shape:perf:02610", - "shape:perf:02611", - "shape:perf:02612", - "shape:perf:02613", - "shape:perf:02614", - "shape:perf:02615", - "shape:perf:02616", - "shape:perf:02617", - "shape:perf:02618", - "shape:perf:02619", - "shape:perf:02620", - "shape:perf:02621", - "shape:perf:02622", - "shape:perf:02623", - "shape:perf:02624", - "shape:perf:02625", - "shape:perf:02626", - "shape:perf:02627", - "shape:perf:02628", - "shape:perf:02629", - "shape:perf:02630", - "shape:perf:02631", - "shape:perf:02632", - "shape:perf:02633", - "shape:perf:02634", - "shape:perf:02635", - "shape:perf:02636", - "shape:perf:02637", - "shape:perf:02638", - "shape:perf:02639", - "shape:perf:02640", - "shape:perf:02641", - "shape:perf:02642", - "shape:perf:02643", - "shape:perf:02644", - "shape:perf:02645", - "shape:perf:02646", - "shape:perf:02647", - "shape:perf:02648", - "shape:perf:02649", - "shape:perf:02650", - "shape:perf:02651", - "shape:perf:02652", - "shape:perf:02653", - "shape:perf:02654", - "shape:perf:02655", - "shape:perf:02656", - "shape:perf:02657", - "shape:perf:02658", - "shape:perf:02659", - "shape:perf:02660", - "shape:perf:02661", - "shape:perf:02662", - "shape:perf:02663", - "shape:perf:02664", - "shape:perf:02665", - "shape:perf:02666", - "shape:perf:02667", - "shape:perf:02668", - "shape:perf:02669", - "shape:perf:02670", - "shape:perf:02671", - "shape:perf:02672", - "shape:perf:02673", - "shape:perf:02674", - "shape:perf:02675", - "shape:perf:02676", - "shape:perf:02677", - "shape:perf:02678", - "shape:perf:02679", - "shape:perf:02680", - "shape:perf:02681", - "shape:perf:02682", - "shape:perf:02683", - "shape:perf:02684", - "shape:perf:02685", - "shape:perf:02686", - "shape:perf:02687", - "shape:perf:02688", - "shape:perf:02689", - "shape:perf:02690", - "shape:perf:02691", - "shape:perf:02692", - "shape:perf:02693", - "shape:perf:02694", - "shape:perf:02695", - "shape:perf:02696", - "shape:perf:02697", - "shape:perf:02698", - "shape:perf:02699", - "shape:perf:02700", - "shape:perf:02701", - "shape:perf:02702", - "shape:perf:02703", - "shape:perf:02704", - "shape:perf:02705", - "shape:perf:02706", - "shape:perf:02707", - "shape:perf:02708", - "shape:perf:02709", - "shape:perf:02710", - "shape:perf:02711", - "shape:perf:02712", - "shape:perf:02713", - "shape:perf:02714", - "shape:perf:02715", - "shape:perf:02716", - "shape:perf:02717", - "shape:perf:02718", - "shape:perf:02719", - "shape:perf:02720", - "shape:perf:02721", - "shape:perf:02722", - "shape:perf:02723", - "shape:perf:02724", - "shape:perf:02725", - "shape:perf:02726", - "shape:perf:02727", - "shape:perf:02728", - "shape:perf:02729", - "shape:perf:02730", - "shape:perf:02731", - "shape:perf:02732", - "shape:perf:02733", - "shape:perf:02734", - "shape:perf:02735", - "shape:perf:02736", - "shape:perf:02737", - "shape:perf:02738", - "shape:perf:02739", - "shape:perf:02740", - "shape:perf:02741", - "shape:perf:02742", - "shape:perf:02743", - "shape:perf:02744", - "shape:perf:02745", - "shape:perf:02746", - "shape:perf:02747", - "shape:perf:02748", - "shape:perf:02749", - "shape:perf:02750", - "shape:perf:02751", - "shape:perf:02752", - "shape:perf:02753", - "shape:perf:02754", - "shape:perf:02755", - "shape:perf:02756", - "shape:perf:02757", - "shape:perf:02758", - "shape:perf:02759", - "shape:perf:02760", - "shape:perf:02761", - "shape:perf:02762", - "shape:perf:02763", - "shape:perf:02764", - "shape:perf:02765", - "shape:perf:02766", - "shape:perf:02767", - "shape:perf:02768", - "shape:perf:02769", - "shape:perf:02770", - "shape:perf:02771", - "shape:perf:02772", - "shape:perf:02773", - "shape:perf:02774", - "shape:perf:02775", - "shape:perf:02776", - "shape:perf:02777", - "shape:perf:02778", - "shape:perf:02779", - "shape:perf:02780", - "shape:perf:02781", - "shape:perf:02782", - "shape:perf:02783", - "shape:perf:02784", - "shape:perf:02785", - "shape:perf:02786", - "shape:perf:02787", - "shape:perf:02788", - "shape:perf:02789", - "shape:perf:02790", - "shape:perf:02791", - "shape:perf:02792", - "shape:perf:02793", - "shape:perf:02794", - "shape:perf:02795", - "shape:perf:02796", - "shape:perf:02797", - "shape:perf:02798", - "shape:perf:02799", - "shape:perf:02800", - "shape:perf:02801", - "shape:perf:02802", - "shape:perf:02803", - "shape:perf:02804", - "shape:perf:02805", - "shape:perf:02806", - "shape:perf:02807", - "shape:perf:02808", - "shape:perf:02809", - "shape:perf:02810", - "shape:perf:02811", - "shape:perf:02812", - "shape:perf:02813", - "shape:perf:02814", - "shape:perf:02815", - "shape:perf:02816", - "shape:perf:02817", - "shape:perf:02818", - "shape:perf:02819", - "shape:perf:02820", - "shape:perf:02821", - "shape:perf:02822", - "shape:perf:02823", - "shape:perf:02824", - "shape:perf:02825", - "shape:perf:02826", - "shape:perf:02827", - "shape:perf:02828", - "shape:perf:02829", - "shape:perf:02830", - "shape:perf:02831", - "shape:perf:02832", - "shape:perf:02833", - "shape:perf:02834", - "shape:perf:02835", - "shape:perf:02836", - "shape:perf:02837", - "shape:perf:02838", - "shape:perf:02839", - "shape:perf:02840", - "shape:perf:02841", - "shape:perf:02842", - "shape:perf:02843", - "shape:perf:02844", - "shape:perf:02845", - "shape:perf:02846", - "shape:perf:02847", - "shape:perf:02848", - "shape:perf:02849", - "shape:perf:02850", - "shape:perf:02851", - "shape:perf:02852", - "shape:perf:02853", - "shape:perf:02854", - "shape:perf:02855", - "shape:perf:02856", - "shape:perf:02857", - "shape:perf:02858", - "shape:perf:02859", - "shape:perf:02860", - "shape:perf:02861", - "shape:perf:02862", - "shape:perf:02863", - "shape:perf:02864", - "shape:perf:02865", - "shape:perf:02866", - "shape:perf:02867", - "shape:perf:02868", - "shape:perf:02869", - "shape:perf:02870", - "shape:perf:02871", - "shape:perf:02872", - "shape:perf:02873", - "shape:perf:02874", - "shape:perf:02875", - "shape:perf:02876", - "shape:perf:02877", - "shape:perf:02878", - "shape:perf:02879", - "shape:perf:02880", - "shape:perf:02881", - "shape:perf:02882", - "shape:perf:02883", - "shape:perf:02884", - "shape:perf:02885", - "shape:perf:02886", - "shape:perf:02887", - "shape:perf:02888", - "shape:perf:02889", - "shape:perf:02890", - "shape:perf:02891", - "shape:perf:02892", - "shape:perf:02893", - "shape:perf:02894", - "shape:perf:02895", - "shape:perf:02896", - "shape:perf:02897", - "shape:perf:02898", - "shape:perf:02899", - "shape:perf:02900", - "shape:perf:02901", - "shape:perf:02902", - "shape:perf:02903", - "shape:perf:02904", - "shape:perf:02905", - "shape:perf:02906", - "shape:perf:02907", - "shape:perf:02908", - "shape:perf:02909", - "shape:perf:02910", - "shape:perf:02911", - "shape:perf:02912", - "shape:perf:02913", - "shape:perf:02914", - "shape:perf:02915", - "shape:perf:02916", - "shape:perf:02917", - "shape:perf:02918", - "shape:perf:02919", - "shape:perf:02920", - "shape:perf:02921", - "shape:perf:02922", - "shape:perf:02923", - "shape:perf:02924", - "shape:perf:02925", - "shape:perf:02926", - "shape:perf:02927", - "shape:perf:02928", - "shape:perf:02929", - "shape:perf:02930", - "shape:perf:02931", - "shape:perf:02932", - "shape:perf:02933", - "shape:perf:02934", - "shape:perf:02935", - "shape:perf:02936", - "shape:perf:02937", - "shape:perf:02938", - "shape:perf:02939", - "shape:perf:02940", - "shape:perf:02941", - "shape:perf:02942", - "shape:perf:02943", - "shape:perf:02944", - "shape:perf:02945", - "shape:perf:02946", - "shape:perf:02947", - "shape:perf:02948", - "shape:perf:02949", - "shape:perf:02950", - "shape:perf:02951", - "shape:perf:02952", - "shape:perf:02953", - "shape:perf:02954", - "shape:perf:02955", - "shape:perf:02956", - "shape:perf:02957", - "shape:perf:02958", - "shape:perf:02959", - "shape:perf:02960", - "shape:perf:02961", - "shape:perf:02962", - "shape:perf:02963", - "shape:perf:02964", - "shape:perf:02965", - "shape:perf:02966", - "shape:perf:02967", - "shape:perf:02968", - "shape:perf:02969", - "shape:perf:02970", - "shape:perf:02971", - "shape:perf:02972", - "shape:perf:02973", - "shape:perf:02974", - "shape:perf:02975", - "shape:perf:02976", - "shape:perf:02977", - "shape:perf:02978", - "shape:perf:02979", - "shape:perf:02980", - "shape:perf:02981", - "shape:perf:02982", - "shape:perf:02983", - "shape:perf:02984", - "shape:perf:02985", - "shape:perf:02986", - "shape:perf:02987", - "shape:perf:02988", - "shape:perf:02989", - "shape:perf:02990", - "shape:perf:02991", - "shape:perf:02992", - "shape:perf:02993", - "shape:perf:02994", - "shape:perf:02995", - "shape:perf:02996", - "shape:perf:02997", - "shape:perf:02998", - "shape:perf:02999", - "shape:perf:03000", - "shape:perf:03001", - "shape:perf:03002", - "shape:perf:03003", - "shape:perf:03004", - "shape:perf:03005", - "shape:perf:03006", - "shape:perf:03007", - "shape:perf:03008", - "shape:perf:03009", - "shape:perf:03010", - "shape:perf:03011", - "shape:perf:03012", - "shape:perf:03013", - "shape:perf:03014", - "shape:perf:03015", - "shape:perf:03016", - "shape:perf:03017", - "shape:perf:03018", - "shape:perf:03019", - "shape:perf:03020", - "shape:perf:03021", - "shape:perf:03022", - "shape:perf:03023", - "shape:perf:03024", - "shape:perf:03025", - "shape:perf:03026", - "shape:perf:03027", - "shape:perf:03028", - "shape:perf:03029", - "shape:perf:03030", - "shape:perf:03031", - "shape:perf:03032", - "shape:perf:03033", - "shape:perf:03034", - "shape:perf:03035", - "shape:perf:03036", - "shape:perf:03037", - "shape:perf:03038", - "shape:perf:03039", - "shape:perf:03040", - "shape:perf:03041", - "shape:perf:03042", - "shape:perf:03043", - "shape:perf:03044", - "shape:perf:03045", - "shape:perf:03046", - "shape:perf:03047", - "shape:perf:03048", - "shape:perf:03049", - "shape:perf:03050", - "shape:perf:03051", - "shape:perf:03052", - "shape:perf:03053", - "shape:perf:03054", - "shape:perf:03055", - "shape:perf:03056", - "shape:perf:03057", - "shape:perf:03058", - "shape:perf:03059", - "shape:perf:03060", - "shape:perf:03061", - "shape:perf:03062", - "shape:perf:03063", - "shape:perf:03064", - "shape:perf:03065", - "shape:perf:03066", - "shape:perf:03067", - "shape:perf:03068", - "shape:perf:03069", - "shape:perf:03070", - "shape:perf:03071", - "shape:perf:03072", - "shape:perf:03073", - "shape:perf:03074", - "shape:perf:03075", - "shape:perf:03076", - "shape:perf:03077", - "shape:perf:03078", - "shape:perf:03079", - "shape:perf:03080", - "shape:perf:03081", - "shape:perf:03082", - "shape:perf:03083", - "shape:perf:03084", - "shape:perf:03085", - "shape:perf:03086", - "shape:perf:03087", - "shape:perf:03088", - "shape:perf:03089", - "shape:perf:03090", - "shape:perf:03091", - "shape:perf:03092", - "shape:perf:03093", - "shape:perf:03094", - "shape:perf:03095", - "shape:perf:03096", - "shape:perf:03097", - "shape:perf:03098", - "shape:perf:03099", - "shape:perf:03100", - "shape:perf:03101", - "shape:perf:03102", - "shape:perf:03103", - "shape:perf:03104", - "shape:perf:03105", - "shape:perf:03106", - "shape:perf:03107", - "shape:perf:03108", - "shape:perf:03109", - "shape:perf:03110", - "shape:perf:03111", - "shape:perf:03112", - "shape:perf:03113", - "shape:perf:03114", - "shape:perf:03115", - "shape:perf:03116", - "shape:perf:03117", - "shape:perf:03118", - "shape:perf:03119", - "shape:perf:03120", - "shape:perf:03121", - "shape:perf:03122", - "shape:perf:03123", - "shape:perf:03124", - "shape:perf:03125", - "shape:perf:03126", - "shape:perf:03127", - "shape:perf:03128", - "shape:perf:03129", - "shape:perf:03130", - "shape:perf:03131", - "shape:perf:03132", - "shape:perf:03133", - "shape:perf:03134", - "shape:perf:03135", - "shape:perf:03136", - "shape:perf:03137", - "shape:perf:03138", - "shape:perf:03139", - "shape:perf:03140", - "shape:perf:03141", - "shape:perf:03142", - "shape:perf:03143", - "shape:perf:03144", - "shape:perf:03145", - "shape:perf:03146", - "shape:perf:03147", - "shape:perf:03148", - "shape:perf:03149", - "shape:perf:03150", - "shape:perf:03151", - "shape:perf:03152", - "shape:perf:03153", - "shape:perf:03154", - "shape:perf:03155", - "shape:perf:03156", - "shape:perf:03157", - "shape:perf:03158", - "shape:perf:03159", - "shape:perf:03160", - "shape:perf:03161", - "shape:perf:03162", - "shape:perf:03163", - "shape:perf:03164", - "shape:perf:03165", - "shape:perf:03166", - "shape:perf:03167", - "shape:perf:03168", - "shape:perf:03169", - "shape:perf:03170", - "shape:perf:03171", - "shape:perf:03172", - "shape:perf:03173", - "shape:perf:03174", - "shape:perf:03175", - "shape:perf:03176", - "shape:perf:03177", - "shape:perf:03178", - "shape:perf:03179", - "shape:perf:03180", - "shape:perf:03181", - "shape:perf:03182", - "shape:perf:03183", - "shape:perf:03184", - "shape:perf:03185", - "shape:perf:03186", - "shape:perf:03187", - "shape:perf:03188", - "shape:perf:03189", - "shape:perf:03190", - "shape:perf:03191", - "shape:perf:03192", - "shape:perf:03193", - "shape:perf:03194", - "shape:perf:03195", - "shape:perf:03196", - "shape:perf:03197", - "shape:perf:03198", - "shape:perf:03199", - "shape:perf:03200", - "shape:perf:03201", - "shape:perf:03202", - "shape:perf:03203", - "shape:perf:03204", - "shape:perf:03205", - "shape:perf:03206", - "shape:perf:03207", - "shape:perf:03208", - "shape:perf:03209", - "shape:perf:03210", - "shape:perf:03211", - "shape:perf:03212", - "shape:perf:03213", - "shape:perf:03214", - "shape:perf:03215", - "shape:perf:03216", - "shape:perf:03217", - "shape:perf:03218", - "shape:perf:03219", - "shape:perf:03220", - "shape:perf:03221", - "shape:perf:03222", - "shape:perf:03223", - "shape:perf:03224", - "shape:perf:03225", - "shape:perf:03226", - "shape:perf:03227", - "shape:perf:03228", - "shape:perf:03229", - "shape:perf:03230", - "shape:perf:03231", - "shape:perf:03232", - "shape:perf:03233", - "shape:perf:03234", - "shape:perf:03235", - "shape:perf:03236", - "shape:perf:03237", - "shape:perf:03238", - "shape:perf:03239", - "shape:perf:03240", - "shape:perf:03241", - "shape:perf:03242", - "shape:perf:03243", - "shape:perf:03244", - "shape:perf:03245", - "shape:perf:03246", - "shape:perf:03247", - "shape:perf:03248", - "shape:perf:03249", - "shape:perf:03250", - "shape:perf:03251", - "shape:perf:03252", - "shape:perf:03253", - "shape:perf:03254", - "shape:perf:03255", - "shape:perf:03256", - "shape:perf:03257", - "shape:perf:03258", - "shape:perf:03259", - "shape:perf:03260", - "shape:perf:03261", - "shape:perf:03262", - "shape:perf:03263", - "shape:perf:03264", - "shape:perf:03265", - "shape:perf:03266", - "shape:perf:03267", - "shape:perf:03268", - "shape:perf:03269", - "shape:perf:03270", - "shape:perf:03271", - "shape:perf:03272", - "shape:perf:03273", - "shape:perf:03274", - "shape:perf:03275", - "shape:perf:03276", - "shape:perf:03277", - "shape:perf:03278", - "shape:perf:03279", - "shape:perf:03280", - "shape:perf:03281", - "shape:perf:03282", - "shape:perf:03283", - "shape:perf:03284", - "shape:perf:03285", - "shape:perf:03286", - "shape:perf:03287", - "shape:perf:03288", - "shape:perf:03289", - "shape:perf:03290", - "shape:perf:03291", - "shape:perf:03292", - "shape:perf:03293", - "shape:perf:03294", - "shape:perf:03295", - "shape:perf:03296", - "shape:perf:03297", - "shape:perf:03298", - "shape:perf:03299", - "shape:perf:03300", - "shape:perf:03301", - "shape:perf:03302", - "shape:perf:03303", - "shape:perf:03304", - "shape:perf:03305", - "shape:perf:03306", - "shape:perf:03307", - "shape:perf:03308", - "shape:perf:03309", - "shape:perf:03310", - "shape:perf:03311", - "shape:perf:03312", - "shape:perf:03313", - "shape:perf:03314", - "shape:perf:03315", - "shape:perf:03316", - "shape:perf:03317", - "shape:perf:03318", - "shape:perf:03319", - "shape:perf:03320", - "shape:perf:03321", - "shape:perf:03322", - "shape:perf:03323", - "shape:perf:03324", - "shape:perf:03325", - "shape:perf:03326", - "shape:perf:03327", - "shape:perf:03328", - "shape:perf:03329", - "shape:perf:03330", - "shape:perf:03331", - "shape:perf:03332", - "shape:perf:03333", - "shape:perf:03334", - "shape:perf:03335", - "shape:perf:03336", - "shape:perf:03337", - "shape:perf:03338", - "shape:perf:03339", - "shape:perf:03340", - "shape:perf:03341", - "shape:perf:03342", - "shape:perf:03343", - "shape:perf:03344", - "shape:perf:03345", - "shape:perf:03346", - "shape:perf:03347", - "shape:perf:03348", - "shape:perf:03349", - "shape:perf:03350", - "shape:perf:03351", - "shape:perf:03352", - "shape:perf:03353", - "shape:perf:03354", - "shape:perf:03355", - "shape:perf:03356", - "shape:perf:03357", - "shape:perf:03358", - "shape:perf:03359", - "shape:perf:03360", - "shape:perf:03361", - "shape:perf:03362", - "shape:perf:03363", - "shape:perf:03364", - "shape:perf:03365", - "shape:perf:03366", - "shape:perf:03367", - "shape:perf:03368", - "shape:perf:03369", - "shape:perf:03370", - "shape:perf:03371", - "shape:perf:03372", - "shape:perf:03373", - "shape:perf:03374", - "shape:perf:03375", - "shape:perf:03376", - "shape:perf:03377", - "shape:perf:03378", - "shape:perf:03379", - "shape:perf:03380", - "shape:perf:03381", - "shape:perf:03382", - "shape:perf:03383", - "shape:perf:03384", - "shape:perf:03385", - "shape:perf:03386", - "shape:perf:03387", - "shape:perf:03388", - "shape:perf:03389", - "shape:perf:03390", - "shape:perf:03391", - "shape:perf:03392", - "shape:perf:03393", - "shape:perf:03394", - "shape:perf:03395", - "shape:perf:03396", - "shape:perf:03397", - "shape:perf:03398", - "shape:perf:03399", - "shape:perf:03400", - "shape:perf:03401", - "shape:perf:03402", - "shape:perf:03403", - "shape:perf:03404", - "shape:perf:03405", - "shape:perf:03406", - "shape:perf:03407", - "shape:perf:03408", - "shape:perf:03409", - "shape:perf:03410", - "shape:perf:03411", - "shape:perf:03412", - "shape:perf:03413", - "shape:perf:03414", - "shape:perf:03415", - "shape:perf:03416", - "shape:perf:03417", - "shape:perf:03418", - "shape:perf:03419", - "shape:perf:03420", - "shape:perf:03421", - "shape:perf:03422", - "shape:perf:03423", - "shape:perf:03424", - "shape:perf:03425", - "shape:perf:03426", - "shape:perf:03427", - "shape:perf:03428", - "shape:perf:03429", - "shape:perf:03430", - "shape:perf:03431", - "shape:perf:03432", - "shape:perf:03433", - "shape:perf:03434", - "shape:perf:03435", - "shape:perf:03436", - "shape:perf:03437", - "shape:perf:03438", - "shape:perf:03439", - "shape:perf:03440", - "shape:perf:03441", - "shape:perf:03442", - "shape:perf:03443", - "shape:perf:03444", - "shape:perf:03445", - "shape:perf:03446", - "shape:perf:03447", - "shape:perf:03448", - "shape:perf:03449", - "shape:perf:03450", - "shape:perf:03451", - "shape:perf:03452", - "shape:perf:03453", - "shape:perf:03454", - "shape:perf:03455", - "shape:perf:03456", - "shape:perf:03457", - "shape:perf:03458", - "shape:perf:03459", - "shape:perf:03460", - "shape:perf:03461", - "shape:perf:03462", - "shape:perf:03463", - "shape:perf:03464", - "shape:perf:03465", - "shape:perf:03466", - "shape:perf:03467", - "shape:perf:03468", - "shape:perf:03469", - "shape:perf:03470", - "shape:perf:03471", - "shape:perf:03472", - "shape:perf:03473", - "shape:perf:03474", - "shape:perf:03475", - "shape:perf:03476", - "shape:perf:03477", - "shape:perf:03478", - "shape:perf:03479", - "shape:perf:03480", - "shape:perf:03481", - "shape:perf:03482", - "shape:perf:03483", - "shape:perf:03484", - "shape:perf:03485", - "shape:perf:03486", - "shape:perf:03487", - "shape:perf:03488", - "shape:perf:03489", - "shape:perf:03490", - "shape:perf:03491", - "shape:perf:03492", - "shape:perf:03493", - "shape:perf:03494", - "shape:perf:03495", - "shape:perf:03496", - "shape:perf:03497", - "shape:perf:03498", - "shape:perf:03499", - "shape:perf:03500", - "shape:perf:03501", - "shape:perf:03502", - "shape:perf:03503", - "shape:perf:03504", - "shape:perf:03505", - "shape:perf:03506", - "shape:perf:03507", - "shape:perf:03508", - "shape:perf:03509", - "shape:perf:03510", - "shape:perf:03511", - "shape:perf:03512", - "shape:perf:03513", - "shape:perf:03514", - "shape:perf:03515", - "shape:perf:03516", - "shape:perf:03517", - "shape:perf:03518", - "shape:perf:03519", - "shape:perf:03520", - "shape:perf:03521", - "shape:perf:03522", - "shape:perf:03523", - "shape:perf:03524", - "shape:perf:03525", - "shape:perf:03526", - "shape:perf:03527", - "shape:perf:03528", - "shape:perf:03529", - "shape:perf:03530", - "shape:perf:03531", - "shape:perf:03532", - "shape:perf:03533", - "shape:perf:03534", - "shape:perf:03535", - "shape:perf:03536", - "shape:perf:03537", - "shape:perf:03538", - "shape:perf:03539", - "shape:perf:03540", - "shape:perf:03541", - "shape:perf:03542", - "shape:perf:03543", - "shape:perf:03544", - "shape:perf:03545", - "shape:perf:03546", - "shape:perf:03547", - "shape:perf:03548", - "shape:perf:03549", - "shape:perf:03550", - "shape:perf:03551", - "shape:perf:03552", - "shape:perf:03553", - "shape:perf:03554", - "shape:perf:03555", - "shape:perf:03556", - "shape:perf:03557", - "shape:perf:03558", - "shape:perf:03559", - "shape:perf:03560", - "shape:perf:03561", - "shape:perf:03562", - "shape:perf:03563", - "shape:perf:03564", - "shape:perf:03565", - "shape:perf:03566", - "shape:perf:03567", - "shape:perf:03568", - "shape:perf:03569", - "shape:perf:03570", - "shape:perf:03571", - "shape:perf:03572", - "shape:perf:03573", - "shape:perf:03574", - "shape:perf:03575", - "shape:perf:03576", - "shape:perf:03577", - "shape:perf:03578", - "shape:perf:03579", - "shape:perf:03580", - "shape:perf:03581", - "shape:perf:03582", - "shape:perf:03583", - "shape:perf:03584", - "shape:perf:03585", - "shape:perf:03586", - "shape:perf:03587", - "shape:perf:03588", - "shape:perf:03589", - "shape:perf:03590", - "shape:perf:03591", - "shape:perf:03592", - "shape:perf:03593", - "shape:perf:03594", - "shape:perf:03595", - "shape:perf:03596", - "shape:perf:03597", - "shape:perf:03598", - "shape:perf:03599", - "shape:perf:03600", - "shape:perf:03601", - "shape:perf:03602", - "shape:perf:03603", - "shape:perf:03604", - "shape:perf:03605", - "shape:perf:03606", - "shape:perf:03607", - "shape:perf:03608", - "shape:perf:03609", - "shape:perf:03610", - "shape:perf:03611", - "shape:perf:03612", - "shape:perf:03613", - "shape:perf:03614", - "shape:perf:03615", - "shape:perf:03616", - "shape:perf:03617", - "shape:perf:03618", - "shape:perf:03619", - "shape:perf:03620", - "shape:perf:03621", - "shape:perf:03622", - "shape:perf:03623", - "shape:perf:03624", - "shape:perf:03625", - "shape:perf:03626", - "shape:perf:03627", - "shape:perf:03628", - "shape:perf:03629", - "shape:perf:03630", - "shape:perf:03631", - "shape:perf:03632", - "shape:perf:03633", - "shape:perf:03634", - "shape:perf:03635", - "shape:perf:03636", - "shape:perf:03637", - "shape:perf:03638", - "shape:perf:03639", - "shape:perf:03640", - "shape:perf:03641", - "shape:perf:03642", - "shape:perf:03643", - "shape:perf:03644", - "shape:perf:03645", - "shape:perf:03646", - "shape:perf:03647", - "shape:perf:03648", - "shape:perf:03649", - "shape:perf:03650", - "shape:perf:03651", - "shape:perf:03652", - "shape:perf:03653", - "shape:perf:03654", - "shape:perf:03655", - "shape:perf:03656", - "shape:perf:03657", - "shape:perf:03658", - "shape:perf:03659", - "shape:perf:03660", - "shape:perf:03661", - "shape:perf:03662", - "shape:perf:03663", - "shape:perf:03664", - "shape:perf:03665", - "shape:perf:03666", - "shape:perf:03667", - "shape:perf:03668", - "shape:perf:03669", - "shape:perf:03670", - "shape:perf:03671", - "shape:perf:03672", - "shape:perf:03673", - "shape:perf:03674", - "shape:perf:03675", - "shape:perf:03676", - "shape:perf:03677", - "shape:perf:03678", - "shape:perf:03679", - "shape:perf:03680", - "shape:perf:03681", - "shape:perf:03682", - "shape:perf:03683", - "shape:perf:03684", - "shape:perf:03685", - "shape:perf:03686", - "shape:perf:03687", - "shape:perf:03688", - "shape:perf:03689", - "shape:perf:03690", - "shape:perf:03691", - "shape:perf:03692", - "shape:perf:03693", - "shape:perf:03694", - "shape:perf:03695", - "shape:perf:03696", - "shape:perf:03697", - "shape:perf:03698", - "shape:perf:03699", - "shape:perf:03700", - "shape:perf:03701", - "shape:perf:03702", - "shape:perf:03703", - "shape:perf:03704", - "shape:perf:03705", - "shape:perf:03706", - "shape:perf:03707", - "shape:perf:03708", - "shape:perf:03709", - "shape:perf:03710", - "shape:perf:03711", - "shape:perf:03712", - "shape:perf:03713", - "shape:perf:03714", - "shape:perf:03715", - "shape:perf:03716", - "shape:perf:03717", - "shape:perf:03718", - "shape:perf:03719", - "shape:perf:03720", - "shape:perf:03721", - "shape:perf:03722", - "shape:perf:03723", - "shape:perf:03724", - "shape:perf:03725", - "shape:perf:03726", - "shape:perf:03727", - "shape:perf:03728", - "shape:perf:03729", - "shape:perf:03730", - "shape:perf:03731", - "shape:perf:03732", - "shape:perf:03733", - "shape:perf:03734", - "shape:perf:03735", - "shape:perf:03736", - "shape:perf:03737", - "shape:perf:03738", - "shape:perf:03739", - "shape:perf:03740", - "shape:perf:03741", - "shape:perf:03742", - "shape:perf:03743", - "shape:perf:03744", - "shape:perf:03745", - "shape:perf:03746", - "shape:perf:03747", - "shape:perf:03748", - "shape:perf:03749", - "shape:perf:03750", - "shape:perf:03751", - "shape:perf:03752", - "shape:perf:03753", - "shape:perf:03754", - "shape:perf:03755", - "shape:perf:03756", - "shape:perf:03757", - "shape:perf:03758", - "shape:perf:03759", - "shape:perf:03760", - "shape:perf:03761", - "shape:perf:03762", - "shape:perf:03763", - "shape:perf:03764", - "shape:perf:03765", - "shape:perf:03766", - "shape:perf:03767", - "shape:perf:03768", - "shape:perf:03769", - "shape:perf:03770", - "shape:perf:03771", - "shape:perf:03772", - "shape:perf:03773", - "shape:perf:03774", - "shape:perf:03775", - "shape:perf:03776", - "shape:perf:03777", - "shape:perf:03778", - "shape:perf:03779", - "shape:perf:03780", - "shape:perf:03781", - "shape:perf:03782", - "shape:perf:03783", - "shape:perf:03784", - "shape:perf:03785", - "shape:perf:03786", - "shape:perf:03787", - "shape:perf:03788", - "shape:perf:03789", - "shape:perf:03790", - "shape:perf:03791", - "shape:perf:03792", - "shape:perf:03793", - "shape:perf:03794", - "shape:perf:03795", - "shape:perf:03796", - "shape:perf:03797", - "shape:perf:03798", - "shape:perf:03799", - "shape:perf:03800", - "shape:perf:03801", - "shape:perf:03802", - "shape:perf:03803", - "shape:perf:03804", - "shape:perf:03805", - "shape:perf:03806", - "shape:perf:03807", - "shape:perf:03808", - "shape:perf:03809", - "shape:perf:03810", - "shape:perf:03811", - "shape:perf:03812", - "shape:perf:03813", - "shape:perf:03814", - "shape:perf:03815", - "shape:perf:03816", - "shape:perf:03817", - "shape:perf:03818", - "shape:perf:03819", - "shape:perf:03820", - "shape:perf:03821", - "shape:perf:03822", - "shape:perf:03823", - "shape:perf:03824", - "shape:perf:03825", - "shape:perf:03826", - "shape:perf:03827", - "shape:perf:03828", - "shape:perf:03829", - "shape:perf:03830", - "shape:perf:03831", - "shape:perf:03832", - "shape:perf:03833", - "shape:perf:03834", - "shape:perf:03835", - "shape:perf:03836", - "shape:perf:03837", - "shape:perf:03838", - "shape:perf:03839", - "shape:perf:03840", - "shape:perf:03841", - "shape:perf:03842", - "shape:perf:03843", - "shape:perf:03844", - "shape:perf:03845", - "shape:perf:03846", - "shape:perf:03847", - "shape:perf:03848", - "shape:perf:03849", - "shape:perf:03850", - "shape:perf:03851", - "shape:perf:03852", - "shape:perf:03853", - "shape:perf:03854", - "shape:perf:03855", - "shape:perf:03856", - "shape:perf:03857", - "shape:perf:03858", - "shape:perf:03859", - "shape:perf:03860", - "shape:perf:03861", - "shape:perf:03862", - "shape:perf:03863", - "shape:perf:03864", - "shape:perf:03865", - "shape:perf:03866", - "shape:perf:03867", - "shape:perf:03868", - "shape:perf:03869", - "shape:perf:03870", - "shape:perf:03871", - "shape:perf:03872", - "shape:perf:03873", - "shape:perf:03874", - "shape:perf:03875", - "shape:perf:03876", - "shape:perf:03877", - "shape:perf:03878", - "shape:perf:03879", - "shape:perf:03880", - "shape:perf:03881", - "shape:perf:03882", - "shape:perf:03883", - "shape:perf:03884", - "shape:perf:03885", - "shape:perf:03886", - "shape:perf:03887", - "shape:perf:03888", - "shape:perf:03889", - "shape:perf:03890", - "shape:perf:03891", - "shape:perf:03892", - "shape:perf:03893", - "shape:perf:03894", - "shape:perf:03895", - "shape:perf:03896", - "shape:perf:03897", - "shape:perf:03898", - "shape:perf:03899", - "shape:perf:03900", - "shape:perf:03901", - "shape:perf:03902", - "shape:perf:03903", - "shape:perf:03904", - "shape:perf:03905", - "shape:perf:03906", - "shape:perf:03907", - "shape:perf:03908", - "shape:perf:03909", - "shape:perf:03910", - "shape:perf:03911", - "shape:perf:03912", - "shape:perf:03913", - "shape:perf:03914", - "shape:perf:03915", - "shape:perf:03916", - "shape:perf:03917", - "shape:perf:03918", - "shape:perf:03919", - "shape:perf:03920", - "shape:perf:03921", - "shape:perf:03922", - "shape:perf:03923", - "shape:perf:03924", - "shape:perf:03925", - "shape:perf:03926", - "shape:perf:03927", - "shape:perf:03928", - "shape:perf:03929", - "shape:perf:03930", - "shape:perf:03931", - "shape:perf:03932", - "shape:perf:03933", - "shape:perf:03934", - "shape:perf:03935", - "shape:perf:03936", - "shape:perf:03937", - "shape:perf:03938", - "shape:perf:03939", - "shape:perf:03940", - "shape:perf:03941", - "shape:perf:03942", - "shape:perf:03943", - "shape:perf:03944", - "shape:perf:03945", - "shape:perf:03946", - "shape:perf:03947", - "shape:perf:03948", - "shape:perf:03949", - "shape:perf:03950", - "shape:perf:03951", - "shape:perf:03952", - "shape:perf:03953", - "shape:perf:03954", - "shape:perf:03955", - "shape:perf:03956", - "shape:perf:03957", - "shape:perf:03958", - "shape:perf:03959", - "shape:perf:03960", - "shape:perf:03961", - "shape:perf:03962", - "shape:perf:03963", - "shape:perf:03964", - "shape:perf:03965", - "shape:perf:03966", - "shape:perf:03967", - "shape:perf:03968", - "shape:perf:03969", - "shape:perf:03970", - "shape:perf:03971", - "shape:perf:03972", - "shape:perf:03973", - "shape:perf:03974", - "shape:perf:03975", - "shape:perf:03976", - "shape:perf:03977", - "shape:perf:03978", - "shape:perf:03979", - "shape:perf:03980", - "shape:perf:03981", - "shape:perf:03982", - "shape:perf:03983", - "shape:perf:03984", - "shape:perf:03985", - "shape:perf:03986", - "shape:perf:03987", - "shape:perf:03988", - "shape:perf:03989", - "shape:perf:03990", - "shape:perf:03991", - "shape:perf:03992", - "shape:perf:03993", - "shape:perf:03994", - "shape:perf:03995", - "shape:perf:03996", - "shape:perf:03997", - "shape:perf:03998", - "shape:perf:03999", - "shape:perf:04000", - "shape:perf:04001", - "shape:perf:04002", - "shape:perf:04003", - "shape:perf:04004", - "shape:perf:04005", - "shape:perf:04006", - "shape:perf:04007", - "shape:perf:04008", - "shape:perf:04009", - "shape:perf:04010", - "shape:perf:04011", - "shape:perf:04012", - "shape:perf:04013", - "shape:perf:04014", - "shape:perf:04015", - "shape:perf:04016", - "shape:perf:04017", - "shape:perf:04018", - "shape:perf:04019", - "shape:perf:04020", - "shape:perf:04021", - "shape:perf:04022", - "shape:perf:04023", - "shape:perf:04024", - "shape:perf:04025", - "shape:perf:04026", - "shape:perf:04027", - "shape:perf:04028", - "shape:perf:04029", - "shape:perf:04030", - "shape:perf:04031", - "shape:perf:04032", - "shape:perf:04033", - "shape:perf:04034", - "shape:perf:04035", - "shape:perf:04036", - "shape:perf:04037", - "shape:perf:04038", - "shape:perf:04039", - "shape:perf:04040", - "shape:perf:04041", - "shape:perf:04042", - "shape:perf:04043", - "shape:perf:04044", - "shape:perf:04045", - "shape:perf:04046", - "shape:perf:04047", - "shape:perf:04048", - "shape:perf:04049", - "shape:perf:04050", - "shape:perf:04051", - "shape:perf:04052", - "shape:perf:04053", - "shape:perf:04054", - "shape:perf:04055", - "shape:perf:04056", - "shape:perf:04057", - "shape:perf:04058", - "shape:perf:04059", - "shape:perf:04060", - "shape:perf:04061", - "shape:perf:04062", - "shape:perf:04063", - "shape:perf:04064", - "shape:perf:04065", - "shape:perf:04066", - "shape:perf:04067", - "shape:perf:04068", - "shape:perf:04069", - "shape:perf:04070", - "shape:perf:04071", - "shape:perf:04072", - "shape:perf:04073", - "shape:perf:04074", - "shape:perf:04075", - "shape:perf:04076", - "shape:perf:04077", - "shape:perf:04078", - "shape:perf:04079", - "shape:perf:04080", - "shape:perf:04081", - "shape:perf:04082", - "shape:perf:04083", - "shape:perf:04084", - "shape:perf:04085", - "shape:perf:04086", - "shape:perf:04087", - "shape:perf:04088", - "shape:perf:04089", - "shape:perf:04090", - "shape:perf:04091", - "shape:perf:04092", - "shape:perf:04093", - "shape:perf:04094", - "shape:perf:04095", - "shape:perf:04096", - "shape:perf:04097", - "shape:perf:04098", - "shape:perf:04099", - "shape:perf:04100", - "shape:perf:04101", - "shape:perf:04102", - "shape:perf:04103", - "shape:perf:04104", - "shape:perf:04105", - "shape:perf:04106", - "shape:perf:04107", - "shape:perf:04108", - "shape:perf:04109", - "shape:perf:04110", - "shape:perf:04111", - "shape:perf:04112", - "shape:perf:04113", - "shape:perf:04114", - "shape:perf:04115", - "shape:perf:04116", - "shape:perf:04117", - "shape:perf:04118", - "shape:perf:04119", - "shape:perf:04120", - "shape:perf:04121", - "shape:perf:04122", - "shape:perf:04123", - "shape:perf:04124", - "shape:perf:04125", - "shape:perf:04126", - "shape:perf:04127", - "shape:perf:04128", - "shape:perf:04129", - "shape:perf:04130", - "shape:perf:04131", - "shape:perf:04132", - "shape:perf:04133", - "shape:perf:04134", - "shape:perf:04135", - "shape:perf:04136", - "shape:perf:04137", - "shape:perf:04138", - "shape:perf:04139", - "shape:perf:04140", - "shape:perf:04141", - "shape:perf:04142", - "shape:perf:04143", - "shape:perf:04144", - "shape:perf:04145", - "shape:perf:04146", - "shape:perf:04147", - "shape:perf:04148", - "shape:perf:04149", - "shape:perf:04150", - "shape:perf:04151", - "shape:perf:04152", - "shape:perf:04153", - "shape:perf:04154", - "shape:perf:04155", - "shape:perf:04156", - "shape:perf:04157", - "shape:perf:04158", - "shape:perf:04159", - "shape:perf:04160", - "shape:perf:04161", - "shape:perf:04162", - "shape:perf:04163", - "shape:perf:04164", - "shape:perf:04165", - "shape:perf:04166", - "shape:perf:04167", - "shape:perf:04168", - "shape:perf:04169", - "shape:perf:04170", - "shape:perf:04171", - "shape:perf:04172", - "shape:perf:04173", - "shape:perf:04174", - "shape:perf:04175", - "shape:perf:04176", - "shape:perf:04177", - "shape:perf:04178", - "shape:perf:04179", - "shape:perf:04180", - "shape:perf:04181", - "shape:perf:04182", - "shape:perf:04183", - "shape:perf:04184", - "shape:perf:04185", - "shape:perf:04186", - "shape:perf:04187", - "shape:perf:04188", - "shape:perf:04189", - "shape:perf:04190", - "shape:perf:04191", - "shape:perf:04192", - "shape:perf:04193", - "shape:perf:04194", - "shape:perf:04195", - "shape:perf:04196", - "shape:perf:04197", - "shape:perf:04198", - "shape:perf:04199", - "shape:perf:04200", - "shape:perf:04201", - "shape:perf:04202", - "shape:perf:04203", - "shape:perf:04204", - "shape:perf:04205", - "shape:perf:04206", - "shape:perf:04207", - "shape:perf:04208", - "shape:perf:04209", - "shape:perf:04210", - "shape:perf:04211", - "shape:perf:04212", - "shape:perf:04213", - "shape:perf:04214", - "shape:perf:04215", - "shape:perf:04216", - "shape:perf:04217", - "shape:perf:04218", - "shape:perf:04219", - "shape:perf:04220", - "shape:perf:04221", - "shape:perf:04222", - "shape:perf:04223", - "shape:perf:04224", - "shape:perf:04225", - "shape:perf:04226", - "shape:perf:04227", - "shape:perf:04228", - "shape:perf:04229", - "shape:perf:04230", - "shape:perf:04231", - "shape:perf:04232", - "shape:perf:04233", - "shape:perf:04234", - "shape:perf:04235", - "shape:perf:04236", - "shape:perf:04237", - "shape:perf:04238", - "shape:perf:04239", - "shape:perf:04240", - "shape:perf:04241", - "shape:perf:04242", - "shape:perf:04243", - "shape:perf:04244", - "shape:perf:04245", - "shape:perf:04246", - "shape:perf:04247", - "shape:perf:04248", - "shape:perf:04249", - "shape:perf:04250", - "shape:perf:04251", - "shape:perf:04252", - "shape:perf:04253", - "shape:perf:04254", - "shape:perf:04255", - "shape:perf:04256", - "shape:perf:04257", - "shape:perf:04258", - "shape:perf:04259", - "shape:perf:04260", - "shape:perf:04261", - "shape:perf:04262", - "shape:perf:04263", - "shape:perf:04264", - "shape:perf:04265", - "shape:perf:04266", - "shape:perf:04267", - "shape:perf:04268", - "shape:perf:04269", - "shape:perf:04270", - "shape:perf:04271", - "shape:perf:04272", - "shape:perf:04273", - "shape:perf:04274", - "shape:perf:04275", - "shape:perf:04276", - "shape:perf:04277", - "shape:perf:04278", - "shape:perf:04279", - "shape:perf:04280", - "shape:perf:04281", - "shape:perf:04282", - "shape:perf:04283", - "shape:perf:04284", - "shape:perf:04285", - "shape:perf:04286", - "shape:perf:04287", - "shape:perf:04288", - "shape:perf:04289", - "shape:perf:04290", - "shape:perf:04291", - "shape:perf:04292", - "shape:perf:04293", - "shape:perf:04294", - "shape:perf:04295", - "shape:perf:04296", - "shape:perf:04297", - "shape:perf:04298", - "shape:perf:04299", - "shape:perf:04300", - "shape:perf:04301", - "shape:perf:04302", - "shape:perf:04303", - "shape:perf:04304", - "shape:perf:04305", - "shape:perf:04306", - "shape:perf:04307", - "shape:perf:04308", - "shape:perf:04309", - "shape:perf:04310", - "shape:perf:04311", - "shape:perf:04312", - "shape:perf:04313", - "shape:perf:04314", - "shape:perf:04315", - "shape:perf:04316", - "shape:perf:04317", - "shape:perf:04318", - "shape:perf:04319", - "shape:perf:04320", - "shape:perf:04321", - "shape:perf:04322", - "shape:perf:04323", - "shape:perf:04324", - "shape:perf:04325", - "shape:perf:04326", - "shape:perf:04327", - "shape:perf:04328", - "shape:perf:04329", - "shape:perf:04330", - "shape:perf:04331", - "shape:perf:04332", - "shape:perf:04333", - "shape:perf:04334", - "shape:perf:04335", - "shape:perf:04336", - "shape:perf:04337", - "shape:perf:04338", - "shape:perf:04339", - "shape:perf:04340", - "shape:perf:04341", - "shape:perf:04342", - "shape:perf:04343", - "shape:perf:04344", - "shape:perf:04345", - "shape:perf:04346", - "shape:perf:04347", - "shape:perf:04348", - "shape:perf:04349", - "shape:perf:04350", - "shape:perf:04351", - "shape:perf:04352", - "shape:perf:04353", - "shape:perf:04354", - "shape:perf:04355", - "shape:perf:04356", - "shape:perf:04357", - "shape:perf:04358", - "shape:perf:04359", - "shape:perf:04360", - "shape:perf:04361", - "shape:perf:04362", - "shape:perf:04363", - "shape:perf:04364", - "shape:perf:04365", - "shape:perf:04366", - "shape:perf:04367", - "shape:perf:04368", - "shape:perf:04369", - "shape:perf:04370", - "shape:perf:04371", - "shape:perf:04372", - "shape:perf:04373", - "shape:perf:04374", - "shape:perf:04375", - "shape:perf:04376", - "shape:perf:04377", - "shape:perf:04378", - "shape:perf:04379", - "shape:perf:04380", - "shape:perf:04381", - "shape:perf:04382", - "shape:perf:04383", - "shape:perf:04384", - "shape:perf:04385", - "shape:perf:04386", - "shape:perf:04387", - "shape:perf:04388", - "shape:perf:04389", - "shape:perf:04390", - "shape:perf:04391", - "shape:perf:04392", - "shape:perf:04393", - "shape:perf:04394", - "shape:perf:04395", - "shape:perf:04396", - "shape:perf:04397", - "shape:perf:04398", - "shape:perf:04399", - "shape:perf:04400", - "shape:perf:04401", - "shape:perf:04402", - "shape:perf:04403", - "shape:perf:04404", - "shape:perf:04405", - "shape:perf:04406", - "shape:perf:04407", - "shape:perf:04408", - "shape:perf:04409", - "shape:perf:04410", - "shape:perf:04411", - "shape:perf:04412", - "shape:perf:04413", - "shape:perf:04414", - "shape:perf:04415", - "shape:perf:04416", - "shape:perf:04417", - "shape:perf:04418", - "shape:perf:04419", - "shape:perf:04420", - "shape:perf:04421", - "shape:perf:04422", - "shape:perf:04423", - "shape:perf:04424", - "shape:perf:04425", - "shape:perf:04426", - "shape:perf:04427", - "shape:perf:04428", - "shape:perf:04429", - "shape:perf:04430", - "shape:perf:04431", - "shape:perf:04432", - "shape:perf:04433", - "shape:perf:04434", - "shape:perf:04435", - "shape:perf:04436", - "shape:perf:04437", - "shape:perf:04438", - "shape:perf:04439", - "shape:perf:04440", - "shape:perf:04441", - "shape:perf:04442", - "shape:perf:04443", - "shape:perf:04444", - "shape:perf:04445", - "shape:perf:04446", - "shape:perf:04447", - "shape:perf:04448", - "shape:perf:04449", - "shape:perf:04450", - "shape:perf:04451", - "shape:perf:04452", - "shape:perf:04453", - "shape:perf:04454", - "shape:perf:04455", - "shape:perf:04456", - "shape:perf:04457", - "shape:perf:04458", - "shape:perf:04459", - "shape:perf:04460", - "shape:perf:04461", - "shape:perf:04462", - "shape:perf:04463", - "shape:perf:04464", - "shape:perf:04465", - "shape:perf:04466", - "shape:perf:04467", - "shape:perf:04468", - "shape:perf:04469", - "shape:perf:04470", - "shape:perf:04471", - "shape:perf:04472", - "shape:perf:04473", - "shape:perf:04474", - "shape:perf:04475", - "shape:perf:04476", - "shape:perf:04477", - "shape:perf:04478", - "shape:perf:04479", - "shape:perf:04480", - "shape:perf:04481", - "shape:perf:04482", - "shape:perf:04483", - "shape:perf:04484", - "shape:perf:04485", - "shape:perf:04486", - "shape:perf:04487", - "shape:perf:04488", - "shape:perf:04489", - "shape:perf:04490", - "shape:perf:04491", - "shape:perf:04492", - "shape:perf:04493", - "shape:perf:04494", - "shape:perf:04495", - "shape:perf:04496", - "shape:perf:04497", - "shape:perf:04498", - "shape:perf:04499", - "shape:perf:04500", - "shape:perf:04501", - "shape:perf:04502", - "shape:perf:04503", - "shape:perf:04504", - "shape:perf:04505", - "shape:perf:04506", - "shape:perf:04507", - "shape:perf:04508", - "shape:perf:04509", - "shape:perf:04510", - "shape:perf:04511", - "shape:perf:04512", - "shape:perf:04513", - "shape:perf:04514", - "shape:perf:04515", - "shape:perf:04516", - "shape:perf:04517", - "shape:perf:04518", - "shape:perf:04519", - "shape:perf:04520", - "shape:perf:04521", - "shape:perf:04522", - "shape:perf:04523", - "shape:perf:04524", - "shape:perf:04525", - "shape:perf:04526", - "shape:perf:04527", - "shape:perf:04528", - "shape:perf:04529", - "shape:perf:04530", - "shape:perf:04531", - "shape:perf:04532", - "shape:perf:04533", - "shape:perf:04534", - "shape:perf:04535", - "shape:perf:04536", - "shape:perf:04537", - "shape:perf:04538", - "shape:perf:04539", - "shape:perf:04540", - "shape:perf:04541", - "shape:perf:04542", - "shape:perf:04543", - "shape:perf:04544", - "shape:perf:04545", - "shape:perf:04546", - "shape:perf:04547", - "shape:perf:04548", - "shape:perf:04549", - "shape:perf:04550", - "shape:perf:04551", - "shape:perf:04552", - "shape:perf:04553", - "shape:perf:04554", - "shape:perf:04555", - "shape:perf:04556", - "shape:perf:04557", - "shape:perf:04558", - "shape:perf:04559", - "shape:perf:04560", - "shape:perf:04561", - "shape:perf:04562", - "shape:perf:04563", - "shape:perf:04564", - "shape:perf:04565", - "shape:perf:04566", - "shape:perf:04567", - "shape:perf:04568", - "shape:perf:04569", - "shape:perf:04570", - "shape:perf:04571", - "shape:perf:04572", - "shape:perf:04573", - "shape:perf:04574", - "shape:perf:04575", - "shape:perf:04576", - "shape:perf:04577", - "shape:perf:04578", - "shape:perf:04579", - "shape:perf:04580", - "shape:perf:04581", - "shape:perf:04582", - "shape:perf:04583", - "shape:perf:04584", - "shape:perf:04585", - "shape:perf:04586", - "shape:perf:04587", - "shape:perf:04588", - "shape:perf:04589", - "shape:perf:04590", - "shape:perf:04591", - "shape:perf:04592", - "shape:perf:04593", - "shape:perf:04594", - "shape:perf:04595", - "shape:perf:04596", - "shape:perf:04597", - "shape:perf:04598", - "shape:perf:04599", - "shape:perf:04600", - "shape:perf:04601", - "shape:perf:04602", - "shape:perf:04603", - "shape:perf:04604", - "shape:perf:04605", - "shape:perf:04606", - "shape:perf:04607", - "shape:perf:04608", - "shape:perf:04609", - "shape:perf:04610", - "shape:perf:04611", - "shape:perf:04612", - "shape:perf:04613", - "shape:perf:04614", - "shape:perf:04615", - "shape:perf:04616", - "shape:perf:04617", - "shape:perf:04618", - "shape:perf:04619", - "shape:perf:04620", - "shape:perf:04621", - "shape:perf:04622", - "shape:perf:04623", - "shape:perf:04624", - "shape:perf:04625", - "shape:perf:04626", - "shape:perf:04627", - "shape:perf:04628", - "shape:perf:04629", - "shape:perf:04630", - "shape:perf:04631", - "shape:perf:04632", - "shape:perf:04633", - "shape:perf:04634", - "shape:perf:04635", - "shape:perf:04636", - "shape:perf:04637", - "shape:perf:04638", - "shape:perf:04639", - "shape:perf:04640", - "shape:perf:04641", - "shape:perf:04642", - "shape:perf:04643", - "shape:perf:04644", - "shape:perf:04645", - "shape:perf:04646", - "shape:perf:04647", - "shape:perf:04648", - "shape:perf:04649", - "shape:perf:04650", - "shape:perf:04651", - "shape:perf:04652", - "shape:perf:04653", - "shape:perf:04654", - "shape:perf:04655", - "shape:perf:04656", - "shape:perf:04657", - "shape:perf:04658", - "shape:perf:04659", - "shape:perf:04660", - "shape:perf:04661", - "shape:perf:04662", - "shape:perf:04663", - "shape:perf:04664", - "shape:perf:04665", - "shape:perf:04666", - "shape:perf:04667", - "shape:perf:04668", - "shape:perf:04669", - "shape:perf:04670", - "shape:perf:04671", - "shape:perf:04672", - "shape:perf:04673", - "shape:perf:04674", - "shape:perf:04675", - "shape:perf:04676", - "shape:perf:04677", - "shape:perf:04678", - "shape:perf:04679", - "shape:perf:04680", - "shape:perf:04681", - "shape:perf:04682", - "shape:perf:04683", - "shape:perf:04684", - "shape:perf:04685", - "shape:perf:04686", - "shape:perf:04687", - "shape:perf:04688", - "shape:perf:04689", - "shape:perf:04690", - "shape:perf:04691", - "shape:perf:04692", - "shape:perf:04693", - "shape:perf:04694", - "shape:perf:04695", - "shape:perf:04696", - "shape:perf:04697", - "shape:perf:04698", - "shape:perf:04699", - "shape:perf:04700", - "shape:perf:04701", - "shape:perf:04702", - "shape:perf:04703", - "shape:perf:04704", - "shape:perf:04705", - "shape:perf:04706", - "shape:perf:04707", - "shape:perf:04708", - "shape:perf:04709", - "shape:perf:04710", - "shape:perf:04711", - "shape:perf:04712", - "shape:perf:04713", - "shape:perf:04714", - "shape:perf:04715", - "shape:perf:04716", - "shape:perf:04717", - "shape:perf:04718", - "shape:perf:04719", - "shape:perf:04720", - "shape:perf:04721", - "shape:perf:04722", - "shape:perf:04723", - "shape:perf:04724", - "shape:perf:04725", - "shape:perf:04726", - "shape:perf:04727", - "shape:perf:04728", - "shape:perf:04729", - "shape:perf:04730", - "shape:perf:04731", - "shape:perf:04732", - "shape:perf:04733", - "shape:perf:04734", - "shape:perf:04735", - "shape:perf:04736", - "shape:perf:04737", - "shape:perf:04738", - "shape:perf:04739", - "shape:perf:04740", - "shape:perf:04741", - "shape:perf:04742", - "shape:perf:04743", - "shape:perf:04744", - "shape:perf:04745", - "shape:perf:04746", - "shape:perf:04747", - "shape:perf:04748", - "shape:perf:04749", - "shape:perf:04750", - "shape:perf:04751", - "shape:perf:04752", - "shape:perf:04753", - "shape:perf:04754", - "shape:perf:04755", - "shape:perf:04756", - "shape:perf:04757", - "shape:perf:04758", - "shape:perf:04759", - "shape:perf:04760", - "shape:perf:04761", - "shape:perf:04762", - "shape:perf:04763", - "shape:perf:04764", - "shape:perf:04765", - "shape:perf:04766", - "shape:perf:04767", - "shape:perf:04768", - "shape:perf:04769", - "shape:perf:04770", - "shape:perf:04771", - "shape:perf:04772", - "shape:perf:04773", - "shape:perf:04774", - "shape:perf:04775", - "shape:perf:04776", - "shape:perf:04777", - "shape:perf:04778", - "shape:perf:04779", - "shape:perf:04780", - "shape:perf:04781", - "shape:perf:04782", - "shape:perf:04783", - "shape:perf:04784", - "shape:perf:04785", - "shape:perf:04786", - "shape:perf:04787", - "shape:perf:04788", - "shape:perf:04789", - "shape:perf:04790", - "shape:perf:04791", - "shape:perf:04792", - "shape:perf:04793", - "shape:perf:04794", - "shape:perf:04795", - "shape:perf:04796", - "shape:perf:04797", - "shape:perf:04798", - "shape:perf:04799", - "shape:perf:04800", - "shape:perf:04801", - "shape:perf:04802", - "shape:perf:04803", - "shape:perf:04804", - "shape:perf:04805", - "shape:perf:04806", - "shape:perf:04807", - "shape:perf:04808", - "shape:perf:04809", - "shape:perf:04810", - "shape:perf:04811", - "shape:perf:04812", - "shape:perf:04813", - "shape:perf:04814", - "shape:perf:04815", - "shape:perf:04816", - "shape:perf:04817", - "shape:perf:04818", - "shape:perf:04819", - "shape:perf:04820", - "shape:perf:04821", - "shape:perf:04822", - "shape:perf:04823", - "shape:perf:04824", - "shape:perf:04825", - "shape:perf:04826", - "shape:perf:04827", - "shape:perf:04828", - "shape:perf:04829", - "shape:perf:04830", - "shape:perf:04831", - "shape:perf:04832", - "shape:perf:04833", - "shape:perf:04834", - "shape:perf:04835", - "shape:perf:04836", - "shape:perf:04837", - "shape:perf:04838", - "shape:perf:04839", - "shape:perf:04840", - "shape:perf:04841", - "shape:perf:04842", - "shape:perf:04843", - "shape:perf:04844", - "shape:perf:04845", - "shape:perf:04846", - "shape:perf:04847", - "shape:perf:04848", - "shape:perf:04849", - "shape:perf:04850", - "shape:perf:04851", - "shape:perf:04852", - "shape:perf:04853", - "shape:perf:04854", - "shape:perf:04855", - "shape:perf:04856", - "shape:perf:04857", - "shape:perf:04858", - "shape:perf:04859", - "shape:perf:04860", - "shape:perf:04861", - "shape:perf:04862", - "shape:perf:04863", - "shape:perf:04864", - "shape:perf:04865", - "shape:perf:04866", - "shape:perf:04867", - "shape:perf:04868", - "shape:perf:04869", - "shape:perf:04870", - "shape:perf:04871", - "shape:perf:04872", - "shape:perf:04873", - "shape:perf:04874", - "shape:perf:04875", - "shape:perf:04876", - "shape:perf:04877", - "shape:perf:04878", - "shape:perf:04879", - "shape:perf:04880", - "shape:perf:04881", - "shape:perf:04882", - "shape:perf:04883", - "shape:perf:04884", - "shape:perf:04885", - "shape:perf:04886", - "shape:perf:04887", - "shape:perf:04888", - "shape:perf:04889", - "shape:perf:04890", - "shape:perf:04891", - "shape:perf:04892", - "shape:perf:04893", - "shape:perf:04894", - "shape:perf:04895", - "shape:perf:04896", - "shape:perf:04897", - "shape:perf:04898", - "shape:perf:04899", - "shape:perf:04900", - "shape:perf:04901", - "shape:perf:04902", - "shape:perf:04903", - "shape:perf:04904", - "shape:perf:04905", - "shape:perf:04906", - "shape:perf:04907", - "shape:perf:04908", - "shape:perf:04909", - "shape:perf:04910", - "shape:perf:04911", - "shape:perf:04912", - "shape:perf:04913", - "shape:perf:04914", - "shape:perf:04915", - "shape:perf:04916", - "shape:perf:04917", - "shape:perf:04918", - "shape:perf:04919", - "shape:perf:04920", - "shape:perf:04921", - "shape:perf:04922", - "shape:perf:04923", - "shape:perf:04924", - "shape:perf:04925", - "shape:perf:04926", - "shape:perf:04927", - "shape:perf:04928", - "shape:perf:04929", - "shape:perf:04930", - "shape:perf:04931", - "shape:perf:04932", - "shape:perf:04933", - "shape:perf:04934", - "shape:perf:04935", - "shape:perf:04936", - "shape:perf:04937", - "shape:perf:04938", - "shape:perf:04939", - "shape:perf:04940", - "shape:perf:04941", - "shape:perf:04942", - "shape:perf:04943", - "shape:perf:04944", - "shape:perf:04945", - "shape:perf:04946", - "shape:perf:04947", - "shape:perf:04948", - "shape:perf:04949", - "shape:perf:04950", - "shape:perf:04951", - "shape:perf:04952", - "shape:perf:04953", - "shape:perf:04954", - "shape:perf:04955", - "shape:perf:04956", - "shape:perf:04957", - "shape:perf:04958", - "shape:perf:04959", - "shape:perf:04960", - "shape:perf:04961", - "shape:perf:04962", - "shape:perf:04963", - "shape:perf:04964", - "shape:perf:04965", - "shape:perf:04966", - "shape:perf:04967", - "shape:perf:04968", - "shape:perf:04969", - "shape:perf:04970", - "shape:perf:04971", - "shape:perf:04972", - "shape:perf:04973", - "shape:perf:04974", - "shape:perf:04975", - "shape:perf:04976", - "shape:perf:04977", - "shape:perf:04978", - "shape:perf:04979", - "shape:perf:04980", - "shape:perf:04981", - "shape:perf:04982", - "shape:perf:04983", - "shape:perf:04984", - "shape:perf:04985", - "shape:perf:04986", - "shape:perf:04987", - "shape:perf:04988", - "shape:perf:04989", - "shape:perf:04990", - "shape:perf:04991", - "shape:perf:04992", - "shape:perf:04993", - "shape:perf:04994", - "shape:perf:04995", - "shape:perf:04996", - "shape:perf:04997", - "shape:perf:04998", - "shape:perf:04999", - "shape:perf:05000", - "shape:perf:05001", - "shape:perf:05002", - "shape:perf:05003", - "shape:perf:05004", - "shape:perf:05005", - "shape:perf:05006", - "shape:perf:05007", - "shape:perf:05008", - "shape:perf:05009", - "shape:perf:05010", - "shape:perf:05011", - "shape:perf:05012", - "shape:perf:05013", - "shape:perf:05014", - "shape:perf:05015", - "shape:perf:05016", - "shape:perf:05017", - "shape:perf:05018", - "shape:perf:05019", - "shape:perf:05020", - "shape:perf:05021", - "shape:perf:05022", - "shape:perf:05023", - "shape:perf:05024", - "shape:perf:05025", - "shape:perf:05026", - "shape:perf:05027", - "shape:perf:05028", - "shape:perf:05029", - "shape:perf:05030", - "shape:perf:05031", - "shape:perf:05032", - "shape:perf:05033", - "shape:perf:05034", - "shape:perf:05035", - "shape:perf:05036", - "shape:perf:05037", - "shape:perf:05038", - "shape:perf:05039", - "shape:perf:05040", - "shape:perf:05041", - "shape:perf:05042", - "shape:perf:05043", - "shape:perf:05044", - "shape:perf:05045", - "shape:perf:05046", - "shape:perf:05047", - "shape:perf:05048", - "shape:perf:05049", - "shape:perf:05050", - "shape:perf:05051", - "shape:perf:05052", - "shape:perf:05053", - "shape:perf:05054", - "shape:perf:05055", - "shape:perf:05056", - "shape:perf:05057", - "shape:perf:05058", - "shape:perf:05059", - "shape:perf:05060", - "shape:perf:05061", - "shape:perf:05062", - "shape:perf:05063", - "shape:perf:05064", - "shape:perf:05065", - "shape:perf:05066", - "shape:perf:05067", - "shape:perf:05068", - "shape:perf:05069", - "shape:perf:05070", - "shape:perf:05071", - "shape:perf:05072", - "shape:perf:05073", - "shape:perf:05074", - "shape:perf:05075", - "shape:perf:05076", - "shape:perf:05077", - "shape:perf:05078", - "shape:perf:05079", - "shape:perf:05080", - "shape:perf:05081", - "shape:perf:05082", - "shape:perf:05083", - "shape:perf:05084", - "shape:perf:05085", - "shape:perf:05086", - "shape:perf:05087", - "shape:perf:05088", - "shape:perf:05089", - "shape:perf:05090", - "shape:perf:05091", - "shape:perf:05092", - "shape:perf:05093", - "shape:perf:05094", - "shape:perf:05095", - "shape:perf:05096", - "shape:perf:05097", - "shape:perf:05098", - "shape:perf:05099", - "shape:perf:05100", - "shape:perf:05101", - "shape:perf:05102", - "shape:perf:05103", - "shape:perf:05104", - "shape:perf:05105", - "shape:perf:05106", - "shape:perf:05107", - "shape:perf:05108", - "shape:perf:05109", - "shape:perf:05110", - "shape:perf:05111", - "shape:perf:05112", - "shape:perf:05113", - "shape:perf:05114", - "shape:perf:05115", - "shape:perf:05116", - "shape:perf:05117", - "shape:perf:05118", - "shape:perf:05119", - "shape:perf:05120", - "shape:perf:05121", - "shape:perf:05122", - "shape:perf:05123", - "shape:perf:05124", - "shape:perf:05125", - "shape:perf:05126", - "shape:perf:05127", - "shape:perf:05128", - "shape:perf:05129", - "shape:perf:05130", - "shape:perf:05131", - "shape:perf:05132", - "shape:perf:05133", - "shape:perf:05134", - "shape:perf:05135", - "shape:perf:05136", - "shape:perf:05137", - "shape:perf:05138", - "shape:perf:05139", - "shape:perf:05140", - "shape:perf:05141", - "shape:perf:05142", - "shape:perf:05143", - "shape:perf:05144", - "shape:perf:05145", - "shape:perf:05146", - "shape:perf:05147", - "shape:perf:05148", - "shape:perf:05149", - "shape:perf:05150", - "shape:perf:05151", - "shape:perf:05152", - "shape:perf:05153", - "shape:perf:05154", - "shape:perf:05155", - "shape:perf:05156", - "shape:perf:05157", - "shape:perf:05158", - "shape:perf:05159", - "shape:perf:05160", - "shape:perf:05161", - "shape:perf:05162", - "shape:perf:05163", - "shape:perf:05164", - "shape:perf:05165", - "shape:perf:05166", - "shape:perf:05167", - "shape:perf:05168", - "shape:perf:05169", - "shape:perf:05170", - "shape:perf:05171", - "shape:perf:05172", - "shape:perf:05173", - "shape:perf:05174", - "shape:perf:05175", - "shape:perf:05176", - "shape:perf:05177", - "shape:perf:05178", - "shape:perf:05179", - "shape:perf:05180", - "shape:perf:05181", - "shape:perf:05182", - "shape:perf:05183", - "shape:perf:05184", - "shape:perf:05185", - "shape:perf:05186", - "shape:perf:05187", - "shape:perf:05188", - "shape:perf:05189", - "shape:perf:05190", - "shape:perf:05191", - "shape:perf:05192", - "shape:perf:05193", - "shape:perf:05194", - "shape:perf:05195", - "shape:perf:05196", - "shape:perf:05197", - "shape:perf:05198", - "shape:perf:05199", - "shape:perf:05200", - "shape:perf:05201", - "shape:perf:05202", - "shape:perf:05203", - "shape:perf:05204", - "shape:perf:05205", - "shape:perf:05206", - "shape:perf:05207", - "shape:perf:05208", - "shape:perf:05209", - "shape:perf:05210", - "shape:perf:05211", - "shape:perf:05212", - "shape:perf:05213", - "shape:perf:05214", - "shape:perf:05215", - "shape:perf:05216", - "shape:perf:05217", - "shape:perf:05218", - "shape:perf:05219", - "shape:perf:05220", - "shape:perf:05221", - "shape:perf:05222", - "shape:perf:05223", - "shape:perf:05224", - "shape:perf:05225", - "shape:perf:05226", - "shape:perf:05227", - "shape:perf:05228", - "shape:perf:05229", - "shape:perf:05230", - "shape:perf:05231", - "shape:perf:05232", - "shape:perf:05233", - "shape:perf:05234", - "shape:perf:05235", - "shape:perf:05236", - "shape:perf:05237", - "shape:perf:05238", - "shape:perf:05239", - "shape:perf:05240", - "shape:perf:05241", - "shape:perf:05242", - "shape:perf:05243", - "shape:perf:05244", - "shape:perf:05245", - "shape:perf:05246", - "shape:perf:05247", - "shape:perf:05248", - "shape:perf:05249", - "shape:perf:05250", - "shape:perf:05251", - "shape:perf:05252", - "shape:perf:05253", - "shape:perf:05254", - "shape:perf:05255", - "shape:perf:05256", - "shape:perf:05257", - "shape:perf:05258", - "shape:perf:05259", - "shape:perf:05260", - "shape:perf:05261", - "shape:perf:05262", - "shape:perf:05263", - "shape:perf:05264", - "shape:perf:05265", - "shape:perf:05266", - "shape:perf:05267", - "shape:perf:05268", - "shape:perf:05269", - "shape:perf:05270", - "shape:perf:05271", - "shape:perf:05272", - "shape:perf:05273", - "shape:perf:05274", - "shape:perf:05275", - "shape:perf:05276", - "shape:perf:05277", - "shape:perf:05278", - "shape:perf:05279", - "shape:perf:05280", - "shape:perf:05281", - "shape:perf:05282", - "shape:perf:05283", - "shape:perf:05284", - "shape:perf:05285", - "shape:perf:05286", - "shape:perf:05287", - "shape:perf:05288", - "shape:perf:05289", - "shape:perf:05290", - "shape:perf:05291", - "shape:perf:05292", - "shape:perf:05293", - "shape:perf:05294", - "shape:perf:05295", - "shape:perf:05296", - "shape:perf:05297", - "shape:perf:05298", - "shape:perf:05299", - "shape:perf:05300", - "shape:perf:05301", - "shape:perf:05302", - "shape:perf:05303", - "shape:perf:05304", - "shape:perf:05305", - "shape:perf:05306", - "shape:perf:05307", - "shape:perf:05308", - "shape:perf:05309", - "shape:perf:05310", - "shape:perf:05311", - "shape:perf:05312", - "shape:perf:05313", - "shape:perf:05314", - "shape:perf:05315", - "shape:perf:05316", - "shape:perf:05317", - "shape:perf:05318", - "shape:perf:05319", - "shape:perf:05320", - "shape:perf:05321", - "shape:perf:05322", - "shape:perf:05323", - "shape:perf:05324", - "shape:perf:05325", - "shape:perf:05326", - "shape:perf:05327", - "shape:perf:05328", - "shape:perf:05329", - "shape:perf:05330", - "shape:perf:05331", - "shape:perf:05332", - "shape:perf:05333", - "shape:perf:05334", - "shape:perf:05335", - "shape:perf:05336", - "shape:perf:05337", - "shape:perf:05338", - "shape:perf:05339", - "shape:perf:05340", - "shape:perf:05341", - "shape:perf:05342", - "shape:perf:05343", - "shape:perf:05344", - "shape:perf:05345", - "shape:perf:05346", - "shape:perf:05347", - "shape:perf:05348", - "shape:perf:05349", - "shape:perf:05350", - "shape:perf:05351", - "shape:perf:05352", - "shape:perf:05353", - "shape:perf:05354", - "shape:perf:05355", - "shape:perf:05356", - "shape:perf:05357", - "shape:perf:05358", - "shape:perf:05359", - "shape:perf:05360", - "shape:perf:05361", - "shape:perf:05362", - "shape:perf:05363", - "shape:perf:05364", - "shape:perf:05365", - "shape:perf:05366", - "shape:perf:05367", - "shape:perf:05368", - "shape:perf:05369", - "shape:perf:05370", - "shape:perf:05371", - "shape:perf:05372", - "shape:perf:05373", - "shape:perf:05374", - "shape:perf:05375", - "shape:perf:05376", - "shape:perf:05377", - "shape:perf:05378", - "shape:perf:05379", - "shape:perf:05380", - "shape:perf:05381", - "shape:perf:05382", - "shape:perf:05383", - "shape:perf:05384", - "shape:perf:05385", - "shape:perf:05386", - "shape:perf:05387", - "shape:perf:05388", - "shape:perf:05389", - "shape:perf:05390", - "shape:perf:05391", - "shape:perf:05392", - "shape:perf:05393", - "shape:perf:05394", - "shape:perf:05395", - "shape:perf:05396", - "shape:perf:05397", - "shape:perf:05398", - "shape:perf:05399", - "shape:perf:05400", - "shape:perf:05401", - "shape:perf:05402", - "shape:perf:05403", - "shape:perf:05404", - "shape:perf:05405", - "shape:perf:05406", - "shape:perf:05407", - "shape:perf:05408", - "shape:perf:05409", - "shape:perf:05410", - "shape:perf:05411", - "shape:perf:05412", - "shape:perf:05413", - "shape:perf:05414", - "shape:perf:05415", - "shape:perf:05416", - "shape:perf:05417", - "shape:perf:05418", - "shape:perf:05419", - "shape:perf:05420", - "shape:perf:05421", - "shape:perf:05422", - "shape:perf:05423", - "shape:perf:05424", - "shape:perf:05425", - "shape:perf:05426", - "shape:perf:05427", - "shape:perf:05428", - "shape:perf:05429", - "shape:perf:05430", - "shape:perf:05431", - "shape:perf:05432", - "shape:perf:05433", - "shape:perf:05434", - "shape:perf:05435", - "shape:perf:05436", - "shape:perf:05437", - "shape:perf:05438", - "shape:perf:05439", - "shape:perf:05440", - "shape:perf:05441", - "shape:perf:05442", - "shape:perf:05443", - "shape:perf:05444", - "shape:perf:05445", - "shape:perf:05446", - "shape:perf:05447", - "shape:perf:05448", - "shape:perf:05449", - "shape:perf:05450", - "shape:perf:05451", - "shape:perf:05452", - "shape:perf:05453", - "shape:perf:05454", - "shape:perf:05455", - "shape:perf:05456", - "shape:perf:05457", - "shape:perf:05458", - "shape:perf:05459", - "shape:perf:05460", - "shape:perf:05461", - "shape:perf:05462", - "shape:perf:05463", - "shape:perf:05464", - "shape:perf:05465", - "shape:perf:05466", - "shape:perf:05467", - "shape:perf:05468", - "shape:perf:05469", - "shape:perf:05470", - "shape:perf:05471", - "shape:perf:05472", - "shape:perf:05473", - "shape:perf:05474", - "shape:perf:05475", - "shape:perf:05476", - "shape:perf:05477", - "shape:perf:05478", - "shape:perf:05479", - "shape:perf:05480", - "shape:perf:05481", - "shape:perf:05482", - "shape:perf:05483", - "shape:perf:05484", - "shape:perf:05485", - "shape:perf:05486", - "shape:perf:05487", - "shape:perf:05488", - "shape:perf:05489", - "shape:perf:05490", - "shape:perf:05491", - "shape:perf:05492", - "shape:perf:05493", - "shape:perf:05494", - "shape:perf:05495", - "shape:perf:05496", - "shape:perf:05497", - "shape:perf:05498", - "shape:perf:05499", - "shape:perf:05500", - "shape:perf:05501", - "shape:perf:05502", - "shape:perf:05503", - "shape:perf:05504", - "shape:perf:05505", - "shape:perf:05506", - "shape:perf:05507", - "shape:perf:05508", - "shape:perf:05509", - "shape:perf:05510", - "shape:perf:05511", - "shape:perf:05512", - "shape:perf:05513", - "shape:perf:05514", - "shape:perf:05515", - "shape:perf:05516", - "shape:perf:05517", - "shape:perf:05518", - "shape:perf:05519", - "shape:perf:05520", - "shape:perf:05521", - "shape:perf:05522", - "shape:perf:05523", - "shape:perf:05524", - "shape:perf:05525", - "shape:perf:05526", - "shape:perf:05527", - "shape:perf:05528", - "shape:perf:05529", - "shape:perf:05530", - "shape:perf:05531", - "shape:perf:05532", - "shape:perf:05533", - "shape:perf:05534", - "shape:perf:05535", - "shape:perf:05536", - "shape:perf:05537", - "shape:perf:05538", - "shape:perf:05539", - "shape:perf:05540", - "shape:perf:05541", - "shape:perf:05542", - "shape:perf:05543", - "shape:perf:05544", - "shape:perf:05545", - "shape:perf:05546", - "shape:perf:05547", - "shape:perf:05548", - "shape:perf:05549", - "shape:perf:05550", - "shape:perf:05551", - "shape:perf:05552", - "shape:perf:05553", - "shape:perf:05554", - "shape:perf:05555", - "shape:perf:05556", - "shape:perf:05557", - "shape:perf:05558", - "shape:perf:05559", - "shape:perf:05560", - "shape:perf:05561", - "shape:perf:05562", - "shape:perf:05563", - "shape:perf:05564", - "shape:perf:05565", - "shape:perf:05566", - "shape:perf:05567", - "shape:perf:05568", - "shape:perf:05569", - "shape:perf:05570", - "shape:perf:05571", - "shape:perf:05572", - "shape:perf:05573", - "shape:perf:05574", - "shape:perf:05575", - "shape:perf:05576", - "shape:perf:05577", - "shape:perf:05578", - "shape:perf:05579", - "shape:perf:05580", - "shape:perf:05581", - "shape:perf:05582", - "shape:perf:05583", - "shape:perf:05584", - "shape:perf:05585", - "shape:perf:05586", - "shape:perf:05587", - "shape:perf:05588", - "shape:perf:05589", - "shape:perf:05590", - "shape:perf:05591", - "shape:perf:05592", - "shape:perf:05593", - "shape:perf:05594", - "shape:perf:05595", - "shape:perf:05596", - "shape:perf:05597", - "shape:perf:05598", - "shape:perf:05599", - "shape:perf:05600", - "shape:perf:05601", - "shape:perf:05602", - "shape:perf:05603", - "shape:perf:05604", - "shape:perf:05605", - "shape:perf:05606", - "shape:perf:05607", - "shape:perf:05608", - "shape:perf:05609", - "shape:perf:05610", - "shape:perf:05611", - "shape:perf:05612", - "shape:perf:05613", - "shape:perf:05614", - "shape:perf:05615", - "shape:perf:05616", - "shape:perf:05617", - "shape:perf:05618", - "shape:perf:05619", - "shape:perf:05620", - "shape:perf:05621", - "shape:perf:05622", - "shape:perf:05623", - "shape:perf:05624", - "shape:perf:05625", - "shape:perf:05626", - "shape:perf:05627", - "shape:perf:05628", - "shape:perf:05629", - "shape:perf:05630", - "shape:perf:05631", - "shape:perf:05632", - "shape:perf:05633", - "shape:perf:05634", - "shape:perf:05635", - "shape:perf:05636", - "shape:perf:05637", - "shape:perf:05638", - "shape:perf:05639", - "shape:perf:05640", - "shape:perf:05641", - "shape:perf:05642", - "shape:perf:05643", - "shape:perf:05644", - "shape:perf:05645", - "shape:perf:05646", - "shape:perf:05647", - "shape:perf:05648", - "shape:perf:05649", - "shape:perf:05650", - "shape:perf:05651", - "shape:perf:05652", - "shape:perf:05653", - "shape:perf:05654", - "shape:perf:05655", - "shape:perf:05656", - "shape:perf:05657", - "shape:perf:05658", - "shape:perf:05659", - "shape:perf:05660", - "shape:perf:05661", - "shape:perf:05662", - "shape:perf:05663", - "shape:perf:05664", - "shape:perf:05665", - "shape:perf:05666", - "shape:perf:05667", - "shape:perf:05668", - "shape:perf:05669", - "shape:perf:05670", - "shape:perf:05671", - "shape:perf:05672", - "shape:perf:05673", - "shape:perf:05674", - "shape:perf:05675", - "shape:perf:05676", - "shape:perf:05677", - "shape:perf:05678", - "shape:perf:05679", - "shape:perf:05680", - "shape:perf:05681", - "shape:perf:05682", - "shape:perf:05683", - "shape:perf:05684", - "shape:perf:05685", - "shape:perf:05686", - "shape:perf:05687", - "shape:perf:05688", - "shape:perf:05689", - "shape:perf:05690", - "shape:perf:05691", - "shape:perf:05692", - "shape:perf:05693", - "shape:perf:05694", - "shape:perf:05695", - "shape:perf:05696", - "shape:perf:05697", - "shape:perf:05698", - "shape:perf:05699", - "shape:perf:05700", - "shape:perf:05701", - "shape:perf:05702", - "shape:perf:05703", - "shape:perf:05704", - "shape:perf:05705", - "shape:perf:05706", - "shape:perf:05707", - "shape:perf:05708", - "shape:perf:05709", - "shape:perf:05710", - "shape:perf:05711", - "shape:perf:05712", - "shape:perf:05713", - "shape:perf:05714", - "shape:perf:05715", - "shape:perf:05716", - "shape:perf:05717", - "shape:perf:05718", - "shape:perf:05719", - "shape:perf:05720", - "shape:perf:05721", - "shape:perf:05722", - "shape:perf:05723", - "shape:perf:05724", - "shape:perf:05725", - "shape:perf:05726", - "shape:perf:05727", - "shape:perf:05728", - "shape:perf:05729", - "shape:perf:05730", - "shape:perf:05731", - "shape:perf:05732", - "shape:perf:05733", - "shape:perf:05734", - "shape:perf:05735", - "shape:perf:05736", - "shape:perf:05737", - "shape:perf:05738", - "shape:perf:05739", - "shape:perf:05740", - "shape:perf:05741", - "shape:perf:05742", - "shape:perf:05743", - "shape:perf:05744", - "shape:perf:05745", - "shape:perf:05746", - "shape:perf:05747", - "shape:perf:05748", - "shape:perf:05749", - "shape:perf:05750", - "shape:perf:05751", - "shape:perf:05752", - "shape:perf:05753", - "shape:perf:05754", - "shape:perf:05755", - "shape:perf:05756", - "shape:perf:05757", - "shape:perf:05758", - "shape:perf:05759", - "shape:perf:05760", - "shape:perf:05761", - "shape:perf:05762", - "shape:perf:05763", - "shape:perf:05764", - "shape:perf:05765", - "shape:perf:05766", - "shape:perf:05767", - "shape:perf:05768", - "shape:perf:05769", - "shape:perf:05770", - "shape:perf:05771", - "shape:perf:05772", - "shape:perf:05773", - "shape:perf:05774", - "shape:perf:05775", - "shape:perf:05776", - "shape:perf:05777", - "shape:perf:05778", - "shape:perf:05779", - "shape:perf:05780", - "shape:perf:05781", - "shape:perf:05782", - "shape:perf:05783", - "shape:perf:05784", - "shape:perf:05785", - "shape:perf:05786", - "shape:perf:05787", - "shape:perf:05788", - "shape:perf:05789", - "shape:perf:05790", - "shape:perf:05791", - "shape:perf:05792", - "shape:perf:05793", - "shape:perf:05794", - "shape:perf:05795", - "shape:perf:05796", - "shape:perf:05797", - "shape:perf:05798", - "shape:perf:05799", - "shape:perf:05800", - "shape:perf:05801", - "shape:perf:05802", - "shape:perf:05803", - "shape:perf:05804", - "shape:perf:05805", - "shape:perf:05806", - "shape:perf:05807", - "shape:perf:05808", - "shape:perf:05809", - "shape:perf:05810", - "shape:perf:05811", - "shape:perf:05812", - "shape:perf:05813", - "shape:perf:05814", - "shape:perf:05815", - "shape:perf:05816", - "shape:perf:05817", - "shape:perf:05818", - "shape:perf:05819", - "shape:perf:05820", - "shape:perf:05821", - "shape:perf:05822", - "shape:perf:05823", - "shape:perf:05824", - "shape:perf:05825", - "shape:perf:05826", - "shape:perf:05827", - "shape:perf:05828", - "shape:perf:05829", - "shape:perf:05830", - "shape:perf:05831", - "shape:perf:05832", - "shape:perf:05833", - "shape:perf:05834", - "shape:perf:05835", - "shape:perf:05836", - "shape:perf:05837", - "shape:perf:05838", - "shape:perf:05839", - "shape:perf:05840", - "shape:perf:05841", - "shape:perf:05842", - "shape:perf:05843", - "shape:perf:05844", - "shape:perf:05845", - "shape:perf:05846", - "shape:perf:05847", - "shape:perf:05848", - "shape:perf:05849", - "shape:perf:05850", - "shape:perf:05851", - "shape:perf:05852", - "shape:perf:05853", - "shape:perf:05854", - "shape:perf:05855", - "shape:perf:05856", - "shape:perf:05857", - "shape:perf:05858", - "shape:perf:05859", - "shape:perf:05860", - "shape:perf:05861", - "shape:perf:05862", - "shape:perf:05863", - "shape:perf:05864", - "shape:perf:05865", - "shape:perf:05866", - "shape:perf:05867", - "shape:perf:05868", - "shape:perf:05869", - "shape:perf:05870", - "shape:perf:05871", - "shape:perf:05872", - "shape:perf:05873", - "shape:perf:05874", - "shape:perf:05875", - "shape:perf:05876", - "shape:perf:05877", - "shape:perf:05878", - "shape:perf:05879", - "shape:perf:05880", - "shape:perf:05881", - "shape:perf:05882", - "shape:perf:05883", - "shape:perf:05884", - "shape:perf:05885", - "shape:perf:05886", - "shape:perf:05887", - "shape:perf:05888", - "shape:perf:05889", - "shape:perf:05890", - "shape:perf:05891", - "shape:perf:05892", - "shape:perf:05893", - "shape:perf:05894", - "shape:perf:05895", - "shape:perf:05896", - "shape:perf:05897", - "shape:perf:05898", - "shape:perf:05899", - "shape:perf:05900", - "shape:perf:05901", - "shape:perf:05902", - "shape:perf:05903", - "shape:perf:05904", - "shape:perf:05905", - "shape:perf:05906", - "shape:perf:05907", - "shape:perf:05908", - "shape:perf:05909", - "shape:perf:05910", - "shape:perf:05911", - "shape:perf:05912", - "shape:perf:05913", - "shape:perf:05914", - "shape:perf:05915", - "shape:perf:05916", - "shape:perf:05917", - "shape:perf:05918", - "shape:perf:05919", - "shape:perf:05920", - "shape:perf:05921", - "shape:perf:05922", - "shape:perf:05923", - "shape:perf:05924", - "shape:perf:05925", - "shape:perf:05926", - "shape:perf:05927", - "shape:perf:05928", - "shape:perf:05929", - "shape:perf:05930", - "shape:perf:05931", - "shape:perf:05932", - "shape:perf:05933", - "shape:perf:05934", - "shape:perf:05935", - "shape:perf:05936", - "shape:perf:05937", - "shape:perf:05938", - "shape:perf:05939", - "shape:perf:05940", - "shape:perf:05941", - "shape:perf:05942", - "shape:perf:05943", - "shape:perf:05944", - "shape:perf:05945", - "shape:perf:05946", - "shape:perf:05947", - "shape:perf:05948", - "shape:perf:05949", - "shape:perf:05950", - "shape:perf:05951", - "shape:perf:05952", - "shape:perf:05953", - "shape:perf:05954", - "shape:perf:05955", - "shape:perf:05956", - "shape:perf:05957", - "shape:perf:05958", - "shape:perf:05959", - "shape:perf:05960", - "shape:perf:05961", - "shape:perf:05962", - "shape:perf:05963", - "shape:perf:05964", - "shape:perf:05965", - "shape:perf:05966", - "shape:perf:05967", - "shape:perf:05968", - "shape:perf:05969", - "shape:perf:05970", - "shape:perf:05971", - "shape:perf:05972", - "shape:perf:05973", - "shape:perf:05974", - "shape:perf:05975", - "shape:perf:05976", - "shape:perf:05977", - "shape:perf:05978", - "shape:perf:05979", - "shape:perf:05980", - "shape:perf:05981", - "shape:perf:05982", - "shape:perf:05983", - "shape:perf:05984", - "shape:perf:05985", - "shape:perf:05986", - "shape:perf:05987", - "shape:perf:05988", - "shape:perf:05989", - "shape:perf:05990", - "shape:perf:05991", - "shape:perf:05992", - "shape:perf:05993", - "shape:perf:05994", - "shape:perf:05995", - "shape:perf:05996", - "shape:perf:05997", - "shape:perf:05998", - "shape:perf:05999", - "shape:perf:06000", - "shape:perf:06001", - "shape:perf:06002", - "shape:perf:06003", - "shape:perf:06004", - "shape:perf:06005", - "shape:perf:06006", - "shape:perf:06007", - "shape:perf:06008", - "shape:perf:06009", - "shape:perf:06010", - "shape:perf:06011", - "shape:perf:06012", - "shape:perf:06013", - "shape:perf:06014", - "shape:perf:06015", - "shape:perf:06016", - "shape:perf:06017", - "shape:perf:06018", - "shape:perf:06019", - "shape:perf:06020", - "shape:perf:06021", - "shape:perf:06022", - "shape:perf:06023", - "shape:perf:06024", - "shape:perf:06025", - "shape:perf:06026", - "shape:perf:06027", - "shape:perf:06028", - "shape:perf:06029", - "shape:perf:06030", - "shape:perf:06031", - "shape:perf:06032", - "shape:perf:06033", - "shape:perf:06034", - "shape:perf:06035", - "shape:perf:06036", - "shape:perf:06037", - "shape:perf:06038", - "shape:perf:06039", - "shape:perf:06040", - "shape:perf:06041", - "shape:perf:06042", - "shape:perf:06043", - "shape:perf:06044", - "shape:perf:06045", - "shape:perf:06046", - "shape:perf:06047", - "shape:perf:06048", - "shape:perf:06049", - "shape:perf:06050", - "shape:perf:06051", - "shape:perf:06052", - "shape:perf:06053", - "shape:perf:06054", - "shape:perf:06055", - "shape:perf:06056", - "shape:perf:06057", - "shape:perf:06058", - "shape:perf:06059", - "shape:perf:06060", - "shape:perf:06061", - "shape:perf:06062", - "shape:perf:06063", - "shape:perf:06064", - "shape:perf:06065", - "shape:perf:06066", - "shape:perf:06067", - "shape:perf:06068", - "shape:perf:06069", - "shape:perf:06070", - "shape:perf:06071", - "shape:perf:06072", - "shape:perf:06073", - "shape:perf:06074", - "shape:perf:06075", - "shape:perf:06076", - "shape:perf:06077", - "shape:perf:06078", - "shape:perf:06079", - "shape:perf:06080", - "shape:perf:06081", - "shape:perf:06082", - "shape:perf:06083", - "shape:perf:06084", - "shape:perf:06085", - "shape:perf:06086", - "shape:perf:06087", - "shape:perf:06088", - "shape:perf:06089", - "shape:perf:06090", - "shape:perf:06091", - "shape:perf:06092", - "shape:perf:06093", - "shape:perf:06094", - "shape:perf:06095", - "shape:perf:06096", - "shape:perf:06097", - "shape:perf:06098", - "shape:perf:06099", - "shape:perf:06100", - "shape:perf:06101", - "shape:perf:06102", - "shape:perf:06103", - "shape:perf:06104", - "shape:perf:06105", - "shape:perf:06106", - "shape:perf:06107", - "shape:perf:06108", - "shape:perf:06109", - "shape:perf:06110", - "shape:perf:06111", - "shape:perf:06112", - "shape:perf:06113", - "shape:perf:06114", - "shape:perf:06115", - "shape:perf:06116", - "shape:perf:06117", - "shape:perf:06118", - "shape:perf:06119", - "shape:perf:06120", - "shape:perf:06121", - "shape:perf:06122", - "shape:perf:06123", - "shape:perf:06124", - "shape:perf:06125", - "shape:perf:06126", - "shape:perf:06127", - "shape:perf:06128", - "shape:perf:06129", - "shape:perf:06130", - "shape:perf:06131", - "shape:perf:06132", - "shape:perf:06133", - "shape:perf:06134", - "shape:perf:06135", - "shape:perf:06136", - "shape:perf:06137", - "shape:perf:06138", - "shape:perf:06139", - "shape:perf:06140", - "shape:perf:06141", - "shape:perf:06142", - "shape:perf:06143", - "shape:perf:06144", - "shape:perf:06145", - "shape:perf:06146", - "shape:perf:06147", - "shape:perf:06148", - "shape:perf:06149", - "shape:perf:06150", - "shape:perf:06151", - "shape:perf:06152", - "shape:perf:06153", - "shape:perf:06154", - "shape:perf:06155", - "shape:perf:06156", - "shape:perf:06157", - "shape:perf:06158", - "shape:perf:06159", - "shape:perf:06160", - "shape:perf:06161", - "shape:perf:06162", - "shape:perf:06163", - "shape:perf:06164", - "shape:perf:06165", - "shape:perf:06166", - "shape:perf:06167", - "shape:perf:06168", - "shape:perf:06169", - "shape:perf:06170", - "shape:perf:06171", - "shape:perf:06172", - "shape:perf:06173", - "shape:perf:06174", - "shape:perf:06175", - "shape:perf:06176", - "shape:perf:06177", - "shape:perf:06178", - "shape:perf:06179", - "shape:perf:06180", - "shape:perf:06181", - "shape:perf:06182", - "shape:perf:06183", - "shape:perf:06184", - "shape:perf:06185", - "shape:perf:06186", - "shape:perf:06187", - "shape:perf:06188", - "shape:perf:06189", - "shape:perf:06190", - "shape:perf:06191", - "shape:perf:06192", - "shape:perf:06193", - "shape:perf:06194", - "shape:perf:06195", - "shape:perf:06196", - "shape:perf:06197", - "shape:perf:06198", - "shape:perf:06199", - "shape:perf:06200", - "shape:perf:06201", - "shape:perf:06202", - "shape:perf:06203", - "shape:perf:06204", - "shape:perf:06205", - "shape:perf:06206", - "shape:perf:06207", - "shape:perf:06208", - "shape:perf:06209", - "shape:perf:06210", - "shape:perf:06211", - "shape:perf:06212", - "shape:perf:06213", - "shape:perf:06214", - "shape:perf:06215", - "shape:perf:06216", - "shape:perf:06217", - "shape:perf:06218", - "shape:perf:06219", - "shape:perf:06220", - "shape:perf:06221", - "shape:perf:06222", - "shape:perf:06223", - "shape:perf:06224", - "shape:perf:06225", - "shape:perf:06226", - "shape:perf:06227", - "shape:perf:06228", - "shape:perf:06229", - "shape:perf:06230", - "shape:perf:06231", - "shape:perf:06232", - "shape:perf:06233", - "shape:perf:06234", - "shape:perf:06235", - "shape:perf:06236", - "shape:perf:06237", - "shape:perf:06238", - "shape:perf:06239", - "shape:perf:06240", - "shape:perf:06241", - "shape:perf:06242", - "shape:perf:06243", - "shape:perf:06244", - "shape:perf:06245", - "shape:perf:06246", - "shape:perf:06247", - "shape:perf:06248", - "shape:perf:06249", - "shape:perf:06250", - "shape:perf:06251", - "shape:perf:06252", - "shape:perf:06253", - "shape:perf:06254", - "shape:perf:06255", - "shape:perf:06256", - "shape:perf:06257", - "shape:perf:06258", - "shape:perf:06259", - "shape:perf:06260", - "shape:perf:06261", - "shape:perf:06262", - "shape:perf:06263", - "shape:perf:06264", - "shape:perf:06265", - "shape:perf:06266", - "shape:perf:06267", - "shape:perf:06268", - "shape:perf:06269", - "shape:perf:06270", - "shape:perf:06271", - "shape:perf:06272", - "shape:perf:06273", - "shape:perf:06274", - "shape:perf:06275", - "shape:perf:06276", - "shape:perf:06277", - "shape:perf:06278", - "shape:perf:06279", - "shape:perf:06280", - "shape:perf:06281", - "shape:perf:06282", - "shape:perf:06283", - "shape:perf:06284", - "shape:perf:06285", - "shape:perf:06286", - "shape:perf:06287", - "shape:perf:06288", - "shape:perf:06289", - "shape:perf:06290", - "shape:perf:06291", - "shape:perf:06292", - "shape:perf:06293", - "shape:perf:06294", - "shape:perf:06295", - "shape:perf:06296", - "shape:perf:06297", - "shape:perf:06298", - "shape:perf:06299", - "shape:perf:06300", - "shape:perf:06301", - "shape:perf:06302", - "shape:perf:06303", - "shape:perf:06304", - "shape:perf:06305", - "shape:perf:06306", - "shape:perf:06307", - "shape:perf:06308", - "shape:perf:06309", - "shape:perf:06310", - "shape:perf:06311", - "shape:perf:06312", - "shape:perf:06313", - "shape:perf:06314", - "shape:perf:06315", - "shape:perf:06316", - "shape:perf:06317", - "shape:perf:06318", - "shape:perf:06319", - "shape:perf:06320", - "shape:perf:06321", - "shape:perf:06322", - "shape:perf:06323", - "shape:perf:06324", - "shape:perf:06325", - "shape:perf:06326", - "shape:perf:06327", - "shape:perf:06328", - "shape:perf:06329", - "shape:perf:06330", - "shape:perf:06331", - "shape:perf:06332", - "shape:perf:06333", - "shape:perf:06334", - "shape:perf:06335", - "shape:perf:06336", - "shape:perf:06337", - "shape:perf:06338", - "shape:perf:06339", - "shape:perf:06340", - "shape:perf:06341", - "shape:perf:06342", - "shape:perf:06343", - "shape:perf:06344", - "shape:perf:06345", - "shape:perf:06346", - "shape:perf:06347", - "shape:perf:06348", - "shape:perf:06349", - "shape:perf:06350", - "shape:perf:06351", - "shape:perf:06352", - "shape:perf:06353", - "shape:perf:06354", - "shape:perf:06355", - "shape:perf:06356", - "shape:perf:06357", - "shape:perf:06358", - "shape:perf:06359", - "shape:perf:06360", - "shape:perf:06361", - "shape:perf:06362", - "shape:perf:06363", - "shape:perf:06364", - "shape:perf:06365", - "shape:perf:06366", - "shape:perf:06367", - "shape:perf:06368", - "shape:perf:06369", - "shape:perf:06370", - "shape:perf:06371", - "shape:perf:06372", - "shape:perf:06373", - "shape:perf:06374", - "shape:perf:06375", - "shape:perf:06376", - "shape:perf:06377", - "shape:perf:06378", - "shape:perf:06379", - "shape:perf:06380", - "shape:perf:06381", - "shape:perf:06382", - "shape:perf:06383", - "shape:perf:06384", - "shape:perf:06385", - "shape:perf:06386", - "shape:perf:06387", - "shape:perf:06388", - "shape:perf:06389", - "shape:perf:06390", - "shape:perf:06391", - "shape:perf:06392", - "shape:perf:06393", - "shape:perf:06394", - "shape:perf:06395", - "shape:perf:06396", - "shape:perf:06397", - "shape:perf:06398", - "shape:perf:06399", - "shape:perf:06400", - "shape:perf:06401", - "shape:perf:06402", - "shape:perf:06403", - "shape:perf:06404", - "shape:perf:06405", - "shape:perf:06406", - "shape:perf:06407", - "shape:perf:06408", - "shape:perf:06409", - "shape:perf:06410", - "shape:perf:06411", - "shape:perf:06412", - "shape:perf:06413", - "shape:perf:06414", - "shape:perf:06415", - "shape:perf:06416", - "shape:perf:06417", - "shape:perf:06418", - "shape:perf:06419", - "shape:perf:06420", - "shape:perf:06421", - "shape:perf:06422", - "shape:perf:06423", - "shape:perf:06424", - "shape:perf:06425", - "shape:perf:06426", - "shape:perf:06427", - "shape:perf:06428", - "shape:perf:06429", - "shape:perf:06430", - "shape:perf:06431", - "shape:perf:06432", - "shape:perf:06433", - "shape:perf:06434", - "shape:perf:06435", - "shape:perf:06436", - "shape:perf:06437", - "shape:perf:06438", - "shape:perf:06439", - "shape:perf:06440", - "shape:perf:06441", - "shape:perf:06442", - "shape:perf:06443", - "shape:perf:06444", - "shape:perf:06445", - "shape:perf:06446", - "shape:perf:06447", - "shape:perf:06448", - "shape:perf:06449", - "shape:perf:06450", - "shape:perf:06451", - "shape:perf:06452", - "shape:perf:06453", - "shape:perf:06454", - "shape:perf:06455", - "shape:perf:06456", - "shape:perf:06457", - "shape:perf:06458", - "shape:perf:06459", - "shape:perf:06460", - "shape:perf:06461", - "shape:perf:06462", - "shape:perf:06463", - "shape:perf:06464", - "shape:perf:06465", - "shape:perf:06466", - "shape:perf:06467", - "shape:perf:06468", - "shape:perf:06469", - "shape:perf:06470", - "shape:perf:06471", - "shape:perf:06472", - "shape:perf:06473", - "shape:perf:06474", - "shape:perf:06475", - "shape:perf:06476", - "shape:perf:06477", - "shape:perf:06478", - "shape:perf:06479", - "shape:perf:06480", - "shape:perf:06481", - "shape:perf:06482", - "shape:perf:06483", - "shape:perf:06484", - "shape:perf:06485", - "shape:perf:06486", - "shape:perf:06487", - "shape:perf:06488", - "shape:perf:06489", - "shape:perf:06490", - "shape:perf:06491", - "shape:perf:06492", - "shape:perf:06493", - "shape:perf:06494", - "shape:perf:06495", - "shape:perf:06496", - "shape:perf:06497", - "shape:perf:06498", - "shape:perf:06499", - "shape:perf:06500", - "shape:perf:06501", - "shape:perf:06502", - "shape:perf:06503", - "shape:perf:06504", - "shape:perf:06505", - "shape:perf:06506", - "shape:perf:06507", - "shape:perf:06508", - "shape:perf:06509", - "shape:perf:06510", - "shape:perf:06511", - "shape:perf:06512", - "shape:perf:06513", - "shape:perf:06514", - "shape:perf:06515", - "shape:perf:06516", - "shape:perf:06517", - "shape:perf:06518", - "shape:perf:06519", - "shape:perf:06520", - "shape:perf:06521", - "shape:perf:06522", - "shape:perf:06523", - "shape:perf:06524", - "shape:perf:06525", - "shape:perf:06526", - "shape:perf:06527", - "shape:perf:06528", - "shape:perf:06529", - "shape:perf:06530", - "shape:perf:06531", - "shape:perf:06532", - "shape:perf:06533", - "shape:perf:06534", - "shape:perf:06535", - "shape:perf:06536", - "shape:perf:06537", - "shape:perf:06538", - "shape:perf:06539", - "shape:perf:06540", - "shape:perf:06541", - "shape:perf:06542", - "shape:perf:06543", - "shape:perf:06544", - "shape:perf:06545", - "shape:perf:06546", - "shape:perf:06547", - "shape:perf:06548", - "shape:perf:06549", - "shape:perf:06550", - "shape:perf:06551", - "shape:perf:06552", - "shape:perf:06553", - "shape:perf:06554", - "shape:perf:06555", - "shape:perf:06556", - "shape:perf:06557", - "shape:perf:06558", - "shape:perf:06559", - "shape:perf:06560", - "shape:perf:06561", - "shape:perf:06562", - "shape:perf:06563", - "shape:perf:06564", - "shape:perf:06565", - "shape:perf:06566", - "shape:perf:06567", - "shape:perf:06568", - "shape:perf:06569", - "shape:perf:06570", - "shape:perf:06571", - "shape:perf:06572", - "shape:perf:06573", - "shape:perf:06574", - "shape:perf:06575", - "shape:perf:06576", - "shape:perf:06577", - "shape:perf:06578", - "shape:perf:06579", - "shape:perf:06580", - "shape:perf:06581", - "shape:perf:06582", - "shape:perf:06583", - "shape:perf:06584", - "shape:perf:06585", - "shape:perf:06586", - "shape:perf:06587", - "shape:perf:06588", - "shape:perf:06589", - "shape:perf:06590", - "shape:perf:06591", - "shape:perf:06592", - "shape:perf:06593", - "shape:perf:06594", - "shape:perf:06595", - "shape:perf:06596", - "shape:perf:06597", - "shape:perf:06598", - "shape:perf:06599", - "shape:perf:06600", - "shape:perf:06601", - "shape:perf:06602", - "shape:perf:06603", - "shape:perf:06604", - "shape:perf:06605", - "shape:perf:06606", - "shape:perf:06607", - "shape:perf:06608", - "shape:perf:06609", - "shape:perf:06610", - "shape:perf:06611", - "shape:perf:06612", - "shape:perf:06613", - "shape:perf:06614", - "shape:perf:06615", - "shape:perf:06616", - "shape:perf:06617", - "shape:perf:06618", - "shape:perf:06619", - "shape:perf:06620", - "shape:perf:06621", - "shape:perf:06622", - "shape:perf:06623", - "shape:perf:06624", - "shape:perf:06625", - "shape:perf:06626", - "shape:perf:06627", - "shape:perf:06628", - "shape:perf:06629", - "shape:perf:06630", - "shape:perf:06631", - "shape:perf:06632", - "shape:perf:06633", - "shape:perf:06634", - "shape:perf:06635", - "shape:perf:06636", - "shape:perf:06637", - "shape:perf:06638", - "shape:perf:06639", - "shape:perf:06640", - "shape:perf:06641", - "shape:perf:06642", - "shape:perf:06643", - "shape:perf:06644", - "shape:perf:06645", - "shape:perf:06646", - "shape:perf:06647", - "shape:perf:06648", - "shape:perf:06649", - "shape:perf:06650", - "shape:perf:06651", - "shape:perf:06652", - "shape:perf:06653", - "shape:perf:06654", - "shape:perf:06655", - "shape:perf:06656", - "shape:perf:06657", - "shape:perf:06658", - "shape:perf:06659", - "shape:perf:06660", - "shape:perf:06661", - "shape:perf:06662", - "shape:perf:06663", - "shape:perf:06664", - "shape:perf:06665", - "shape:perf:06666", - "shape:perf:06667", - "shape:perf:06668", - "shape:perf:06669", - "shape:perf:06670", - "shape:perf:06671", - "shape:perf:06672", - "shape:perf:06673", - "shape:perf:06674", - "shape:perf:06675", - "shape:perf:06676", - "shape:perf:06677", - "shape:perf:06678", - "shape:perf:06679", - "shape:perf:06680", - "shape:perf:06681", - "shape:perf:06682", - "shape:perf:06683", - "shape:perf:06684", - "shape:perf:06685", - "shape:perf:06686", - "shape:perf:06687", - "shape:perf:06688", - "shape:perf:06689", - "shape:perf:06690", - "shape:perf:06691", - "shape:perf:06692", - "shape:perf:06693", - "shape:perf:06694", - "shape:perf:06695", - "shape:perf:06696", - "shape:perf:06697", - "shape:perf:06698", - "shape:perf:06699", - "shape:perf:06700", - "shape:perf:06701", - "shape:perf:06702", - "shape:perf:06703", - "shape:perf:06704", - "shape:perf:06705", - "shape:perf:06706", - "shape:perf:06707", - "shape:perf:06708", - "shape:perf:06709", - "shape:perf:06710", - "shape:perf:06711", - "shape:perf:06712", - "shape:perf:06713", - "shape:perf:06714", - "shape:perf:06715", - "shape:perf:06716", - "shape:perf:06717", - "shape:perf:06718", - "shape:perf:06719", - "shape:perf:06720", - "shape:perf:06721", - "shape:perf:06722", - "shape:perf:06723", - "shape:perf:06724", - "shape:perf:06725", - "shape:perf:06726", - "shape:perf:06727", - "shape:perf:06728", - "shape:perf:06729", - "shape:perf:06730", - "shape:perf:06731", - "shape:perf:06732", - "shape:perf:06733", - "shape:perf:06734", - "shape:perf:06735", - "shape:perf:06736", - "shape:perf:06737", - "shape:perf:06738", - "shape:perf:06739", - "shape:perf:06740", - "shape:perf:06741", - "shape:perf:06742", - "shape:perf:06743", - "shape:perf:06744", - "shape:perf:06745", - "shape:perf:06746", - "shape:perf:06747", - "shape:perf:06748", - "shape:perf:06749", - "shape:perf:06750", - "shape:perf:06751", - "shape:perf:06752", - "shape:perf:06753", - "shape:perf:06754", - "shape:perf:06755", - "shape:perf:06756", - "shape:perf:06757", - "shape:perf:06758", - "shape:perf:06759", - "shape:perf:06760", - "shape:perf:06761", - "shape:perf:06762", - "shape:perf:06763", - "shape:perf:06764", - "shape:perf:06765", - "shape:perf:06766", - "shape:perf:06767", - "shape:perf:06768", - "shape:perf:06769", - "shape:perf:06770", - "shape:perf:06771", - "shape:perf:06772", - "shape:perf:06773", - "shape:perf:06774", - "shape:perf:06775", - "shape:perf:06776", - "shape:perf:06777", - "shape:perf:06778", - "shape:perf:06779", - "shape:perf:06780", - "shape:perf:06781", - "shape:perf:06782", - "shape:perf:06783", - "shape:perf:06784", - "shape:perf:06785", - "shape:perf:06786", - "shape:perf:06787", - "shape:perf:06788", - "shape:perf:06789", - "shape:perf:06790", - "shape:perf:06791", - "shape:perf:06792", - "shape:perf:06793", - "shape:perf:06794", - "shape:perf:06795", - "shape:perf:06796", - "shape:perf:06797", - "shape:perf:06798", - "shape:perf:06799", - "shape:perf:06800", - "shape:perf:06801", - "shape:perf:06802", - "shape:perf:06803", - "shape:perf:06804", - "shape:perf:06805", - "shape:perf:06806", - "shape:perf:06807", - "shape:perf:06808", - "shape:perf:06809", - "shape:perf:06810", - "shape:perf:06811", - "shape:perf:06812", - "shape:perf:06813", - "shape:perf:06814", - "shape:perf:06815", - "shape:perf:06816", - "shape:perf:06817", - "shape:perf:06818", - "shape:perf:06819", - "shape:perf:06820", - "shape:perf:06821", - "shape:perf:06822", - "shape:perf:06823", - "shape:perf:06824", - "shape:perf:06825", - "shape:perf:06826", - "shape:perf:06827", - "shape:perf:06828", - "shape:perf:06829", - "shape:perf:06830", - "shape:perf:06831", - "shape:perf:06832", - "shape:perf:06833", - "shape:perf:06834", - "shape:perf:06835", - "shape:perf:06836", - "shape:perf:06837", - "shape:perf:06838", - "shape:perf:06839", - "shape:perf:06840", - "shape:perf:06841", - "shape:perf:06842", - "shape:perf:06843", - "shape:perf:06844", - "shape:perf:06845", - "shape:perf:06846", - "shape:perf:06847", - "shape:perf:06848", - "shape:perf:06849", - "shape:perf:06850", - "shape:perf:06851", - "shape:perf:06852", - "shape:perf:06853", - "shape:perf:06854", - "shape:perf:06855", - "shape:perf:06856", - "shape:perf:06857", - "shape:perf:06858", - "shape:perf:06859", - "shape:perf:06860", - "shape:perf:06861", - "shape:perf:06862", - "shape:perf:06863", - "shape:perf:06864", - "shape:perf:06865", - "shape:perf:06866", - "shape:perf:06867", - "shape:perf:06868", - "shape:perf:06869", - "shape:perf:06870", - "shape:perf:06871", - "shape:perf:06872", - "shape:perf:06873", - "shape:perf:06874", - "shape:perf:06875", - "shape:perf:06876", - "shape:perf:06877", - "shape:perf:06878", - "shape:perf:06879", - "shape:perf:06880", - "shape:perf:06881", - "shape:perf:06882", - "shape:perf:06883", - "shape:perf:06884", - "shape:perf:06885", - "shape:perf:06886", - "shape:perf:06887", - "shape:perf:06888", - "shape:perf:06889", - "shape:perf:06890", - "shape:perf:06891", - "shape:perf:06892", - "shape:perf:06893", - "shape:perf:06894", - "shape:perf:06895", - "shape:perf:06896", - "shape:perf:06897", - "shape:perf:06898", - "shape:perf:06899", - "shape:perf:06900", - "shape:perf:06901", - "shape:perf:06902", - "shape:perf:06903", - "shape:perf:06904", - "shape:perf:06905", - "shape:perf:06906", - "shape:perf:06907", - "shape:perf:06908", - "shape:perf:06909", - "shape:perf:06910", - "shape:perf:06911", - "shape:perf:06912", - "shape:perf:06913", - "shape:perf:06914", - "shape:perf:06915", - "shape:perf:06916", - "shape:perf:06917", - "shape:perf:06918", - "shape:perf:06919", - "shape:perf:06920", - "shape:perf:06921", - "shape:perf:06922", - "shape:perf:06923", - "shape:perf:06924", - "shape:perf:06925", - "shape:perf:06926", - "shape:perf:06927", - "shape:perf:06928", - "shape:perf:06929", - "shape:perf:06930", - "shape:perf:06931", - "shape:perf:06932", - "shape:perf:06933", - "shape:perf:06934", - "shape:perf:06935", - "shape:perf:06936", - "shape:perf:06937", - "shape:perf:06938", - "shape:perf:06939", - "shape:perf:06940", - "shape:perf:06941", - "shape:perf:06942", - "shape:perf:06943", - "shape:perf:06944", - "shape:perf:06945", - "shape:perf:06946", - "shape:perf:06947", - "shape:perf:06948", - "shape:perf:06949", - "shape:perf:06950", - "shape:perf:06951", - "shape:perf:06952", - "shape:perf:06953", - "shape:perf:06954", - "shape:perf:06955", - "shape:perf:06956", - "shape:perf:06957", - "shape:perf:06958", - "shape:perf:06959", - "shape:perf:06960", - "shape:perf:06961", - "shape:perf:06962", - "shape:perf:06963", - "shape:perf:06964", - "shape:perf:06965", - "shape:perf:06966", - "shape:perf:06967", - "shape:perf:06968", - "shape:perf:06969", - "shape:perf:06970", - "shape:perf:06971", - "shape:perf:06972", - "shape:perf:06973", - "shape:perf:06974", - "shape:perf:06975", - "shape:perf:06976", - "shape:perf:06977", - "shape:perf:06978", - "shape:perf:06979", - "shape:perf:06980", - "shape:perf:06981", - "shape:perf:06982", - "shape:perf:06983", - "shape:perf:06984", - "shape:perf:06985", - "shape:perf:06986", - "shape:perf:06987", - "shape:perf:06988", - "shape:perf:06989", - "shape:perf:06990", - "shape:perf:06991", - "shape:perf:06992", - "shape:perf:06993", - "shape:perf:06994", - "shape:perf:06995", - "shape:perf:06996", - "shape:perf:06997", - "shape:perf:06998", - "shape:perf:06999", - "shape:perf:07000", - "shape:perf:07001", - "shape:perf:07002", - "shape:perf:07003", - "shape:perf:07004", - "shape:perf:07005", - "shape:perf:07006", - "shape:perf:07007", - "shape:perf:07008", - "shape:perf:07009", - "shape:perf:07010", - "shape:perf:07011", - "shape:perf:07012", - "shape:perf:07013", - "shape:perf:07014", - "shape:perf:07015", - "shape:perf:07016", - "shape:perf:07017", - "shape:perf:07018", - "shape:perf:07019", - "shape:perf:07020", - "shape:perf:07021", - "shape:perf:07022", - "shape:perf:07023", - "shape:perf:07024", - "shape:perf:07025", - "shape:perf:07026", - "shape:perf:07027", - "shape:perf:07028", - "shape:perf:07029", - "shape:perf:07030", - "shape:perf:07031", - "shape:perf:07032", - "shape:perf:07033", - "shape:perf:07034", - "shape:perf:07035", - "shape:perf:07036", - "shape:perf:07037", - "shape:perf:07038", - "shape:perf:07039", - "shape:perf:07040", - "shape:perf:07041", - "shape:perf:07042", - "shape:perf:07043", - "shape:perf:07044", - "shape:perf:07045", - "shape:perf:07046", - "shape:perf:07047", - "shape:perf:07048", - "shape:perf:07049", - "shape:perf:07050", - "shape:perf:07051", - "shape:perf:07052", - "shape:perf:07053", - "shape:perf:07054", - "shape:perf:07055", - "shape:perf:07056", - "shape:perf:07057", - "shape:perf:07058", - "shape:perf:07059", - "shape:perf:07060", - "shape:perf:07061", - "shape:perf:07062", - "shape:perf:07063", - "shape:perf:07064", - "shape:perf:07065", - "shape:perf:07066", - "shape:perf:07067", - "shape:perf:07068", - "shape:perf:07069", - "shape:perf:07070", - "shape:perf:07071", - "shape:perf:07072", - "shape:perf:07073", - "shape:perf:07074", - "shape:perf:07075", - "shape:perf:07076", - "shape:perf:07077", - "shape:perf:07078", - "shape:perf:07079", - "shape:perf:07080", - "shape:perf:07081", - "shape:perf:07082", - "shape:perf:07083", - "shape:perf:07084", - "shape:perf:07085", - "shape:perf:07086", - "shape:perf:07087", - "shape:perf:07088", - "shape:perf:07089", - "shape:perf:07090", - "shape:perf:07091", - "shape:perf:07092", - "shape:perf:07093", - "shape:perf:07094", - "shape:perf:07095", - "shape:perf:07096", - "shape:perf:07097", - "shape:perf:07098", - "shape:perf:07099", - "shape:perf:07100", - "shape:perf:07101", - "shape:perf:07102", - "shape:perf:07103", - "shape:perf:07104", - "shape:perf:07105", - "shape:perf:07106", - "shape:perf:07107", - "shape:perf:07108", - "shape:perf:07109", - "shape:perf:07110", - "shape:perf:07111", - "shape:perf:07112", - "shape:perf:07113", - "shape:perf:07114", - "shape:perf:07115", - "shape:perf:07116", - "shape:perf:07117", - "shape:perf:07118", - "shape:perf:07119", - "shape:perf:07120", - "shape:perf:07121", - "shape:perf:07122", - "shape:perf:07123", - "shape:perf:07124", - "shape:perf:07125", - "shape:perf:07126", - "shape:perf:07127", - "shape:perf:07128", - "shape:perf:07129", - "shape:perf:07130", - "shape:perf:07131", - "shape:perf:07132", - "shape:perf:07133", - "shape:perf:07134", - "shape:perf:07135", - "shape:perf:07136", - "shape:perf:07137", - "shape:perf:07138", - "shape:perf:07139", - "shape:perf:07140", - "shape:perf:07141", - "shape:perf:07142", - "shape:perf:07143", - "shape:perf:07144", - "shape:perf:07145", - "shape:perf:07146", - "shape:perf:07147", - "shape:perf:07148", - "shape:perf:07149", - "shape:perf:07150", - "shape:perf:07151", - "shape:perf:07152", - "shape:perf:07153", - "shape:perf:07154", - "shape:perf:07155", - "shape:perf:07156", - "shape:perf:07157", - "shape:perf:07158", - "shape:perf:07159", - "shape:perf:07160", - "shape:perf:07161", - "shape:perf:07162", - "shape:perf:07163", - "shape:perf:07164", - "shape:perf:07165", - "shape:perf:07166", - "shape:perf:07167", - "shape:perf:07168", - "shape:perf:07169", - "shape:perf:07170", - "shape:perf:07171", - "shape:perf:07172", - "shape:perf:07173", - "shape:perf:07174", - "shape:perf:07175", - "shape:perf:07176", - "shape:perf:07177", - "shape:perf:07178", - "shape:perf:07179", - "shape:perf:07180", - "shape:perf:07181", - "shape:perf:07182", - "shape:perf:07183", - "shape:perf:07184", - "shape:perf:07185", - "shape:perf:07186", - "shape:perf:07187", - "shape:perf:07188", - "shape:perf:07189", - "shape:perf:07190", - "shape:perf:07191", - "shape:perf:07192", - "shape:perf:07193", - "shape:perf:07194", - "shape:perf:07195", - "shape:perf:07196", - "shape:perf:07197", - "shape:perf:07198", - "shape:perf:07199", - "shape:perf:07200", - "shape:perf:07201", - "shape:perf:07202", - "shape:perf:07203", - "shape:perf:07204", - "shape:perf:07205", - "shape:perf:07206", - "shape:perf:07207", - "shape:perf:07208", - "shape:perf:07209", - "shape:perf:07210", - "shape:perf:07211", - "shape:perf:07212", - "shape:perf:07213", - "shape:perf:07214", - "shape:perf:07215", - "shape:perf:07216", - "shape:perf:07217", - "shape:perf:07218", - "shape:perf:07219", - "shape:perf:07220", - "shape:perf:07221", - "shape:perf:07222", - "shape:perf:07223", - "shape:perf:07224", - "shape:perf:07225", - "shape:perf:07226", - "shape:perf:07227", - "shape:perf:07228", - "shape:perf:07229", - "shape:perf:07230", - "shape:perf:07231", - "shape:perf:07232", - "shape:perf:07233", - "shape:perf:07234", - "shape:perf:07235", - "shape:perf:07236", - "shape:perf:07237", - "shape:perf:07238", - "shape:perf:07239", - "shape:perf:07240", - "shape:perf:07241", - "shape:perf:07242", - "shape:perf:07243", - "shape:perf:07244", - "shape:perf:07245", - "shape:perf:07246", - "shape:perf:07247", - "shape:perf:07248", - "shape:perf:07249", - "shape:perf:07250", - "shape:perf:07251", - "shape:perf:07252", - "shape:perf:07253", - "shape:perf:07254", - "shape:perf:07255", - "shape:perf:07256", - "shape:perf:07257", - "shape:perf:07258", - "shape:perf:07259", - "shape:perf:07260", - "shape:perf:07261", - "shape:perf:07262", - "shape:perf:07263", - "shape:perf:07264", - "shape:perf:07265", - "shape:perf:07266", - "shape:perf:07267", - "shape:perf:07268", - "shape:perf:07269", - "shape:perf:07270", - "shape:perf:07271", - "shape:perf:07272", - "shape:perf:07273", - "shape:perf:07274", - "shape:perf:07275", - "shape:perf:07276", - "shape:perf:07277", - "shape:perf:07278", - "shape:perf:07279", - "shape:perf:07280", - "shape:perf:07281", - "shape:perf:07282", - "shape:perf:07283", - "shape:perf:07284", - "shape:perf:07285", - "shape:perf:07286", - "shape:perf:07287", - "shape:perf:07288", - "shape:perf:07289", - "shape:perf:07290", - "shape:perf:07291", - "shape:perf:07292", - "shape:perf:07293", - "shape:perf:07294", - "shape:perf:07295", - "shape:perf:07296", - "shape:perf:07297", - "shape:perf:07298", - "shape:perf:07299", - "shape:perf:07300", - "shape:perf:07301", - "shape:perf:07302", - "shape:perf:07303", - "shape:perf:07304", - "shape:perf:07305", - "shape:perf:07306", - "shape:perf:07307", - "shape:perf:07308", - "shape:perf:07309", - "shape:perf:07310", - "shape:perf:07311", - "shape:perf:07312", - "shape:perf:07313", - "shape:perf:07314", - "shape:perf:07315", - "shape:perf:07316", - "shape:perf:07317", - "shape:perf:07318", - "shape:perf:07319", - "shape:perf:07320", - "shape:perf:07321", - "shape:perf:07322", - "shape:perf:07323", - "shape:perf:07324", - "shape:perf:07325", - "shape:perf:07326", - "shape:perf:07327", - "shape:perf:07328", - "shape:perf:07329", - "shape:perf:07330", - "shape:perf:07331", - "shape:perf:07332", - "shape:perf:07333", - "shape:perf:07334", - "shape:perf:07335", - "shape:perf:07336", - "shape:perf:07337", - "shape:perf:07338", - "shape:perf:07339", - "shape:perf:07340", - "shape:perf:07341", - "shape:perf:07342", - "shape:perf:07343", - "shape:perf:07344", - "shape:perf:07345", - "shape:perf:07346", - "shape:perf:07347", - "shape:perf:07348", - "shape:perf:07349", - "shape:perf:07350", - "shape:perf:07351", - "shape:perf:07352", - "shape:perf:07353", - "shape:perf:07354", - "shape:perf:07355", - "shape:perf:07356", - "shape:perf:07357", - "shape:perf:07358", - "shape:perf:07359", - "shape:perf:07360", - "shape:perf:07361", - "shape:perf:07362", - "shape:perf:07363", - "shape:perf:07364", - "shape:perf:07365", - "shape:perf:07366", - "shape:perf:07367", - "shape:perf:07368", - "shape:perf:07369", - "shape:perf:07370", - "shape:perf:07371", - "shape:perf:07372", - "shape:perf:07373", - "shape:perf:07374", - "shape:perf:07375", - "shape:perf:07376", - "shape:perf:07377", - "shape:perf:07378", - "shape:perf:07379", - "shape:perf:07380", - "shape:perf:07381", - "shape:perf:07382", - "shape:perf:07383", - "shape:perf:07384", - "shape:perf:07385", - "shape:perf:07386", - "shape:perf:07387", - "shape:perf:07388", - "shape:perf:07389", - "shape:perf:07390", - "shape:perf:07391", - "shape:perf:07392", - "shape:perf:07393", - "shape:perf:07394", - "shape:perf:07395", - "shape:perf:07396", - "shape:perf:07397", - "shape:perf:07398", - "shape:perf:07399", - "shape:perf:07400", - "shape:perf:07401", - "shape:perf:07402", - "shape:perf:07403", - "shape:perf:07404", - "shape:perf:07405", - "shape:perf:07406", - "shape:perf:07407", - "shape:perf:07408", - "shape:perf:07409", - "shape:perf:07410", - "shape:perf:07411", - "shape:perf:07412", - "shape:perf:07413", - "shape:perf:07414", - "shape:perf:07415", - "shape:perf:07416", - "shape:perf:07417", - "shape:perf:07418", - "shape:perf:07419", - "shape:perf:07420", - "shape:perf:07421", - "shape:perf:07422", - "shape:perf:07423", - "shape:perf:07424", - "shape:perf:07425", - "shape:perf:07426", - "shape:perf:07427", - "shape:perf:07428", - "shape:perf:07429", - "shape:perf:07430", - "shape:perf:07431", - "shape:perf:07432", - "shape:perf:07433", - "shape:perf:07434", - "shape:perf:07435", - "shape:perf:07436", - "shape:perf:07437", - "shape:perf:07438", - "shape:perf:07439", - "shape:perf:07440", - "shape:perf:07441", - "shape:perf:07442", - "shape:perf:07443", - "shape:perf:07444", - "shape:perf:07445", - "shape:perf:07446", - "shape:perf:07447", - "shape:perf:07448", - "shape:perf:07449", - "shape:perf:07450", - "shape:perf:07451", - "shape:perf:07452", - "shape:perf:07453", - "shape:perf:07454", - "shape:perf:07455", - "shape:perf:07456", - "shape:perf:07457", - "shape:perf:07458", - "shape:perf:07459", - "shape:perf:07460", - "shape:perf:07461", - "shape:perf:07462", - "shape:perf:07463", - "shape:perf:07464", - "shape:perf:07465", - "shape:perf:07466", - "shape:perf:07467", - "shape:perf:07468", - "shape:perf:07469", - "shape:perf:07470", - "shape:perf:07471", - "shape:perf:07472", - "shape:perf:07473", - "shape:perf:07474", - "shape:perf:07475", - "shape:perf:07476", - "shape:perf:07477", - "shape:perf:07478", - "shape:perf:07479", - "shape:perf:07480", - "shape:perf:07481", - "shape:perf:07482", - "shape:perf:07483", - "shape:perf:07484", - "shape:perf:07485", - "shape:perf:07486", - "shape:perf:07487", - "shape:perf:07488", - "shape:perf:07489", - "shape:perf:07490", - "shape:perf:07491", - "shape:perf:07492", - "shape:perf:07493", - "shape:perf:07494", - "shape:perf:07495", - "shape:perf:07496", - "shape:perf:07497", - "shape:perf:07498", - "shape:perf:07499", - "shape:perf:07500", - "shape:perf:07501", - "shape:perf:07502", - "shape:perf:07503", - "shape:perf:07504", - "shape:perf:07505", - "shape:perf:07506", - "shape:perf:07507", - "shape:perf:07508", - "shape:perf:07509", - "shape:perf:07510", - "shape:perf:07511", - "shape:perf:07512", - "shape:perf:07513", - "shape:perf:07514", - "shape:perf:07515", - "shape:perf:07516", - "shape:perf:07517", - "shape:perf:07518", - "shape:perf:07519", - "shape:perf:07520", - "shape:perf:07521", - "shape:perf:07522", - "shape:perf:07523", - "shape:perf:07524", - "shape:perf:07525", - "shape:perf:07526", - "shape:perf:07527", - "shape:perf:07528", - "shape:perf:07529", - "shape:perf:07530", - "shape:perf:07531", - "shape:perf:07532", - "shape:perf:07533", - "shape:perf:07534", - "shape:perf:07535", - "shape:perf:07536", - "shape:perf:07537", - "shape:perf:07538", - "shape:perf:07539", - "shape:perf:07540", - "shape:perf:07541", - "shape:perf:07542", - "shape:perf:07543", - "shape:perf:07544", - "shape:perf:07545", - "shape:perf:07546", - "shape:perf:07547", - "shape:perf:07548", - "shape:perf:07549", - "shape:perf:07550", - "shape:perf:07551", - "shape:perf:07552", - "shape:perf:07553", - "shape:perf:07554", - "shape:perf:07555", - "shape:perf:07556", - "shape:perf:07557", - "shape:perf:07558", - "shape:perf:07559", - "shape:perf:07560", - "shape:perf:07561", - "shape:perf:07562", - "shape:perf:07563", - "shape:perf:07564", - "shape:perf:07565", - "shape:perf:07566", - "shape:perf:07567", - "shape:perf:07568", - "shape:perf:07569", - "shape:perf:07570", - "shape:perf:07571", - "shape:perf:07572", - "shape:perf:07573", - "shape:perf:07574", - "shape:perf:07575", - "shape:perf:07576", - "shape:perf:07577", - "shape:perf:07578", - "shape:perf:07579", - "shape:perf:07580", - "shape:perf:07581", - "shape:perf:07582", - "shape:perf:07583", - "shape:perf:07584", - "shape:perf:07585", - "shape:perf:07586", - "shape:perf:07587", - "shape:perf:07588", - "shape:perf:07589", - "shape:perf:07590", - "shape:perf:07591", - "shape:perf:07592", - "shape:perf:07593", - "shape:perf:07594", - "shape:perf:07595", - "shape:perf:07596", - "shape:perf:07597", - "shape:perf:07598", - "shape:perf:07599", - "shape:perf:07600", - "shape:perf:07601", - "shape:perf:07602", - "shape:perf:07603", - "shape:perf:07604", - "shape:perf:07605", - "shape:perf:07606", - "shape:perf:07607", - "shape:perf:07608", - "shape:perf:07609", - "shape:perf:07610", - "shape:perf:07611", - "shape:perf:07612", - "shape:perf:07613", - "shape:perf:07614", - "shape:perf:07615", - "shape:perf:07616", - "shape:perf:07617", - "shape:perf:07618", - "shape:perf:07619", - "shape:perf:07620", - "shape:perf:07621", - "shape:perf:07622", - "shape:perf:07623", - "shape:perf:07624", - "shape:perf:07625", - "shape:perf:07626", - "shape:perf:07627", - "shape:perf:07628", - "shape:perf:07629", - "shape:perf:07630", - "shape:perf:07631", - "shape:perf:07632", - "shape:perf:07633", - "shape:perf:07634", - "shape:perf:07635", - "shape:perf:07636", - "shape:perf:07637", - "shape:perf:07638", - "shape:perf:07639", - "shape:perf:07640", - "shape:perf:07641", - "shape:perf:07642", - "shape:perf:07643", - "shape:perf:07644", - "shape:perf:07645", - "shape:perf:07646", - "shape:perf:07647", - "shape:perf:07648", - "shape:perf:07649", - "shape:perf:07650", - "shape:perf:07651", - "shape:perf:07652", - "shape:perf:07653", - "shape:perf:07654", - "shape:perf:07655", - "shape:perf:07656", - "shape:perf:07657", - "shape:perf:07658", - "shape:perf:07659", - "shape:perf:07660", - "shape:perf:07661", - "shape:perf:07662", - "shape:perf:07663", - "shape:perf:07664", - "shape:perf:07665", - "shape:perf:07666", - "shape:perf:07667", - "shape:perf:07668", - "shape:perf:07669", - "shape:perf:07670", - "shape:perf:07671", - "shape:perf:07672", - "shape:perf:07673", - "shape:perf:07674", - "shape:perf:07675", - "shape:perf:07676", - "shape:perf:07677", - "shape:perf:07678", - "shape:perf:07679", - "shape:perf:07680", - "shape:perf:07681", - "shape:perf:07682", - "shape:perf:07683", - "shape:perf:07684", - "shape:perf:07685", - "shape:perf:07686", - "shape:perf:07687", - "shape:perf:07688", - "shape:perf:07689", - "shape:perf:07690", - "shape:perf:07691", - "shape:perf:07692", - "shape:perf:07693", - "shape:perf:07694", - "shape:perf:07695", - "shape:perf:07696", - "shape:perf:07697", - "shape:perf:07698", - "shape:perf:07699", - "shape:perf:07700", - "shape:perf:07701", - "shape:perf:07702", - "shape:perf:07703", - "shape:perf:07704", - "shape:perf:07705", - "shape:perf:07706", - "shape:perf:07707", - "shape:perf:07708", - "shape:perf:07709", - "shape:perf:07710", - "shape:perf:07711", - "shape:perf:07712", - "shape:perf:07713", - "shape:perf:07714", - "shape:perf:07715", - "shape:perf:07716", - "shape:perf:07717", - "shape:perf:07718", - "shape:perf:07719", - "shape:perf:07720", - "shape:perf:07721", - "shape:perf:07722", - "shape:perf:07723", - "shape:perf:07724", - "shape:perf:07725", - "shape:perf:07726", - "shape:perf:07727", - "shape:perf:07728", - "shape:perf:07729", - "shape:perf:07730", - "shape:perf:07731", - "shape:perf:07732", - "shape:perf:07733", - "shape:perf:07734", - "shape:perf:07735", - "shape:perf:07736", - "shape:perf:07737", - "shape:perf:07738", - "shape:perf:07739", - "shape:perf:07740", - "shape:perf:07741", - "shape:perf:07742", - "shape:perf:07743", - "shape:perf:07744", - "shape:perf:07745", - "shape:perf:07746", - "shape:perf:07747", - "shape:perf:07748", - "shape:perf:07749", - "shape:perf:07750", - "shape:perf:07751", - "shape:perf:07752", - "shape:perf:07753", - "shape:perf:07754", - "shape:perf:07755", - "shape:perf:07756", - "shape:perf:07757", - "shape:perf:07758", - "shape:perf:07759", - "shape:perf:07760", - "shape:perf:07761", - "shape:perf:07762", - "shape:perf:07763", - "shape:perf:07764", - "shape:perf:07765", - "shape:perf:07766", - "shape:perf:07767", - "shape:perf:07768", - "shape:perf:07769", - "shape:perf:07770", - "shape:perf:07771", - "shape:perf:07772", - "shape:perf:07773", - "shape:perf:07774", - "shape:perf:07775", - "shape:perf:07776", - "shape:perf:07777", - "shape:perf:07778", - "shape:perf:07779", - "shape:perf:07780", - "shape:perf:07781", - "shape:perf:07782", - "shape:perf:07783", - "shape:perf:07784", - "shape:perf:07785", - "shape:perf:07786", - "shape:perf:07787", - "shape:perf:07788", - "shape:perf:07789", - "shape:perf:07790", - "shape:perf:07791", - "shape:perf:07792", - "shape:perf:07793", - "shape:perf:07794", - "shape:perf:07795", - "shape:perf:07796", - "shape:perf:07797", - "shape:perf:07798", - "shape:perf:07799", - "shape:perf:07800", - "shape:perf:07801", - "shape:perf:07802", - "shape:perf:07803", - "shape:perf:07804", - "shape:perf:07805", - "shape:perf:07806", - "shape:perf:07807", - "shape:perf:07808", - "shape:perf:07809", - "shape:perf:07810", - "shape:perf:07811", - "shape:perf:07812", - "shape:perf:07813", - "shape:perf:07814", - "shape:perf:07815", - "shape:perf:07816", - "shape:perf:07817", - "shape:perf:07818", - "shape:perf:07819", - "shape:perf:07820", - "shape:perf:07821", - "shape:perf:07822", - "shape:perf:07823", - "shape:perf:07824", - "shape:perf:07825", - "shape:perf:07826", - "shape:perf:07827", - "shape:perf:07828", - "shape:perf:07829", - "shape:perf:07830", - "shape:perf:07831", - "shape:perf:07832", - "shape:perf:07833", - "shape:perf:07834", - "shape:perf:07835", - "shape:perf:07836", - "shape:perf:07837", - "shape:perf:07838", - "shape:perf:07839", - "shape:perf:07840", - "shape:perf:07841", - "shape:perf:07842", - "shape:perf:07843", - "shape:perf:07844", - "shape:perf:07845", - "shape:perf:07846", - "shape:perf:07847", - "shape:perf:07848", - "shape:perf:07849", - "shape:perf:07850", - "shape:perf:07851", - "shape:perf:07852", - "shape:perf:07853", - "shape:perf:07854", - "shape:perf:07855", - "shape:perf:07856", - "shape:perf:07857", - "shape:perf:07858", - "shape:perf:07859", - "shape:perf:07860", - "shape:perf:07861", - "shape:perf:07862", - "shape:perf:07863", - "shape:perf:07864", - "shape:perf:07865", - "shape:perf:07866", - "shape:perf:07867", - "shape:perf:07868", - "shape:perf:07869", - "shape:perf:07870", - "shape:perf:07871", - "shape:perf:07872", - "shape:perf:07873", - "shape:perf:07874", - "shape:perf:07875", - "shape:perf:07876", - "shape:perf:07877", - "shape:perf:07878", - "shape:perf:07879", - "shape:perf:07880", - "shape:perf:07881", - "shape:perf:07882", - "shape:perf:07883", - "shape:perf:07884", - "shape:perf:07885", - "shape:perf:07886", - "shape:perf:07887", - "shape:perf:07888", - "shape:perf:07889", - "shape:perf:07890", - "shape:perf:07891", - "shape:perf:07892", - "shape:perf:07893", - "shape:perf:07894", - "shape:perf:07895", - "shape:perf:07896", - "shape:perf:07897", - "shape:perf:07898", - "shape:perf:07899", - "shape:perf:07900", - "shape:perf:07901", - "shape:perf:07902", - "shape:perf:07903", - "shape:perf:07904", - "shape:perf:07905", - "shape:perf:07906", - "shape:perf:07907", - "shape:perf:07908", - "shape:perf:07909", - "shape:perf:07910", - "shape:perf:07911", - "shape:perf:07912", - "shape:perf:07913", - "shape:perf:07914", - "shape:perf:07915", - "shape:perf:07916", - "shape:perf:07917", - "shape:perf:07918", - "shape:perf:07919", - "shape:perf:07920", - "shape:perf:07921", - "shape:perf:07922", - "shape:perf:07923", - "shape:perf:07924", - "shape:perf:07925", - "shape:perf:07926", - "shape:perf:07927", - "shape:perf:07928", - "shape:perf:07929", - "shape:perf:07930", - "shape:perf:07931", - "shape:perf:07932", - "shape:perf:07933", - "shape:perf:07934", - "shape:perf:07935", - "shape:perf:07936", - "shape:perf:07937", - "shape:perf:07938", - "shape:perf:07939", - "shape:perf:07940", - "shape:perf:07941", - "shape:perf:07942", - "shape:perf:07943", - "shape:perf:07944", - "shape:perf:07945", - "shape:perf:07946", - "shape:perf:07947", - "shape:perf:07948", - "shape:perf:07949", - "shape:perf:07950", - "shape:perf:07951", - "shape:perf:07952", - "shape:perf:07953", - "shape:perf:07954", - "shape:perf:07955", - "shape:perf:07956", - "shape:perf:07957", - "shape:perf:07958", - "shape:perf:07959", - "shape:perf:07960", - "shape:perf:07961", - "shape:perf:07962", - "shape:perf:07963", - "shape:perf:07964", - "shape:perf:07965", - "shape:perf:07966", - "shape:perf:07967", - "shape:perf:07968", - "shape:perf:07969", - "shape:perf:07970", - "shape:perf:07971", - "shape:perf:07972", - "shape:perf:07973", - "shape:perf:07974", - "shape:perf:07975", - "shape:perf:07976", - "shape:perf:07977", - "shape:perf:07978", - "shape:perf:07979", - "shape:perf:07980", - "shape:perf:07981", - "shape:perf:07982", - "shape:perf:07983", - "shape:perf:07984", - "shape:perf:07985", - "shape:perf:07986", - "shape:perf:07987", - "shape:perf:07988", - "shape:perf:07989", - "shape:perf:07990", - "shape:perf:07991", - "shape:perf:07992", - "shape:perf:07993", - "shape:perf:07994", - "shape:perf:07995", - "shape:perf:07996", - "shape:perf:07997", - "shape:perf:07998", - "shape:perf:07999", - "shape:perf:08000", - "shape:perf:08001", - "shape:perf:08002", - "shape:perf:08003", - "shape:perf:08004", - "shape:perf:08005", - "shape:perf:08006", - "shape:perf:08007", - "shape:perf:08008", - "shape:perf:08009", - "shape:perf:08010", - "shape:perf:08011", - "shape:perf:08012", - "shape:perf:08013", - "shape:perf:08014", - "shape:perf:08015", - "shape:perf:08016", - "shape:perf:08017", - "shape:perf:08018", - "shape:perf:08019", - "shape:perf:08020", - "shape:perf:08021", - "shape:perf:08022", - "shape:perf:08023", - "shape:perf:08024", - "shape:perf:08025", - "shape:perf:08026", - "shape:perf:08027", - "shape:perf:08028", - "shape:perf:08029", - "shape:perf:08030", - "shape:perf:08031", - "shape:perf:08032", - "shape:perf:08033", - "shape:perf:08034", - "shape:perf:08035", - "shape:perf:08036", - "shape:perf:08037", - "shape:perf:08038", - "shape:perf:08039", - "shape:perf:08040", - "shape:perf:08041", - "shape:perf:08042", - "shape:perf:08043", - "shape:perf:08044", - "shape:perf:08045", - "shape:perf:08046", - "shape:perf:08047", - "shape:perf:08048", - "shape:perf:08049", - "shape:perf:08050", - "shape:perf:08051", - "shape:perf:08052", - "shape:perf:08053", - "shape:perf:08054", - "shape:perf:08055", - "shape:perf:08056", - "shape:perf:08057", - "shape:perf:08058", - "shape:perf:08059", - "shape:perf:08060", - "shape:perf:08061", - "shape:perf:08062", - "shape:perf:08063", - "shape:perf:08064", - "shape:perf:08065", - "shape:perf:08066", - "shape:perf:08067", - "shape:perf:08068", - "shape:perf:08069", - "shape:perf:08070", - "shape:perf:08071", - "shape:perf:08072", - "shape:perf:08073", - "shape:perf:08074", - "shape:perf:08075", - "shape:perf:08076", - "shape:perf:08077", - "shape:perf:08078", - "shape:perf:08079", - "shape:perf:08080", - "shape:perf:08081", - "shape:perf:08082", - "shape:perf:08083", - "shape:perf:08084", - "shape:perf:08085", - "shape:perf:08086", - "shape:perf:08087", - "shape:perf:08088", - "shape:perf:08089", - "shape:perf:08090", - "shape:perf:08091", - "shape:perf:08092", - "shape:perf:08093", - "shape:perf:08094", - "shape:perf:08095", - "shape:perf:08096", - "shape:perf:08097", - "shape:perf:08098", - "shape:perf:08099", - "shape:perf:08100", - "shape:perf:08101", - "shape:perf:08102", - "shape:perf:08103", - "shape:perf:08104", - "shape:perf:08105", - "shape:perf:08106", - "shape:perf:08107", - "shape:perf:08108", - "shape:perf:08109", - "shape:perf:08110", - "shape:perf:08111", - "shape:perf:08112", - "shape:perf:08113", - "shape:perf:08114", - "shape:perf:08115", - "shape:perf:08116", - "shape:perf:08117", - "shape:perf:08118", - "shape:perf:08119", - "shape:perf:08120", - "shape:perf:08121", - "shape:perf:08122", - "shape:perf:08123", - "shape:perf:08124", - "shape:perf:08125", - "shape:perf:08126", - "shape:perf:08127", - "shape:perf:08128", - "shape:perf:08129", - "shape:perf:08130", - "shape:perf:08131", - "shape:perf:08132", - "shape:perf:08133", - "shape:perf:08134", - "shape:perf:08135", - "shape:perf:08136", - "shape:perf:08137", - "shape:perf:08138", - "shape:perf:08139", - "shape:perf:08140", - "shape:perf:08141", - "shape:perf:08142", - "shape:perf:08143", - "shape:perf:08144", - "shape:perf:08145", - "shape:perf:08146", - "shape:perf:08147", - "shape:perf:08148", - "shape:perf:08149", - "shape:perf:08150", - "shape:perf:08151", - "shape:perf:08152", - "shape:perf:08153", - "shape:perf:08154", - "shape:perf:08155", - "shape:perf:08156", - "shape:perf:08157", - "shape:perf:08158", - "shape:perf:08159", - "shape:perf:08160", - "shape:perf:08161", - "shape:perf:08162", - "shape:perf:08163", - "shape:perf:08164", - "shape:perf:08165", - "shape:perf:08166", - "shape:perf:08167", - "shape:perf:08168", - "shape:perf:08169", - "shape:perf:08170", - "shape:perf:08171", - "shape:perf:08172", - "shape:perf:08173", - "shape:perf:08174", - "shape:perf:08175", - "shape:perf:08176", - "shape:perf:08177", - "shape:perf:08178", - "shape:perf:08179", - "shape:perf:08180", - "shape:perf:08181", - "shape:perf:08182", - "shape:perf:08183", - "shape:perf:08184", - "shape:perf:08185", - "shape:perf:08186", - "shape:perf:08187", - "shape:perf:08188", - "shape:perf:08189", - "shape:perf:08190", - "shape:perf:08191", - "shape:perf:08192", - "shape:perf:08193", - "shape:perf:08194", - "shape:perf:08195", - "shape:perf:08196", - "shape:perf:08197", - "shape:perf:08198", - "shape:perf:08199", - "shape:perf:08200", - "shape:perf:08201", - "shape:perf:08202", - "shape:perf:08203", - "shape:perf:08204", - "shape:perf:08205", - "shape:perf:08206", - "shape:perf:08207", - "shape:perf:08208", - "shape:perf:08209", - "shape:perf:08210", - "shape:perf:08211", - "shape:perf:08212", - "shape:perf:08213", - "shape:perf:08214", - "shape:perf:08215", - "shape:perf:08216", - "shape:perf:08217", - "shape:perf:08218", - "shape:perf:08219", - "shape:perf:08220", - "shape:perf:08221", - "shape:perf:08222", - "shape:perf:08223", - "shape:perf:08224", - "shape:perf:08225", - "shape:perf:08226", - "shape:perf:08227", - "shape:perf:08228", - "shape:perf:08229", - "shape:perf:08230", - "shape:perf:08231", - "shape:perf:08232", - "shape:perf:08233", - "shape:perf:08234", - "shape:perf:08235", - "shape:perf:08236", - "shape:perf:08237", - "shape:perf:08238", - "shape:perf:08239", - "shape:perf:08240", - "shape:perf:08241", - "shape:perf:08242", - "shape:perf:08243", - "shape:perf:08244", - "shape:perf:08245", - "shape:perf:08246", - "shape:perf:08247", - "shape:perf:08248", - "shape:perf:08249", - "shape:perf:08250", - "shape:perf:08251", - "shape:perf:08252", - "shape:perf:08253", - "shape:perf:08254", - "shape:perf:08255", - "shape:perf:08256", - "shape:perf:08257", - "shape:perf:08258", - "shape:perf:08259", - "shape:perf:08260", - "shape:perf:08261", - "shape:perf:08262", - "shape:perf:08263", - "shape:perf:08264", - "shape:perf:08265", - "shape:perf:08266", - "shape:perf:08267", - "shape:perf:08268", - "shape:perf:08269", - "shape:perf:08270", - "shape:perf:08271", - "shape:perf:08272", - "shape:perf:08273", - "shape:perf:08274", - "shape:perf:08275", - "shape:perf:08276", - "shape:perf:08277", - "shape:perf:08278", - "shape:perf:08279", - "shape:perf:08280", - "shape:perf:08281", - "shape:perf:08282", - "shape:perf:08283", - "shape:perf:08284", - "shape:perf:08285", - "shape:perf:08286", - "shape:perf:08287", - "shape:perf:08288", - "shape:perf:08289", - "shape:perf:08290", - "shape:perf:08291", - "shape:perf:08292", - "shape:perf:08293", - "shape:perf:08294", - "shape:perf:08295", - "shape:perf:08296", - "shape:perf:08297", - "shape:perf:08298", - "shape:perf:08299", - "shape:perf:08300", - "shape:perf:08301", - "shape:perf:08302", - "shape:perf:08303", - "shape:perf:08304", - "shape:perf:08305", - "shape:perf:08306", - "shape:perf:08307", - "shape:perf:08308", - "shape:perf:08309", - "shape:perf:08310", - "shape:perf:08311", - "shape:perf:08312", - "shape:perf:08313", - "shape:perf:08314", - "shape:perf:08315", - "shape:perf:08316", - "shape:perf:08317", - "shape:perf:08318", - "shape:perf:08319", - "shape:perf:08320", - "shape:perf:08321", - "shape:perf:08322", - "shape:perf:08323", - "shape:perf:08324", - "shape:perf:08325", - "shape:perf:08326", - "shape:perf:08327", - "shape:perf:08328", - "shape:perf:08329", - "shape:perf:08330", - "shape:perf:08331", - "shape:perf:08332", - "shape:perf:08333", - "shape:perf:08334", - "shape:perf:08335", - "shape:perf:08336", - "shape:perf:08337", - "shape:perf:08338", - "shape:perf:08339", - "shape:perf:08340", - "shape:perf:08341", - "shape:perf:08342", - "shape:perf:08343", - "shape:perf:08344", - "shape:perf:08345", - "shape:perf:08346", - "shape:perf:08347", - "shape:perf:08348", - "shape:perf:08349", - "shape:perf:08350", - "shape:perf:08351", - "shape:perf:08352", - "shape:perf:08353", - "shape:perf:08354", - "shape:perf:08355", - "shape:perf:08356", - "shape:perf:08357", - "shape:perf:08358", - "shape:perf:08359", - "shape:perf:08360", - "shape:perf:08361", - "shape:perf:08362", - "shape:perf:08363", - "shape:perf:08364", - "shape:perf:08365", - "shape:perf:08366", - "shape:perf:08367", - "shape:perf:08368", - "shape:perf:08369", - "shape:perf:08370", - "shape:perf:08371", - "shape:perf:08372", - "shape:perf:08373", - "shape:perf:08374", - "shape:perf:08375", - "shape:perf:08376", - "shape:perf:08377", - "shape:perf:08378", - "shape:perf:08379", - "shape:perf:08380", - "shape:perf:08381", - "shape:perf:08382", - "shape:perf:08383", - "shape:perf:08384", - "shape:perf:08385", - "shape:perf:08386", - "shape:perf:08387", - "shape:perf:08388", - "shape:perf:08389", - "shape:perf:08390", - "shape:perf:08391", - "shape:perf:08392", - "shape:perf:08393", - "shape:perf:08394", - "shape:perf:08395", - "shape:perf:08396", - "shape:perf:08397", - "shape:perf:08398", - "shape:perf:08399", - "shape:perf:08400", - "shape:perf:08401", - "shape:perf:08402", - "shape:perf:08403", - "shape:perf:08404", - "shape:perf:08405", - "shape:perf:08406", - "shape:perf:08407", - "shape:perf:08408", - "shape:perf:08409", - "shape:perf:08410", - "shape:perf:08411", - "shape:perf:08412", - "shape:perf:08413", - "shape:perf:08414", - "shape:perf:08415", - "shape:perf:08416", - "shape:perf:08417", - "shape:perf:08418", - "shape:perf:08419", - "shape:perf:08420", - "shape:perf:08421", - "shape:perf:08422", - "shape:perf:08423", - "shape:perf:08424", - "shape:perf:08425", - "shape:perf:08426", - "shape:perf:08427", - "shape:perf:08428", - "shape:perf:08429", - "shape:perf:08430", - "shape:perf:08431", - "shape:perf:08432", - "shape:perf:08433", - "shape:perf:08434", - "shape:perf:08435", - "shape:perf:08436", - "shape:perf:08437", - "shape:perf:08438", - "shape:perf:08439", - "shape:perf:08440", - "shape:perf:08441", - "shape:perf:08442", - "shape:perf:08443", - "shape:perf:08444", - "shape:perf:08445", - "shape:perf:08446", - "shape:perf:08447", - "shape:perf:08448", - "shape:perf:08449", - "shape:perf:08450", - "shape:perf:08451", - "shape:perf:08452", - "shape:perf:08453", - "shape:perf:08454", - "shape:perf:08455", - "shape:perf:08456", - "shape:perf:08457", - "shape:perf:08458", - "shape:perf:08459", - "shape:perf:08460", - "shape:perf:08461", - "shape:perf:08462", - "shape:perf:08463", - "shape:perf:08464", - "shape:perf:08465", - "shape:perf:08466", - "shape:perf:08467", - "shape:perf:08468", - "shape:perf:08469", - "shape:perf:08470", - "shape:perf:08471", - "shape:perf:08472", - "shape:perf:08473", - "shape:perf:08474", - "shape:perf:08475", - "shape:perf:08476", - "shape:perf:08477", - "shape:perf:08478", - "shape:perf:08479", - "shape:perf:08480", - "shape:perf:08481", - "shape:perf:08482", - "shape:perf:08483", - "shape:perf:08484", - "shape:perf:08485", - "shape:perf:08486", - "shape:perf:08487", - "shape:perf:08488", - "shape:perf:08489", - "shape:perf:08490", - "shape:perf:08491", - "shape:perf:08492", - "shape:perf:08493", - "shape:perf:08494", - "shape:perf:08495", - "shape:perf:08496", - "shape:perf:08497", - "shape:perf:08498", - "shape:perf:08499", - "shape:perf:08500", - "shape:perf:08501", - "shape:perf:08502", - "shape:perf:08503", - "shape:perf:08504", - "shape:perf:08505", - "shape:perf:08506", - "shape:perf:08507", - "shape:perf:08508", - "shape:perf:08509", - "shape:perf:08510", - "shape:perf:08511", - "shape:perf:08512", - "shape:perf:08513", - "shape:perf:08514", - "shape:perf:08515", - "shape:perf:08516", - "shape:perf:08517", - "shape:perf:08518", - "shape:perf:08519", - "shape:perf:08520", - "shape:perf:08521", - "shape:perf:08522", - "shape:perf:08523", - "shape:perf:08524", - "shape:perf:08525", - "shape:perf:08526", - "shape:perf:08527", - "shape:perf:08528", - "shape:perf:08529", - "shape:perf:08530", - "shape:perf:08531", - "shape:perf:08532", - "shape:perf:08533", - "shape:perf:08534", - "shape:perf:08535", - "shape:perf:08536", - "shape:perf:08537", - "shape:perf:08538", - "shape:perf:08539", - "shape:perf:08540", - "shape:perf:08541", - "shape:perf:08542", - "shape:perf:08543", - "shape:perf:08544", - "shape:perf:08545", - "shape:perf:08546", - "shape:perf:08547", - "shape:perf:08548", - "shape:perf:08549", - "shape:perf:08550", - "shape:perf:08551", - "shape:perf:08552", - "shape:perf:08553", - "shape:perf:08554", - "shape:perf:08555", - "shape:perf:08556", - "shape:perf:08557", - "shape:perf:08558", - "shape:perf:08559", - "shape:perf:08560", - "shape:perf:08561", - "shape:perf:08562", - "shape:perf:08563", - "shape:perf:08564", - "shape:perf:08565", - "shape:perf:08566", - "shape:perf:08567", - "shape:perf:08568", - "shape:perf:08569", - "shape:perf:08570", - "shape:perf:08571", - "shape:perf:08572", - "shape:perf:08573", - "shape:perf:08574", - "shape:perf:08575", - "shape:perf:08576", - "shape:perf:08577", - "shape:perf:08578", - "shape:perf:08579", - "shape:perf:08580", - "shape:perf:08581", - "shape:perf:08582", - "shape:perf:08583", - "shape:perf:08584", - "shape:perf:08585", - "shape:perf:08586", - "shape:perf:08587", - "shape:perf:08588", - "shape:perf:08589", - "shape:perf:08590", - "shape:perf:08591", - "shape:perf:08592", - "shape:perf:08593", - "shape:perf:08594", - "shape:perf:08595", - "shape:perf:08596", - "shape:perf:08597", - "shape:perf:08598", - "shape:perf:08599", - "shape:perf:08600", - "shape:perf:08601", - "shape:perf:08602", - "shape:perf:08603", - "shape:perf:08604", - "shape:perf:08605", - "shape:perf:08606", - "shape:perf:08607", - "shape:perf:08608", - "shape:perf:08609", - "shape:perf:08610", - "shape:perf:08611", - "shape:perf:08612", - "shape:perf:08613", - "shape:perf:08614", - "shape:perf:08615", - "shape:perf:08616", - "shape:perf:08617", - "shape:perf:08618", - "shape:perf:08619", - "shape:perf:08620", - "shape:perf:08621", - "shape:perf:08622", - "shape:perf:08623", - "shape:perf:08624", - "shape:perf:08625", - "shape:perf:08626", - "shape:perf:08627", - "shape:perf:08628", - "shape:perf:08629", - "shape:perf:08630", - "shape:perf:08631", - "shape:perf:08632", - "shape:perf:08633", - "shape:perf:08634", - "shape:perf:08635", - "shape:perf:08636", - "shape:perf:08637", - "shape:perf:08638", - "shape:perf:08639", - "shape:perf:08640", - "shape:perf:08641", - "shape:perf:08642", - "shape:perf:08643", - "shape:perf:08644", - "shape:perf:08645", - "shape:perf:08646", - "shape:perf:08647", - "shape:perf:08648", - "shape:perf:08649", - "shape:perf:08650", - "shape:perf:08651", - "shape:perf:08652", - "shape:perf:08653", - "shape:perf:08654", - "shape:perf:08655", - "shape:perf:08656", - "shape:perf:08657", - "shape:perf:08658", - "shape:perf:08659", - "shape:perf:08660", - "shape:perf:08661", - "shape:perf:08662", - "shape:perf:08663", - "shape:perf:08664", - "shape:perf:08665", - "shape:perf:08666", - "shape:perf:08667", - "shape:perf:08668", - "shape:perf:08669", - "shape:perf:08670", - "shape:perf:08671", - "shape:perf:08672", - "shape:perf:08673", - "shape:perf:08674", - "shape:perf:08675", - "shape:perf:08676", - "shape:perf:08677", - "shape:perf:08678", - "shape:perf:08679", - "shape:perf:08680", - "shape:perf:08681", - "shape:perf:08682", - "shape:perf:08683", - "shape:perf:08684", - "shape:perf:08685", - "shape:perf:08686", - "shape:perf:08687", - "shape:perf:08688", - "shape:perf:08689", - "shape:perf:08690", - "shape:perf:08691", - "shape:perf:08692", - "shape:perf:08693", - "shape:perf:08694", - "shape:perf:08695", - "shape:perf:08696", - "shape:perf:08697", - "shape:perf:08698", - "shape:perf:08699", - "shape:perf:08700", - "shape:perf:08701", - "shape:perf:08702", - "shape:perf:08703", - "shape:perf:08704", - "shape:perf:08705", - "shape:perf:08706", - "shape:perf:08707", - "shape:perf:08708", - "shape:perf:08709", - "shape:perf:08710", - "shape:perf:08711", - "shape:perf:08712", - "shape:perf:08713", - "shape:perf:08714", - "shape:perf:08715", - "shape:perf:08716", - "shape:perf:08717", - "shape:perf:08718", - "shape:perf:08719", - "shape:perf:08720", - "shape:perf:08721", - "shape:perf:08722", - "shape:perf:08723", - "shape:perf:08724", - "shape:perf:08725", - "shape:perf:08726", - "shape:perf:08727", - "shape:perf:08728", - "shape:perf:08729", - "shape:perf:08730", - "shape:perf:08731", - "shape:perf:08732", - "shape:perf:08733", - "shape:perf:08734", - "shape:perf:08735", - "shape:perf:08736", - "shape:perf:08737", - "shape:perf:08738", - "shape:perf:08739", - "shape:perf:08740", - "shape:perf:08741", - "shape:perf:08742", - "shape:perf:08743", - "shape:perf:08744", - "shape:perf:08745", - "shape:perf:08746", - "shape:perf:08747", - "shape:perf:08748", - "shape:perf:08749", - "shape:perf:08750", - "shape:perf:08751", - "shape:perf:08752", - "shape:perf:08753", - "shape:perf:08754", - "shape:perf:08755", - "shape:perf:08756", - "shape:perf:08757", - "shape:perf:08758", - "shape:perf:08759", - "shape:perf:08760", - "shape:perf:08761", - "shape:perf:08762", - "shape:perf:08763", - "shape:perf:08764", - "shape:perf:08765", - "shape:perf:08766", - "shape:perf:08767", - "shape:perf:08768", - "shape:perf:08769", - "shape:perf:08770", - "shape:perf:08771", - "shape:perf:08772", - "shape:perf:08773", - "shape:perf:08774", - "shape:perf:08775", - "shape:perf:08776", - "shape:perf:08777", - "shape:perf:08778", - "shape:perf:08779", - "shape:perf:08780", - "shape:perf:08781", - "shape:perf:08782", - "shape:perf:08783", - "shape:perf:08784", - "shape:perf:08785", - "shape:perf:08786", - "shape:perf:08787", - "shape:perf:08788", - "shape:perf:08789", - "shape:perf:08790", - "shape:perf:08791", - "shape:perf:08792", - "shape:perf:08793", - "shape:perf:08794", - "shape:perf:08795", - "shape:perf:08796", - "shape:perf:08797", - "shape:perf:08798", - "shape:perf:08799", - "shape:perf:08800", - "shape:perf:08801", - "shape:perf:08802", - "shape:perf:08803", - "shape:perf:08804", - "shape:perf:08805", - "shape:perf:08806", - "shape:perf:08807", - "shape:perf:08808", - "shape:perf:08809", - "shape:perf:08810", - "shape:perf:08811", - "shape:perf:08812", - "shape:perf:08813", - "shape:perf:08814", - "shape:perf:08815", - "shape:perf:08816", - "shape:perf:08817", - "shape:perf:08818", - "shape:perf:08819", - "shape:perf:08820", - "shape:perf:08821", - "shape:perf:08822", - "shape:perf:08823", - "shape:perf:08824", - "shape:perf:08825", - "shape:perf:08826", - "shape:perf:08827", - "shape:perf:08828", - "shape:perf:08829", - "shape:perf:08830", - "shape:perf:08831", - "shape:perf:08832", - "shape:perf:08833", - "shape:perf:08834", - "shape:perf:08835", - "shape:perf:08836", - "shape:perf:08837", - "shape:perf:08838", - "shape:perf:08839", - "shape:perf:08840", - "shape:perf:08841", - "shape:perf:08842", - "shape:perf:08843", - "shape:perf:08844", - "shape:perf:08845", - "shape:perf:08846", - "shape:perf:08847", - "shape:perf:08848", - "shape:perf:08849", - "shape:perf:08850", - "shape:perf:08851", - "shape:perf:08852", - "shape:perf:08853", - "shape:perf:08854", - "shape:perf:08855", - "shape:perf:08856", - "shape:perf:08857", - "shape:perf:08858", - "shape:perf:08859", - "shape:perf:08860", - "shape:perf:08861", - "shape:perf:08862", - "shape:perf:08863", - "shape:perf:08864", - "shape:perf:08865", - "shape:perf:08866", - "shape:perf:08867", - "shape:perf:08868", - "shape:perf:08869", - "shape:perf:08870", - "shape:perf:08871", - "shape:perf:08872", - "shape:perf:08873", - "shape:perf:08874", - "shape:perf:08875", - "shape:perf:08876", - "shape:perf:08877", - "shape:perf:08878", - "shape:perf:08879", - "shape:perf:08880", - "shape:perf:08881", - "shape:perf:08882", - "shape:perf:08883", - "shape:perf:08884", - "shape:perf:08885", - "shape:perf:08886", - "shape:perf:08887", - "shape:perf:08888", - "shape:perf:08889", - "shape:perf:08890", - "shape:perf:08891", - "shape:perf:08892", - "shape:perf:08893", - "shape:perf:08894", - "shape:perf:08895", - "shape:perf:08896", - "shape:perf:08897", - "shape:perf:08898", - "shape:perf:08899", - "shape:perf:08900", - "shape:perf:08901", - "shape:perf:08902", - "shape:perf:08903", - "shape:perf:08904", - "shape:perf:08905", - "shape:perf:08906", - "shape:perf:08907", - "shape:perf:08908", - "shape:perf:08909", - "shape:perf:08910", - "shape:perf:08911", - "shape:perf:08912", - "shape:perf:08913", - "shape:perf:08914", - "shape:perf:08915", - "shape:perf:08916", - "shape:perf:08917", - "shape:perf:08918", - "shape:perf:08919", - "shape:perf:08920", - "shape:perf:08921", - "shape:perf:08922", - "shape:perf:08923", - "shape:perf:08924", - "shape:perf:08925", - "shape:perf:08926", - "shape:perf:08927", - "shape:perf:08928", - "shape:perf:08929", - "shape:perf:08930", - "shape:perf:08931", - "shape:perf:08932", - "shape:perf:08933", - "shape:perf:08934", - "shape:perf:08935", - "shape:perf:08936", - "shape:perf:08937", - "shape:perf:08938", - "shape:perf:08939", - "shape:perf:08940", - "shape:perf:08941", - "shape:perf:08942", - "shape:perf:08943", - "shape:perf:08944", - "shape:perf:08945", - "shape:perf:08946", - "shape:perf:08947", - "shape:perf:08948", - "shape:perf:08949", - "shape:perf:08950", - "shape:perf:08951", - "shape:perf:08952", - "shape:perf:08953", - "shape:perf:08954", - "shape:perf:08955", - "shape:perf:08956", - "shape:perf:08957", - "shape:perf:08958", - "shape:perf:08959", - "shape:perf:08960", - "shape:perf:08961", - "shape:perf:08962", - "shape:perf:08963", - "shape:perf:08964", - "shape:perf:08965", - "shape:perf:08966", - "shape:perf:08967", - "shape:perf:08968", - "shape:perf:08969", - "shape:perf:08970", - "shape:perf:08971", - "shape:perf:08972", - "shape:perf:08973", - "shape:perf:08974", - "shape:perf:08975", - "shape:perf:08976", - "shape:perf:08977", - "shape:perf:08978", - "shape:perf:08979", - "shape:perf:08980", - "shape:perf:08981", - "shape:perf:08982", - "shape:perf:08983", - "shape:perf:08984", - "shape:perf:08985", - "shape:perf:08986", - "shape:perf:08987", - "shape:perf:08988", - "shape:perf:08989", - "shape:perf:08990", - "shape:perf:08991", - "shape:perf:08992", - "shape:perf:08993", - "shape:perf:08994", - "shape:perf:08995", - "shape:perf:08996", - "shape:perf:08997", - "shape:perf:08998", - "shape:perf:08999", - "shape:perf:09000", - "shape:perf:09001", - "shape:perf:09002", - "shape:perf:09003", - "shape:perf:09004", - "shape:perf:09005", - "shape:perf:09006", - "shape:perf:09007", - "shape:perf:09008", - "shape:perf:09009", - "shape:perf:09010", - "shape:perf:09011", - "shape:perf:09012", - "shape:perf:09013", - "shape:perf:09014", - "shape:perf:09015", - "shape:perf:09016", - "shape:perf:09017", - "shape:perf:09018", - "shape:perf:09019", - "shape:perf:09020", - "shape:perf:09021", - "shape:perf:09022", - "shape:perf:09023", - "shape:perf:09024", - "shape:perf:09025", - "shape:perf:09026", - "shape:perf:09027", - "shape:perf:09028", - "shape:perf:09029", - "shape:perf:09030", - "shape:perf:09031", - "shape:perf:09032", - "shape:perf:09033", - "shape:perf:09034", - "shape:perf:09035", - "shape:perf:09036", - "shape:perf:09037", - "shape:perf:09038", - "shape:perf:09039", - "shape:perf:09040", - "shape:perf:09041", - "shape:perf:09042", - "shape:perf:09043", - "shape:perf:09044", - "shape:perf:09045", - "shape:perf:09046", - "shape:perf:09047", - "shape:perf:09048", - "shape:perf:09049", - "shape:perf:09050", - "shape:perf:09051", - "shape:perf:09052", - "shape:perf:09053", - "shape:perf:09054", - "shape:perf:09055", - "shape:perf:09056", - "shape:perf:09057", - "shape:perf:09058", - "shape:perf:09059", - "shape:perf:09060", - "shape:perf:09061", - "shape:perf:09062", - "shape:perf:09063", - "shape:perf:09064", - "shape:perf:09065", - "shape:perf:09066", - "shape:perf:09067", - "shape:perf:09068", - "shape:perf:09069", - "shape:perf:09070", - "shape:perf:09071", - "shape:perf:09072", - "shape:perf:09073", - "shape:perf:09074", - "shape:perf:09075", - "shape:perf:09076", - "shape:perf:09077", - "shape:perf:09078", - "shape:perf:09079", - "shape:perf:09080", - "shape:perf:09081", - "shape:perf:09082", - "shape:perf:09083", - "shape:perf:09084", - "shape:perf:09085", - "shape:perf:09086", - "shape:perf:09087", - "shape:perf:09088", - "shape:perf:09089", - "shape:perf:09090", - "shape:perf:09091", - "shape:perf:09092", - "shape:perf:09093", - "shape:perf:09094", - "shape:perf:09095", - "shape:perf:09096", - "shape:perf:09097", - "shape:perf:09098", - "shape:perf:09099", - "shape:perf:09100", - "shape:perf:09101", - "shape:perf:09102", - "shape:perf:09103", - "shape:perf:09104", - "shape:perf:09105", - "shape:perf:09106", - "shape:perf:09107", - "shape:perf:09108", - "shape:perf:09109", - "shape:perf:09110", - "shape:perf:09111", - "shape:perf:09112", - "shape:perf:09113", - "shape:perf:09114", - "shape:perf:09115", - "shape:perf:09116", - "shape:perf:09117", - "shape:perf:09118", - "shape:perf:09119", - "shape:perf:09120", - "shape:perf:09121", - "shape:perf:09122", - "shape:perf:09123", - "shape:perf:09124", - "shape:perf:09125", - "shape:perf:09126", - "shape:perf:09127", - "shape:perf:09128", - "shape:perf:09129", - "shape:perf:09130", - "shape:perf:09131", - "shape:perf:09132", - "shape:perf:09133", - "shape:perf:09134", - "shape:perf:09135", - "shape:perf:09136", - "shape:perf:09137", - "shape:perf:09138", - "shape:perf:09139", - "shape:perf:09140", - "shape:perf:09141", - "shape:perf:09142", - "shape:perf:09143", - "shape:perf:09144", - "shape:perf:09145", - "shape:perf:09146", - "shape:perf:09147", - "shape:perf:09148", - "shape:perf:09149", - "shape:perf:09150", - "shape:perf:09151", - "shape:perf:09152", - "shape:perf:09153", - "shape:perf:09154", - "shape:perf:09155", - "shape:perf:09156", - "shape:perf:09157", - "shape:perf:09158", - "shape:perf:09159", - "shape:perf:09160", - "shape:perf:09161", - "shape:perf:09162", - "shape:perf:09163", - "shape:perf:09164", - "shape:perf:09165", - "shape:perf:09166", - "shape:perf:09167", - "shape:perf:09168", - "shape:perf:09169", - "shape:perf:09170", - "shape:perf:09171", - "shape:perf:09172", - "shape:perf:09173", - "shape:perf:09174", - "shape:perf:09175", - "shape:perf:09176", - "shape:perf:09177", - "shape:perf:09178", - "shape:perf:09179", - "shape:perf:09180", - "shape:perf:09181", - "shape:perf:09182", - "shape:perf:09183", - "shape:perf:09184", - "shape:perf:09185", - "shape:perf:09186", - "shape:perf:09187", - "shape:perf:09188", - "shape:perf:09189", - "shape:perf:09190", - "shape:perf:09191", - "shape:perf:09192", - "shape:perf:09193", - "shape:perf:09194", - "shape:perf:09195", - "shape:perf:09196", - "shape:perf:09197", - "shape:perf:09198", - "shape:perf:09199", - "shape:perf:09200", - "shape:perf:09201", - "shape:perf:09202", - "shape:perf:09203", - "shape:perf:09204", - "shape:perf:09205", - "shape:perf:09206", - "shape:perf:09207", - "shape:perf:09208", - "shape:perf:09209", - "shape:perf:09210", - "shape:perf:09211", - "shape:perf:09212", - "shape:perf:09213", - "shape:perf:09214", - "shape:perf:09215", - "shape:perf:09216", - "shape:perf:09217", - "shape:perf:09218", - "shape:perf:09219", - "shape:perf:09220", - "shape:perf:09221", - "shape:perf:09222", - "shape:perf:09223", - "shape:perf:09224", - "shape:perf:09225", - "shape:perf:09226", - "shape:perf:09227", - "shape:perf:09228", - "shape:perf:09229", - "shape:perf:09230", - "shape:perf:09231", - "shape:perf:09232", - "shape:perf:09233", - "shape:perf:09234", - "shape:perf:09235", - "shape:perf:09236", - "shape:perf:09237", - "shape:perf:09238", - "shape:perf:09239", - "shape:perf:09240", - "shape:perf:09241", - "shape:perf:09242", - "shape:perf:09243", - "shape:perf:09244", - "shape:perf:09245", - "shape:perf:09246", - "shape:perf:09247", - "shape:perf:09248", - "shape:perf:09249", - "shape:perf:09250", - "shape:perf:09251", - "shape:perf:09252", - "shape:perf:09253", - "shape:perf:09254", - "shape:perf:09255", - "shape:perf:09256", - "shape:perf:09257", - "shape:perf:09258", - "shape:perf:09259", - "shape:perf:09260", - "shape:perf:09261", - "shape:perf:09262", - "shape:perf:09263", - "shape:perf:09264", - "shape:perf:09265", - "shape:perf:09266", - "shape:perf:09267", - "shape:perf:09268", - "shape:perf:09269", - "shape:perf:09270", - "shape:perf:09271", - "shape:perf:09272", - "shape:perf:09273", - "shape:perf:09274", - "shape:perf:09275", - "shape:perf:09276", - "shape:perf:09277", - "shape:perf:09278", - "shape:perf:09279", - "shape:perf:09280", - "shape:perf:09281", - "shape:perf:09282", - "shape:perf:09283", - "shape:perf:09284", - "shape:perf:09285", - "shape:perf:09286", - "shape:perf:09287", - "shape:perf:09288", - "shape:perf:09289", - "shape:perf:09290", - "shape:perf:09291", - "shape:perf:09292", - "shape:perf:09293", - "shape:perf:09294", - "shape:perf:09295", - "shape:perf:09296", - "shape:perf:09297", - "shape:perf:09298", - "shape:perf:09299", - "shape:perf:09300", - "shape:perf:09301", - "shape:perf:09302", - "shape:perf:09303", - "shape:perf:09304", - "shape:perf:09305", - "shape:perf:09306", - "shape:perf:09307", - "shape:perf:09308", - "shape:perf:09309", - "shape:perf:09310", - "shape:perf:09311", - "shape:perf:09312", - "shape:perf:09313", - "shape:perf:09314", - "shape:perf:09315", - "shape:perf:09316", - "shape:perf:09317", - "shape:perf:09318", - "shape:perf:09319", - "shape:perf:09320", - "shape:perf:09321", - "shape:perf:09322", - "shape:perf:09323", - "shape:perf:09324", - "shape:perf:09325", - "shape:perf:09326", - "shape:perf:09327", - "shape:perf:09328", - "shape:perf:09329", - "shape:perf:09330", - "shape:perf:09331", - "shape:perf:09332", - "shape:perf:09333", - "shape:perf:09334", - "shape:perf:09335", - "shape:perf:09336", - "shape:perf:09337", - "shape:perf:09338", - "shape:perf:09339", - "shape:perf:09340", - "shape:perf:09341", - "shape:perf:09342", - "shape:perf:09343", - "shape:perf:09344", - "shape:perf:09345", - "shape:perf:09346", - "shape:perf:09347", - "shape:perf:09348", - "shape:perf:09349", - "shape:perf:09350", - "shape:perf:09351", - "shape:perf:09352", - "shape:perf:09353", - "shape:perf:09354", - "shape:perf:09355", - "shape:perf:09356", - "shape:perf:09357", - "shape:perf:09358", - "shape:perf:09359", - "shape:perf:09360", - "shape:perf:09361", - "shape:perf:09362", - "shape:perf:09363", - "shape:perf:09364", - "shape:perf:09365", - "shape:perf:09366", - "shape:perf:09367", - "shape:perf:09368", - "shape:perf:09369", - "shape:perf:09370", - "shape:perf:09371", - "shape:perf:09372", - "shape:perf:09373", - "shape:perf:09374", - "shape:perf:09375", - "shape:perf:09376", - "shape:perf:09377", - "shape:perf:09378", - "shape:perf:09379", - "shape:perf:09380", - "shape:perf:09381", - "shape:perf:09382", - "shape:perf:09383", - "shape:perf:09384", - "shape:perf:09385", - "shape:perf:09386", - "shape:perf:09387", - "shape:perf:09388", - "shape:perf:09389", - "shape:perf:09390", - "shape:perf:09391", - "shape:perf:09392", - "shape:perf:09393", - "shape:perf:09394", - "shape:perf:09395", - "shape:perf:09396", - "shape:perf:09397", - "shape:perf:09398", - "shape:perf:09399", - "shape:perf:09400", - "shape:perf:09401", - "shape:perf:09402", - "shape:perf:09403", - "shape:perf:09404", - "shape:perf:09405", - "shape:perf:09406", - "shape:perf:09407", - "shape:perf:09408", - "shape:perf:09409", - "shape:perf:09410", - "shape:perf:09411", - "shape:perf:09412", - "shape:perf:09413", - "shape:perf:09414", - "shape:perf:09415", - "shape:perf:09416", - "shape:perf:09417", - "shape:perf:09418", - "shape:perf:09419", - "shape:perf:09420", - "shape:perf:09421", - "shape:perf:09422", - "shape:perf:09423", - "shape:perf:09424", - "shape:perf:09425", - "shape:perf:09426", - "shape:perf:09427", - "shape:perf:09428", - "shape:perf:09429", - "shape:perf:09430", - "shape:perf:09431", - "shape:perf:09432", - "shape:perf:09433", - "shape:perf:09434", - "shape:perf:09435", - "shape:perf:09436", - "shape:perf:09437", - "shape:perf:09438", - "shape:perf:09439", - "shape:perf:09440", - "shape:perf:09441", - "shape:perf:09442", - "shape:perf:09443", - "shape:perf:09444", - "shape:perf:09445", - "shape:perf:09446", - "shape:perf:09447", - "shape:perf:09448", - "shape:perf:09449", - "shape:perf:09450", - "shape:perf:09451", - "shape:perf:09452", - "shape:perf:09453", - "shape:perf:09454", - "shape:perf:09455", - "shape:perf:09456", - "shape:perf:09457", - "shape:perf:09458", - "shape:perf:09459", - "shape:perf:09460", - "shape:perf:09461", - "shape:perf:09462", - "shape:perf:09463", - "shape:perf:09464", - "shape:perf:09465", - "shape:perf:09466", - "shape:perf:09467", - "shape:perf:09468", - "shape:perf:09469", - "shape:perf:09470", - "shape:perf:09471", - "shape:perf:09472", - "shape:perf:09473", - "shape:perf:09474", - "shape:perf:09475", - "shape:perf:09476", - "shape:perf:09477", - "shape:perf:09478", - "shape:perf:09479", - "shape:perf:09480", - "shape:perf:09481", - "shape:perf:09482", - "shape:perf:09483", - "shape:perf:09484", - "shape:perf:09485", - "shape:perf:09486", - "shape:perf:09487", - "shape:perf:09488", - "shape:perf:09489", - "shape:perf:09490", - "shape:perf:09491", - "shape:perf:09492", - "shape:perf:09493", - "shape:perf:09494", - "shape:perf:09495", - "shape:perf:09496", - "shape:perf:09497", - "shape:perf:09498", - "shape:perf:09499", - "shape:perf:09500", - "shape:perf:09501", - "shape:perf:09502", - "shape:perf:09503", - "shape:perf:09504", - "shape:perf:09505", - "shape:perf:09506", - "shape:perf:09507", - "shape:perf:09508", - "shape:perf:09509", - "shape:perf:09510", - "shape:perf:09511", - "shape:perf:09512", - "shape:perf:09513", - "shape:perf:09514", - "shape:perf:09515", - "shape:perf:09516", - "shape:perf:09517", - "shape:perf:09518", - "shape:perf:09519", - "shape:perf:09520", - "shape:perf:09521", - "shape:perf:09522", - "shape:perf:09523", - "shape:perf:09524", - "shape:perf:09525", - "shape:perf:09526", - "shape:perf:09527", - "shape:perf:09528", - "shape:perf:09529", - "shape:perf:09530", - "shape:perf:09531", - "shape:perf:09532", - "shape:perf:09533", - "shape:perf:09534", - "shape:perf:09535", - "shape:perf:09536", - "shape:perf:09537", - "shape:perf:09538", - "shape:perf:09539", - "shape:perf:09540", - "shape:perf:09541", - "shape:perf:09542", - "shape:perf:09543", - "shape:perf:09544", - "shape:perf:09545", - "shape:perf:09546", - "shape:perf:09547", - "shape:perf:09548", - "shape:perf:09549", - "shape:perf:09550", - "shape:perf:09551", - "shape:perf:09552", - "shape:perf:09553", - "shape:perf:09554", - "shape:perf:09555", - "shape:perf:09556", - "shape:perf:09557", - "shape:perf:09558", - "shape:perf:09559", - "shape:perf:09560", - "shape:perf:09561", - "shape:perf:09562", - "shape:perf:09563", - "shape:perf:09564", - "shape:perf:09565", - "shape:perf:09566", - "shape:perf:09567", - "shape:perf:09568", - "shape:perf:09569", - "shape:perf:09570", - "shape:perf:09571", - "shape:perf:09572", - "shape:perf:09573", - "shape:perf:09574", - "shape:perf:09575", - "shape:perf:09576", - "shape:perf:09577", - "shape:perf:09578", - "shape:perf:09579", - "shape:perf:09580", - "shape:perf:09581", - "shape:perf:09582", - "shape:perf:09583", - "shape:perf:09584", - "shape:perf:09585", - "shape:perf:09586", - "shape:perf:09587", - "shape:perf:09588", - "shape:perf:09589", - "shape:perf:09590", - "shape:perf:09591", - "shape:perf:09592", - "shape:perf:09593", - "shape:perf:09594", - "shape:perf:09595", - "shape:perf:09596", - "shape:perf:09597", - "shape:perf:09598", - "shape:perf:09599", - "shape:perf:09600", - "shape:perf:09601", - "shape:perf:09602", - "shape:perf:09603", - "shape:perf:09604", - "shape:perf:09605", - "shape:perf:09606", - "shape:perf:09607", - "shape:perf:09608", - "shape:perf:09609", - "shape:perf:09610", - "shape:perf:09611", - "shape:perf:09612", - "shape:perf:09613", - "shape:perf:09614", - "shape:perf:09615", - "shape:perf:09616", - "shape:perf:09617", - "shape:perf:09618", - "shape:perf:09619", - "shape:perf:09620", - "shape:perf:09621", - "shape:perf:09622", - "shape:perf:09623", - "shape:perf:09624", - "shape:perf:09625", - "shape:perf:09626", - "shape:perf:09627", - "shape:perf:09628", - "shape:perf:09629", - "shape:perf:09630", - "shape:perf:09631", - "shape:perf:09632", - "shape:perf:09633", - "shape:perf:09634", - "shape:perf:09635", - "shape:perf:09636", - "shape:perf:09637", - "shape:perf:09638", - "shape:perf:09639", - "shape:perf:09640", - "shape:perf:09641", - "shape:perf:09642", - "shape:perf:09643", - "shape:perf:09644", - "shape:perf:09645", - "shape:perf:09646", - "shape:perf:09647", - "shape:perf:09648", - "shape:perf:09649", - "shape:perf:09650", - "shape:perf:09651", - "shape:perf:09652", - "shape:perf:09653", - "shape:perf:09654", - "shape:perf:09655", - "shape:perf:09656", - "shape:perf:09657", - "shape:perf:09658", - "shape:perf:09659", - "shape:perf:09660", - "shape:perf:09661", - "shape:perf:09662", - "shape:perf:09663", - "shape:perf:09664", - "shape:perf:09665", - "shape:perf:09666", - "shape:perf:09667", - "shape:perf:09668", - "shape:perf:09669", - "shape:perf:09670", - "shape:perf:09671", - "shape:perf:09672", - "shape:perf:09673", - "shape:perf:09674", - "shape:perf:09675", - "shape:perf:09676", - "shape:perf:09677", - "shape:perf:09678", - "shape:perf:09679", - "shape:perf:09680", - "shape:perf:09681", - "shape:perf:09682", - "shape:perf:09683", - "shape:perf:09684", - "shape:perf:09685", - "shape:perf:09686", - "shape:perf:09687", - "shape:perf:09688", - "shape:perf:09689", - "shape:perf:09690", - "shape:perf:09691", - "shape:perf:09692", - "shape:perf:09693", - "shape:perf:09694", - "shape:perf:09695", - "shape:perf:09696", - "shape:perf:09697", - "shape:perf:09698", - "shape:perf:09699", - "shape:perf:09700", - "shape:perf:09701", - "shape:perf:09702", - "shape:perf:09703", - "shape:perf:09704", - "shape:perf:09705", - "shape:perf:09706", - "shape:perf:09707", - "shape:perf:09708", - "shape:perf:09709", - "shape:perf:09710", - "shape:perf:09711", - "shape:perf:09712", - "shape:perf:09713", - "shape:perf:09714", - "shape:perf:09715", - "shape:perf:09716", - "shape:perf:09717", - "shape:perf:09718", - "shape:perf:09719", - "shape:perf:09720", - "shape:perf:09721", - "shape:perf:09722", - "shape:perf:09723", - "shape:perf:09724", - "shape:perf:09725", - "shape:perf:09726", - "shape:perf:09727", - "shape:perf:09728", - "shape:perf:09729", - "shape:perf:09730", - "shape:perf:09731", - "shape:perf:09732", - "shape:perf:09733", - "shape:perf:09734", - "shape:perf:09735", - "shape:perf:09736", - "shape:perf:09737", - "shape:perf:09738", - "shape:perf:09739", - "shape:perf:09740", - "shape:perf:09741", - "shape:perf:09742", - "shape:perf:09743", - "shape:perf:09744", - "shape:perf:09745", - "shape:perf:09746", - "shape:perf:09747", - "shape:perf:09748", - "shape:perf:09749", - "shape:perf:09750", - "shape:perf:09751", - "shape:perf:09752", - "shape:perf:09753", - "shape:perf:09754", - "shape:perf:09755", - "shape:perf:09756", - "shape:perf:09757", - "shape:perf:09758", - "shape:perf:09759", - "shape:perf:09760", - "shape:perf:09761", - "shape:perf:09762", - "shape:perf:09763", - "shape:perf:09764", - "shape:perf:09765", - "shape:perf:09766", - "shape:perf:09767", - "shape:perf:09768", - "shape:perf:09769", - "shape:perf:09770", - "shape:perf:09771", - "shape:perf:09772", - "shape:perf:09773", - "shape:perf:09774", - "shape:perf:09775", - "shape:perf:09776", - "shape:perf:09777", - "shape:perf:09778", - "shape:perf:09779", - "shape:perf:09780", - "shape:perf:09781", - "shape:perf:09782", - "shape:perf:09783", - "shape:perf:09784", - "shape:perf:09785", - "shape:perf:09786", - "shape:perf:09787", - "shape:perf:09788", - "shape:perf:09789", - "shape:perf:09790", - "shape:perf:09791", - "shape:perf:09792", - "shape:perf:09793", - "shape:perf:09794", - "shape:perf:09795", - "shape:perf:09796", - "shape:perf:09797", - "shape:perf:09798", - "shape:perf:09799", - "shape:perf:09800", - "shape:perf:09801", - "shape:perf:09802", - "shape:perf:09803", - "shape:perf:09804", - "shape:perf:09805", - "shape:perf:09806", - "shape:perf:09807", - "shape:perf:09808", - "shape:perf:09809", - "shape:perf:09810", - "shape:perf:09811", - "shape:perf:09812", - "shape:perf:09813", - "shape:perf:09814", - "shape:perf:09815", - "shape:perf:09816", - "shape:perf:09817", - "shape:perf:09818", - "shape:perf:09819", - "shape:perf:09820", - "shape:perf:09821", - "shape:perf:09822", - "shape:perf:09823", - "shape:perf:09824", - "shape:perf:09825", - "shape:perf:09826", - "shape:perf:09827", - "shape:perf:09828", - "shape:perf:09829", - "shape:perf:09830", - "shape:perf:09831", - "shape:perf:09832", - "shape:perf:09833", - "shape:perf:09834", - "shape:perf:09835", - "shape:perf:09836", - "shape:perf:09837", - "shape:perf:09838", - "shape:perf:09839", - "shape:perf:09840", - "shape:perf:09841", - "shape:perf:09842", - "shape:perf:09843", - "shape:perf:09844", - "shape:perf:09845", - "shape:perf:09846", - "shape:perf:09847", - "shape:perf:09848", - "shape:perf:09849", - "shape:perf:09850", - "shape:perf:09851", - "shape:perf:09852", - "shape:perf:09853", - "shape:perf:09854", - "shape:perf:09855", - "shape:perf:09856", - "shape:perf:09857", - "shape:perf:09858", - "shape:perf:09859", - "shape:perf:09860", - "shape:perf:09861", - "shape:perf:09862", - "shape:perf:09863", - "shape:perf:09864", - "shape:perf:09865", - "shape:perf:09866", - "shape:perf:09867", - "shape:perf:09868", - "shape:perf:09869", - "shape:perf:09870", - "shape:perf:09871", - "shape:perf:09872", - "shape:perf:09873", - "shape:perf:09874", - "shape:perf:09875", - "shape:perf:09876", - "shape:perf:09877", - "shape:perf:09878", - "shape:perf:09879", - "shape:perf:09880", - "shape:perf:09881", - "shape:perf:09882", - "shape:perf:09883", - "shape:perf:09884", - "shape:perf:09885", - "shape:perf:09886", - "shape:perf:09887", - "shape:perf:09888", - "shape:perf:09889", - "shape:perf:09890", - "shape:perf:09891", - "shape:perf:09892", - "shape:perf:09893", - "shape:perf:09894", - "shape:perf:09895", - "shape:perf:09896", - "shape:perf:09897", - "shape:perf:09898", - "shape:perf:09899", - "shape:perf:09900", - "shape:perf:09901", - "shape:perf:09902", - "shape:perf:09903", - "shape:perf:09904", - "shape:perf:09905", - "shape:perf:09906", - "shape:perf:09907", - "shape:perf:09908", - "shape:perf:09909", - "shape:perf:09910", - "shape:perf:09911", - "shape:perf:09912", - "shape:perf:09913", - "shape:perf:09914", - "shape:perf:09915", - "shape:perf:09916", - "shape:perf:09917", - "shape:perf:09918", - "shape:perf:09919", - "shape:perf:09920", - "shape:perf:09921", - "shape:perf:09922", - "shape:perf:09923", - "shape:perf:09924", - "shape:perf:09925", - "shape:perf:09926", - "shape:perf:09927", - "shape:perf:09928", - "shape:perf:09929", - "shape:perf:09930", - "shape:perf:09931", - "shape:perf:09932", - "shape:perf:09933", - "shape:perf:09934", - "shape:perf:09935", - "shape:perf:09936", - "shape:perf:09937", - "shape:perf:09938", - "shape:perf:09939", - "shape:perf:09940", - "shape:perf:09941", - "shape:perf:09942", - "shape:perf:09943", - "shape:perf:09944", - "shape:perf:09945", - "shape:perf:09946", - "shape:perf:09947", - "shape:perf:09948", - "shape:perf:09949", - "shape:perf:09950", - "shape:perf:09951", - "shape:perf:09952", - "shape:perf:09953", - "shape:perf:09954", - "shape:perf:09955", - "shape:perf:09956", - "shape:perf:09957", - "shape:perf:09958", - "shape:perf:09959", - "shape:perf:09960", - "shape:perf:09961", - "shape:perf:09962", - "shape:perf:09963", - "shape:perf:09964", - "shape:perf:09965", - "shape:perf:09966", - "shape:perf:09967", - "shape:perf:09968", - "shape:perf:09969", - "shape:perf:09970", - "shape:perf:09971", - "shape:perf:09972", - "shape:perf:09973", - "shape:perf:09974", - "shape:perf:09975", - "shape:perf:09976", - "shape:perf:09977", - "shape:perf:09978", - "shape:perf:09979", - "shape:perf:09980", - "shape:perf:09981", - "shape:perf:09982", - "shape:perf:09983", - "shape:perf:09984", - "shape:perf:09985", - "shape:perf:09986", - "shape:perf:09987", - "shape:perf:09988", - "shape:perf:09989", - "shape:perf:09990", - "shape:perf:09991", - "shape:perf:09992", - "shape:perf:09993", - "shape:perf:09994", - "shape:perf:09995", - "shape:perf:09996", - "shape:perf:09997", - "shape:perf:09998", - "shape:perf:09999" - ] - } - }, - "fixture": { - "seed": 439041101, - "generator": "scripts/generate-v1-fixtures.mjs", - "generatedAt": "2026-07-17T00:00:00.000Z" - } -} diff --git a/fixtures/v1/rendering/all-shapes.json b/fixtures/v1/rendering/all-shapes.json deleted file mode 100644 index c8a5771..0000000 --- a/fixtures/v1/rendering/all-shapes.json +++ /dev/null @@ -1,402 +0,0 @@ -{ - "state": { - "doc": { - "pages": { - "page:fixtures": { - "id": "page:fixtures", - "name": "All features", - "shapeIds": [ - "shape:stencil-sticky", - "shape:stencil-process", - "shape:stencil-decision", - "shape:stencil-terminator", - "shape:stencil-card", - "shape:stencil-card-divider", - "shape:ellipse", - "shape:line", - "shape:arrow", - "shape:text", - "shape:stroke", - "shape:markdown" - ] - }, - "page:ordering": { - "id": "page:ordering", - "name": "Persisted ordering", - "shapeIds": [ - "shape:ordering-back", - "shape:ordering-middle", - "shape:ordering-front" - ] - } - }, - "shapes": { - "shape:stencil-process": { - "id": "shape:stencil-process", - "type": "rect", - "pageId": "page:fixtures", - "x": 40, - "y": 40, - "rot": 0, - "props": { - "w": 120, - "h": 80, - "fill": "#ffffff", - "stroke": "#000000", - "radius": 0 - } - }, - "shape:stencil-decision": { - "id": "shape:stencil-decision", - "type": "rect", - "pageId": "page:fixtures", - "x": 220, - "y": 40, - "rot": 0.7853981633974483, - "props": { - "w": 80, - "h": 80, - "fill": "#ffffff", - "stroke": "#000000", - "radius": 0 - } - }, - "shape:stencil-terminator": { - "id": "shape:stencil-terminator", - "type": "rect", - "pageId": "page:fixtures", - "x": 380, - "y": 40, - "rot": 0, - "props": { - "w": 120, - "h": 60, - "fill": "#ffffff", - "stroke": "#000000", - "radius": 30 - } - }, - "shape:stencil-sticky": { - "id": "shape:stencil-sticky", - "type": "rect", - "pageId": "page:fixtures", - "x": 560, - "y": 40, - "rot": 0, - "props": { - "w": 200, - "h": 200, - "fill": "#fff740", - "stroke": "transparent", - "radius": 0 - } - }, - "shape:stencil-card": { - "id": "shape:stencil-card", - "type": "rect", - "pageId": "page:fixtures", - "x": 40, - "y": 220, - "rot": 0, - "groupId": "group:card", - "props": { - "w": 300, - "h": 200, - "fill": "#ffffff", - "stroke": "#333333", - "radius": 8 - } - }, - "shape:stencil-card-divider": { - "id": "shape:stencil-card-divider", - "type": "line", - "pageId": "page:fixtures", - "x": 40, - "y": 270, - "rot": 0, - "groupId": "group:card", - "props": { - "a": { - "x": 0, - "y": 0 - }, - "b": { - "x": 300, - "y": 0 - }, - "stroke": "#333333", - "width": 1 - } - }, - "shape:ellipse": { - "id": "shape:ellipse", - "type": "ellipse", - "pageId": "page:fixtures", - "x": 400, - "y": 280, - "rot": 0, - "props": { - "w": 150, - "h": 100, - "fill": "#dbeafe", - "stroke": "#1d4ed8" - } - }, - "shape:line": { - "id": "shape:line", - "type": "line", - "pageId": "page:fixtures", - "x": 400, - "y": 430, - "rot": 0, - "props": { - "a": { - "x": 0, - "y": 0 - }, - "b": { - "x": 180, - "y": 60 - }, - "stroke": "#334155", - "width": 3 - } - }, - "shape:arrow": { - "id": "shape:arrow", - "type": "arrow", - "pageId": "page:fixtures", - "x": 0, - "y": 0, - "rot": 0, - "props": { - "points": [ - { - "x": 160, - "y": 80 - }, - { - "x": 350, - "y": 160 - }, - { - "x": 475, - "y": 330 - } - ], - "start": { - "kind": "bound", - "bindingId": "binding:arrow-start" - }, - "end": { - "kind": "bound", - "bindingId": "binding:arrow-end" - }, - "style": { - "stroke": "#7c3aed", - "width": 2, - "headStart": true, - "headEnd": true, - "dash": [ - 8, - 4 - ] - }, - "routing": { - "kind": "orthogonal", - "cornerRadius": 8 - }, - "label": { - "text": "bound route", - "align": "center", - "offset": 12 - } - } - }, - "shape:text": { - "id": "shape:text", - "type": "text", - "pageId": "page:fixtures", - "x": 620, - "y": 300, - "rot": 0, - "groupId": "group:content", - "props": { - "text": "Inkfinite v1 fixture", - "fontSize": 18, - "fontFamily": "Inter", - "color": "#111827", - "w": 180 - } - }, - "shape:stroke": { - "id": "shape:stroke", - "type": "stroke", - "pageId": "page:fixtures", - "x": 0, - "y": 0, - "rot": 0, - "props": { - "points": [ - [ - 620, - 390, - 0.2 - ], - [ - 650, - 410, - 0.6 - ], - [ - 690, - 395, - 0.9 - ], - [ - 730, - 430, - 0.5 - ] - ], - "style": { - "color": "#dc2626", - "opacity": 0.75 - }, - "brush": { - "size": 12, - "thinning": 0.5, - "smoothing": 0.5, - "streamline": 0.5, - "simulatePressure": false - } - } - }, - "shape:markdown": { - "id": "shape:markdown", - "type": "markdown", - "pageId": "page:fixtures", - "x": 40, - "y": 500, - "rot": 0, - "groupId": "group:content", - "props": { - "md": "# Frozen Markdown\n\n- **bold** item\n- `code` item\n\n```ts\nconst version = 1;\n```", - "w": 360, - "h": 240, - "fontSize": 16, - "fontFamily": "Inter", - "color": "#0f172a", - "bg": "#f8fafc", - "border": "#94a3b8" - } - }, - "shape:ordering-back": { - "id": "shape:ordering-back", - "type": "rect", - "pageId": "page:ordering", - "x": 100, - "y": 100, - "rot": 0, - "props": { - "w": 180, - "h": 180, - "fill": "#ef4444", - "stroke": "#7f1d1d", - "radius": 0 - } - }, - "shape:ordering-middle": { - "id": "shape:ordering-middle", - "type": "ellipse", - "pageId": "page:ordering", - "x": 130, - "y": 130, - "rot": 0, - "props": { - "w": 180, - "h": 180, - "fill": "#22c55e", - "stroke": "#14532d" - } - }, - "shape:ordering-front": { - "id": "shape:ordering-front", - "type": "rect", - "pageId": "page:ordering", - "x": 160, - "y": 160, - "rot": 0, - "props": { - "w": 180, - "h": 180, - "fill": "#3b82f6", - "stroke": "#1e3a8a", - "radius": 16 - } - } - }, - "bindings": { - "binding:arrow-start": { - "id": "binding:arrow-start", - "type": "arrow-end", - "fromShapeId": "shape:arrow", - "toShapeId": "shape:stencil-process", - "handle": "start", - "anchor": { - "kind": "edge", - "nx": 1, - "ny": 0 - } - }, - "binding:arrow-end": { - "id": "binding:arrow-end", - "type": "arrow-end", - "fromShapeId": "shape:arrow", - "toShapeId": "shape:ellipse", - "handle": "end", - "anchor": { - "kind": "center" - } - } - } - }, - "ui": { - "currentPageId": "page:fixtures", - "selectionIds": [ - "shape:markdown" - ], - "toolId": "select" - }, - "camera": { - "x": 400, - "y": 300, - "zoom": 1 - } - }, - "expected": { - "shapeTypes": [ - "arrow", - "ellipse", - "line", - "markdown", - "rect", - "stroke", - "text" - ], - "orderedShapeIds": [ - "shape:stencil-sticky", - "shape:stencil-process", - "shape:stencil-decision", - "shape:stencil-terminator", - "shape:stencil-card", - "shape:stencil-card-divider", - "shape:ellipse", - "shape:line", - "shape:arrow", - "shape:text", - "shape:stroke", - "shape:markdown" - ] - } -} diff --git a/fixtures/v1/web/all-features.web.json b/fixtures/v1/web/all-features.web.json deleted file mode 100644 index b2e0aae..0000000 --- a/fixtures/v1/web/all-features.web.json +++ /dev/null @@ -1,396 +0,0 @@ -{ - "board": { - "id": "board:v1-fixtures", - "name": "V1 compatibility fixtures", - "createdAt": 1784246400000, - "updatedAt": 1784246400000 - }, - "doc": { - "pages": { - "page:fixtures": { - "id": "page:fixtures", - "name": "All features", - "shapeIds": [ - "shape:stencil-sticky", - "shape:stencil-process", - "shape:stencil-decision", - "shape:stencil-terminator", - "shape:stencil-card", - "shape:stencil-card-divider", - "shape:ellipse", - "shape:line", - "shape:arrow", - "shape:text", - "shape:stroke", - "shape:markdown" - ] - }, - "page:ordering": { - "id": "page:ordering", - "name": "Persisted ordering", - "shapeIds": [ - "shape:ordering-back", - "shape:ordering-middle", - "shape:ordering-front" - ] - } - }, - "shapes": { - "shape:stencil-process": { - "id": "shape:stencil-process", - "type": "rect", - "pageId": "page:fixtures", - "x": 40, - "y": 40, - "rot": 0, - "props": { - "w": 120, - "h": 80, - "fill": "#ffffff", - "stroke": "#000000", - "radius": 0 - } - }, - "shape:stencil-decision": { - "id": "shape:stencil-decision", - "type": "rect", - "pageId": "page:fixtures", - "x": 220, - "y": 40, - "rot": 0.7853981633974483, - "props": { - "w": 80, - "h": 80, - "fill": "#ffffff", - "stroke": "#000000", - "radius": 0 - } - }, - "shape:stencil-terminator": { - "id": "shape:stencil-terminator", - "type": "rect", - "pageId": "page:fixtures", - "x": 380, - "y": 40, - "rot": 0, - "props": { - "w": 120, - "h": 60, - "fill": "#ffffff", - "stroke": "#000000", - "radius": 30 - } - }, - "shape:stencil-sticky": { - "id": "shape:stencil-sticky", - "type": "rect", - "pageId": "page:fixtures", - "x": 560, - "y": 40, - "rot": 0, - "props": { - "w": 200, - "h": 200, - "fill": "#fff740", - "stroke": "transparent", - "radius": 0 - } - }, - "shape:stencil-card": { - "id": "shape:stencil-card", - "type": "rect", - "pageId": "page:fixtures", - "x": 40, - "y": 220, - "rot": 0, - "groupId": "group:card", - "props": { - "w": 300, - "h": 200, - "fill": "#ffffff", - "stroke": "#333333", - "radius": 8 - } - }, - "shape:stencil-card-divider": { - "id": "shape:stencil-card-divider", - "type": "line", - "pageId": "page:fixtures", - "x": 40, - "y": 270, - "rot": 0, - "groupId": "group:card", - "props": { - "a": { - "x": 0, - "y": 0 - }, - "b": { - "x": 300, - "y": 0 - }, - "stroke": "#333333", - "width": 1 - } - }, - "shape:ellipse": { - "id": "shape:ellipse", - "type": "ellipse", - "pageId": "page:fixtures", - "x": 400, - "y": 280, - "rot": 0, - "props": { - "w": 150, - "h": 100, - "fill": "#dbeafe", - "stroke": "#1d4ed8" - } - }, - "shape:line": { - "id": "shape:line", - "type": "line", - "pageId": "page:fixtures", - "x": 400, - "y": 430, - "rot": 0, - "props": { - "a": { - "x": 0, - "y": 0 - }, - "b": { - "x": 180, - "y": 60 - }, - "stroke": "#334155", - "width": 3 - } - }, - "shape:arrow": { - "id": "shape:arrow", - "type": "arrow", - "pageId": "page:fixtures", - "x": 0, - "y": 0, - "rot": 0, - "props": { - "points": [ - { - "x": 160, - "y": 80 - }, - { - "x": 350, - "y": 160 - }, - { - "x": 475, - "y": 330 - } - ], - "start": { - "kind": "bound", - "bindingId": "binding:arrow-start" - }, - "end": { - "kind": "bound", - "bindingId": "binding:arrow-end" - }, - "style": { - "stroke": "#7c3aed", - "width": 2, - "headStart": true, - "headEnd": true, - "dash": [ - 8, - 4 - ] - }, - "routing": { - "kind": "orthogonal", - "cornerRadius": 8 - }, - "label": { - "text": "bound route", - "align": "center", - "offset": 12 - } - } - }, - "shape:text": { - "id": "shape:text", - "type": "text", - "pageId": "page:fixtures", - "x": 620, - "y": 300, - "rot": 0, - "groupId": "group:content", - "props": { - "text": "Inkfinite v1 fixture", - "fontSize": 18, - "fontFamily": "Inter", - "color": "#111827", - "w": 180 - } - }, - "shape:stroke": { - "id": "shape:stroke", - "type": "stroke", - "pageId": "page:fixtures", - "x": 0, - "y": 0, - "rot": 0, - "props": { - "points": [ - [ - 620, - 390, - 0.2 - ], - [ - 650, - 410, - 0.6 - ], - [ - 690, - 395, - 0.9 - ], - [ - 730, - 430, - 0.5 - ] - ], - "style": { - "color": "#dc2626", - "opacity": 0.75 - }, - "brush": { - "size": 12, - "thinning": 0.5, - "smoothing": 0.5, - "streamline": 0.5, - "simulatePressure": false - } - } - }, - "shape:markdown": { - "id": "shape:markdown", - "type": "markdown", - "pageId": "page:fixtures", - "x": 40, - "y": 500, - "rot": 0, - "groupId": "group:content", - "props": { - "md": "# Frozen Markdown\n\n- **bold** item\n- `code` item\n\n```ts\nconst version = 1;\n```", - "w": 360, - "h": 240, - "fontSize": 16, - "fontFamily": "Inter", - "color": "#0f172a", - "bg": "#f8fafc", - "border": "#94a3b8" - } - }, - "shape:ordering-back": { - "id": "shape:ordering-back", - "type": "rect", - "pageId": "page:ordering", - "x": 100, - "y": 100, - "rot": 0, - "props": { - "w": 180, - "h": 180, - "fill": "#ef4444", - "stroke": "#7f1d1d", - "radius": 0 - } - }, - "shape:ordering-middle": { - "id": "shape:ordering-middle", - "type": "ellipse", - "pageId": "page:ordering", - "x": 130, - "y": 130, - "rot": 0, - "props": { - "w": 180, - "h": 180, - "fill": "#22c55e", - "stroke": "#14532d" - } - }, - "shape:ordering-front": { - "id": "shape:ordering-front", - "type": "rect", - "pageId": "page:ordering", - "x": 160, - "y": 160, - "rot": 0, - "props": { - "w": 180, - "h": 180, - "fill": "#3b82f6", - "stroke": "#1e3a8a", - "radius": 16 - } - } - }, - "bindings": { - "binding:arrow-start": { - "id": "binding:arrow-start", - "type": "arrow-end", - "fromShapeId": "shape:arrow", - "toShapeId": "shape:stencil-process", - "handle": "start", - "anchor": { - "kind": "edge", - "nx": 1, - "ny": 0 - } - }, - "binding:arrow-end": { - "id": "binding:arrow-end", - "type": "arrow-end", - "fromShapeId": "shape:arrow", - "toShapeId": "shape:ellipse", - "handle": "end", - "anchor": { - "kind": "center" - } - } - } - }, - "order": { - "pageIds": [ - "page:ordering", - "page:fixtures" - ], - "shapeOrder": { - "page:fixtures": [ - "shape:stencil-sticky", - "shape:stencil-process", - "shape:stencil-decision", - "shape:stencil-terminator", - "shape:stencil-card", - "shape:stencil-card-divider", - "shape:ellipse", - "shape:line", - "shape:arrow", - "shape:text", - "shape:stroke", - "shape:markdown" - ], - "page:ordering": [ - "shape:ordering-back", - "shape:ordering-middle", - "shape:ordering-front" - ] - } - } -} diff --git a/package.json b/package.json index 4880b67..6db293a 100644 --- a/package.json +++ b/package.json @@ -14,9 +14,7 @@ "dev:web": "pnpm --filter @inkfinite/web dev", "format": "prettier --write .", "format:check": "prettier --check .", - "fixtures:v1": "node scripts/generate-v1-fixtures.mjs", - "baseline:v1": "node scripts/capture-v1-performance.mjs --output fixtures/v1/performance/baseline.json", - "baseline:v2": "node scripts/capture-v2-performance.mjs --output fixtures/v2/performance/v2-11.json", + "performance:capture": "node scripts/capture-performance.mjs --output fixtures/native/performance/rendering-budget.json", "bindings:generate": "cargo run -p inkfinite-cli --bin generate-bindings", "bindings:check": "cargo run -p inkfinite-cli --bin generate-bindings -- --check", "bindings:test": "pnpm --filter @inkfinite/bindings test" diff --git a/packages/bindings/src/conformance.ts b/packages/bindings/src/conformance.ts index dcb4c38..79f86f5 100644 --- a/packages/bindings/src/conformance.ts +++ b/packages/bindings/src/conformance.ts @@ -32,7 +32,7 @@ const shape: ShapeRecord = { actor_id: "actor:fixture", origin: "system", timestamp: 1_700_000_000_000, - source: "v2-06", + source: "native-fixture", }, }, style: { opacity: 1, fill_opacity: null, stroke_opacity: null }, @@ -52,7 +52,7 @@ const transaction: TransactionDraft = { actor_id: "actor:fixture", origin: "system", base_heads: ["head:fixture"], - description: "V2-06 shared binding fixture", + description: "Native shared binding fixture", operations: [{ type: "patch_shape", shape_id: shape.id, patch, expected_version: 1 }], timestamp: 1_700_000_000_000, }; diff --git a/packages/bindings/src/model.ts b/packages/bindings/src/model.ts index a6a4a1c..34985b2 100644 --- a/packages/bindings/src/model.ts +++ b/packages/bindings/src/model.ts @@ -117,7 +117,7 @@ scale_y: number, }; /** * Origin of a durable record or transaction. */ -export type Origin = "human" | "agent" | "import" | "sync" | "system"; +export type Origin = "human" | "agent" | "sync" | "system"; /** * Attribution retained with durable content. @@ -136,7 +136,7 @@ origin: Origin, */ timestamp: Timestamp, /** - * Optional source identifier, such as an imported filename or proposal ID. + * Optional source identifier, such as an external reference or proposal ID. */ source: string | null, }; diff --git a/packages/core/src/export.ts b/packages/core/src/export.ts index 7da89cd..0f42705 100644 --- a/packages/core/src/export.ts +++ b/packages/core/src/export.ts @@ -255,7 +255,7 @@ function textToSVG(shape: TextShape, transform: string): string { * * Uses foreignObject to embed HTML for markdown rendering. * - * For better compatibility, the markdown is exported as plain text with basic formatting preserved. + * For broader interoperability, the markdown is exported as plain text with basic formatting preserved. */ function markdownToSVG(shape: MarkdownShape, transform: string): string { const { md, w, h, fontSize, fontFamily, color, bg, border } = shape.props; diff --git a/packages/core/src/model.ts b/packages/core/src/model.ts index 81db902..7f073ff 100644 --- a/packages/core/src/model.ts +++ b/packages/core/src/model.ts @@ -13,9 +13,9 @@ export function createId(prefix?: string): string { export type PageRecord = { id: string; name: string; - /** Flat compatibility order. Layer order and each layer's shape order are authoritative. */ + /** Flat draw-order projection. Layer order and each layer's shape order are authoritative. */ shapeIds: string[]; - /** Layer IDs in back-to-front order. Older documents omit this field. */ + /** Layer IDs in back-to-front order. */ layerIds?: string[]; }; @@ -158,14 +158,14 @@ export type BaseShape = { x: number; y: number; rot: number; - /** Opacity applied to the complete shape. Older documents default to `1`. */ + /** Opacity applied to the complete shape; omitted values use `1`. */ opacity?: number; - /** Opacity applied only to fills. Older documents default to `1`. */ + /** Opacity applied only to fills; omitted values use `1`. */ fillOpacity?: number; - /** Opacity applied only to strokes. Older documents default to `1`. */ + /** Opacity applied only to strokes; omitted values use `1`. */ strokeOpacity?: number; groupId?: string; - /** Owning layer. Older documents are assigned to their page's default layer on load. */ + /** Owning layer assigned when the shape enters an editor document. */ layerId?: string; }; export type RectShape = BaseShape & { type: 'rect'; props: RectProps }; @@ -315,7 +315,7 @@ export const BindingRecord = { export type Document = { pages: Record; - /** Layers indexed by stable ID. Older persisted documents omit this field. */ + /** Layers indexed by stable ID. */ layers?: Record; shapes: Record; bindings: Record; @@ -353,13 +353,13 @@ export const Document = { }; /** - * Backfills the layer structure used by the v2 editor. + * Ensures every page has a valid layer structure for the editor. * - * The migration is deterministic and idempotent. Existing flat shape order is - * preserved exactly in a stable default layer, while already-layered documents - * retain their layer and child order. + * Normalization is deterministic and idempotent. Existing flat shape order is + * preserved exactly in a stable default layer, while layered documents retain + * their layer and child order. */ -export function withDocumentLayers(document: Document): Document { +export function ensureDocumentLayers(document: Document): Document { const pages = Object.fromEntries(Object.entries(document.pages).map(([id, page]) => [id, PageRecord.clone(page)])); const layers = Object.fromEntries( Object.entries(document.layers ?? {}).map(([id, layer]) => [id, LayerRecord.clone(layer)]) diff --git a/packages/core/src/persistence/desktop.ts b/packages/core/src/persistence/desktop.ts index a500e4f..de10ecf 100644 --- a/packages/core/src/persistence/desktop.ts +++ b/packages/core/src/persistence/desktop.ts @@ -1,12 +1,3 @@ -import type { BindingRecord, Document, PageRecord, ShapeRecord } from '../model'; -import type { DocOrder, LoadedDoc } from './document'; -import type { BoardMeta } from './repo'; - -/** - * Desktop file representation - combines board metadata with document content - */ -export type DesktopFileData = { board: BoardMeta; doc: Document; order: DocOrder }; - /** * File handle for desktop - just the path */ @@ -85,43 +76,3 @@ export interface DesktopFileOps { */ deleteFile(path: string): Promise; } - -/** - * Create a loaded document from desktop file data - */ -export function loadedDocFromFileData(data: DesktopFileData): LoadedDoc { - return { - pages: data.doc.pages, - layers: data.doc.layers ?? data.order.layers, - shapes: data.doc.shapes, - bindings: data.doc.bindings, - order: data.order - }; -} - -/** - * Create file data from document parts - */ -export function createFileData( - board: BoardMeta, - pages: Record, - shapes: Record, - bindings: Record, - order: DocOrder -): DesktopFileData { - return { board, doc: { pages, shapes, bindings }, order }; -} - -export function parseDesktopFile(content: string): DesktopFileData { - const data = JSON.parse(content) as DesktopFileData; - - if (!data.board || !data.doc || !data.order) { - throw new Error('Invalid file format: missing required fields'); - } - - return data; -} - -export function serializeDesktopFile(data: DesktopFileData): string { - return JSON.stringify(data, null, 2); -} diff --git a/packages/core/src/persistence/document.ts b/packages/core/src/persistence/document.ts index e61804a..2f04df2 100644 --- a/packages/core/src/persistence/document.ts +++ b/packages/core/src/persistence/document.ts @@ -15,7 +15,7 @@ export type DocOrder = { pageIds: string[]; /** Optional per-page shape order overrides. */ shapeOrder?: Record; - /** Complete layer records, stored with ordering metadata by legacy adapters. */ + /** Complete layer records, stored with ordering metadata by editor adapters. */ layers?: Record; }; diff --git a/packages/core/src/persistence/stats.ts b/packages/core/src/persistence/stats.ts index fc16e53..5a2e4dd 100644 --- a/packages/core/src/persistence/stats.ts +++ b/packages/core/src/persistence/stats.ts @@ -10,15 +10,11 @@ export type BoardStats = { export type SchemaInfo = { declaredVersion: number; installedVersion: number }; -export type MigrationInfo = { id: string; appliedAt: Timestamp }; - export type BoardInspectorData = { /** Human-readable storage backend supplied by the application adapter. */ - storageType: string; - stats: BoardStats; - schema: SchemaInfo; - migrations: MigrationInfo[]; - pendingMigrations: string[]; + storageType: string; + stats: BoardStats; + schema: SchemaInfo; }; /** @@ -53,11 +49,3 @@ export const BoardStatsOps = { return `${(bytes / (1024 * 1024)).toFixed(1)} MB`; }, }; - -/** - * Determine pending migrations by comparing known migration list with applied migrations. - */ -export function getPendingMigrations(knownMigrationIds: string[], appliedMigrations: MigrationInfo[]): string[] { - const appliedIds = new Set(appliedMigrations.map((m) => m.id)); - return knownMigrationIds.filter((id) => !appliedIds.has(id)); -} diff --git a/packages/core/src/reactivity.ts b/packages/core/src/reactivity.ts index a0d0f0f..73280dd 100644 --- a/packages/core/src/reactivity.ts +++ b/packages/core/src/reactivity.ts @@ -10,7 +10,7 @@ import { type HistoryState } from './history'; import type { Document, LayerRecord, PageRecord, ShapeRecord } from './model'; -import { Document as DocumentOps, withDocumentLayers } from './model'; +import { Document as DocumentOps, ensureDocumentLayers } from './model'; export type ToolId = 'select' | 'rect' | 'ellipse' | 'line' | 'arrow' | 'text' | 'pen' | 'markdown'; @@ -267,7 +267,7 @@ function enforceInvariants(state: EditorState): EditorState { ) } : state.doc; - const doc = withDocumentLayers(taggedDocument); + const doc = ensureDocumentLayers(taggedDocument); const pages = Object.keys(doc.pages); const shapes = doc.shapes; diff --git a/packages/core/tests/layers.test.ts b/packages/core/tests/layers.test.ts index 383f986..6149e1a 100644 --- a/packages/core/tests/layers.test.ts +++ b/packages/core/tests/layers.test.ts @@ -7,7 +7,7 @@ import { patchLayer, ShapeRecord, Store, - withDocumentLayers + ensureDocumentLayers } from '../src'; import { describe, expect, it } from 'vitest'; @@ -33,12 +33,12 @@ function layeredState() { } describe('layers', () => { - it('backfills one stable default layer without changing order and is idempotent', () => { - const migrated = layeredState().doc; - const layerId = migrated.pages.page.layerIds?.[0]; + it('assigns one stable default layer without changing order and is idempotent', () => { + const normalized = layeredState().doc; + const layerId = normalized.pages.page.layerIds?.[0]; expect(layerId).toBe('layer:page:default'); - expect(migrated.layers?.[layerId!].shapeIds).toEqual(['back', 'front']); - expect(withDocumentLayers(migrated)).toEqual(migrated); + expect(normalized.layers?.[layerId!].shapeIds).toEqual(['back', 'front']); + expect(ensureDocumentLayers(normalized)).toEqual(normalized); }); it('places new shapes on the active layer and excludes hidden or locked layers from interaction', () => { diff --git a/packages/core/tests/stats.test.ts b/packages/core/tests/stats.test.ts index 1d56e9c..f444ba3 100644 --- a/packages/core/tests/stats.test.ts +++ b/packages/core/tests/stats.test.ts @@ -1,6 +1,5 @@ import { describe, expect, it } from "vitest"; -import type { MigrationInfo } from "../src/persistence/stats"; -import { BoardStatsOps, getPendingMigrations } from "../src/persistence/stats"; +import { BoardStatsOps } from "../src/persistence/stats"; describe("BoardStatsOps", () => { describe("create", () => { @@ -64,45 +63,3 @@ describe("BoardStatsOps", () => { }); }); }); - -describe("getPendingMigrations", () => { - it("returns empty array when all migrations are applied", () => { - const knownIds = ["MIG-0001", "MIG-0002"]; - const applied: MigrationInfo[] = [{ id: "MIG-0001", appliedAt: 1000 }, { id: "MIG-0002", appliedAt: 2000 }]; - - const pending = getPendingMigrations(knownIds, applied); - expect(pending).toEqual([]); - }); - - it("returns pending migrations", () => { - const knownIds = ["MIG-0001", "MIG-0002", "MIG-0003"]; - const applied: MigrationInfo[] = [{ id: "MIG-0001", appliedAt: 1000 }]; - - const pending = getPendingMigrations(knownIds, applied); - expect(pending).toEqual(["MIG-0002", "MIG-0003"]); - }); - - it("handles no applied migrations", () => { - const knownIds = ["MIG-0001", "MIG-0002"]; - const applied: MigrationInfo[] = []; - - const pending = getPendingMigrations(knownIds, applied); - expect(pending).toEqual(["MIG-0001", "MIG-0002"]); - }); - - it("ignores applied migrations not in known list", () => { - const knownIds = ["MIG-0001", "MIG-0002"]; - const applied: MigrationInfo[] = [{ id: "MIG-0001", appliedAt: 1000 }, { id: "MIG-0003", appliedAt: 2000 }]; - - const pending = getPendingMigrations(knownIds, applied); - expect(pending).toEqual(["MIG-0002"]); - }); - - it("preserves order of known migrations", () => { - const knownIds = ["MIG-0001", "MIG-0002", "MIG-0003", "MIG-0004"]; - const applied: MigrationInfo[] = [{ id: "MIG-0002", appliedAt: 2000 }, { id: "MIG-0004", appliedAt: 4000 }]; - - const pending = getPendingMigrations(knownIds, applied); - expect(pending).toEqual(["MIG-0001", "MIG-0003"]); - }); -}); diff --git a/packages/renderer/tests/v1-rendering-baseline.test.ts b/packages/renderer/tests/v1-rendering-baseline.test.ts deleted file mode 100644 index 75ed9a9..0000000 --- a/packages/renderer/tests/v1-rendering-baseline.test.ts +++ /dev/null @@ -1,107 +0,0 @@ -import { readFileSync } from "node:fs"; -import { dirname, resolve } from "node:path"; -import { fileURLToPath } from "node:url"; -import { Store, type EditorState } from "@inkfinite/core"; -import { afterEach, beforeEach, describe, expect, it, vi } from "vitest"; -import { createRenderer } from "../src"; - -const repositoryRoot = resolve(dirname(fileURLToPath(import.meta.url)), "../../.."); - -function readRenderingFixture() { - return JSON.parse( - readFileSync(resolve(repositoryRoot, "fixtures/v1/rendering/all-shapes.json"), "utf8"), - ) as { state: EditorState; expected: { shapeTypes: string[]; orderedShapeIds: string[] } }; -} - -describe("v1 rendering baseline", () => { - let canvas: HTMLCanvasElement; - let context: CanvasRenderingContext2D; - let scheduledFrames: FrameRequestCallback[]; - - beforeEach(() => { - canvas = document.createElement("canvas"); - scheduledFrames = []; - context = { - canvas, - save: vi.fn(), - restore: vi.fn(), - scale: vi.fn(), - translate: vi.fn(), - rotate: vi.fn(), - clearRect: vi.fn(), - fillRect: vi.fn(), - strokeRect: vi.fn(), - fillText: vi.fn(), - measureText: vi.fn((text: string) => ({ width: text.length * 8 }) as TextMetrics), - beginPath: vi.fn(), - moveTo: vi.fn(), - lineTo: vi.fn(), - arc: vi.fn(), - arcTo: vi.fn(), - ellipse: vi.fn(), - rect: vi.fn(), - closePath: vi.fn(), - fill: vi.fn(), - stroke: vi.fn(), - setLineDash: vi.fn(), - fillStyle: "", - strokeStyle: "", - lineWidth: 1, - font: "", - textAlign: "start", - textBaseline: "alphabetic", - globalAlpha: 1, - } as unknown as CanvasRenderingContext2D; - vi.spyOn(canvas, "getContext").mockReturnValue(context); - vi.spyOn(canvas, "getBoundingClientRect").mockReturnValue({ - left: 0, - top: 0, - right: 800, - bottom: 600, - width: 800, - height: 600, - x: 0, - y: 0, - toJSON: () => ({}), - }); - globalThis.requestAnimationFrame = vi.fn((callback: FrameRequestCallback) => { - scheduledFrames.push(callback); - return scheduledFrames.length; - }); - globalThis.cancelAnimationFrame = vi.fn(); - }); - - afterEach(() => vi.restoreAllMocks()); - - it("draws the complete frozen fixture in persisted order", () => { - const fixture = readRenderingFixture(); - const store = new Store(fixture.state); - const renderer = createRenderer(canvas, store, { - snapProvider: { get: () => ({ snapEnabled: false, gridEnabled: false, gridSize: 25 }) }, - }); - - const frame = scheduledFrames.shift(); - expect(frame).toBeDefined(); - frame?.(0); - - const shapeTranslations = vi.mocked(context.translate).mock.calls - .slice(2) - .map(([x, y]) => [x, y]); - const expectedTranslations = fixture.expected.orderedShapeIds.map((id) => { - const shape = fixture.state.doc.shapes[id]; - return [shape.x, shape.y]; - }); - expect(shapeTranslations.slice(0, expectedTranslations.length)).toEqual(expectedTranslations); - expect(new Set(Object.values(fixture.state.doc.shapes).map((shape) => shape.type))).toEqual( - new Set(fixture.expected.shapeTypes), - ); - expect(context.rect).toHaveBeenCalled(); - expect(context.ellipse).toHaveBeenCalled(); - expect(context.lineTo).toHaveBeenCalled(); - expect(context.fillText).toHaveBeenCalled(); - expect(context.fill).toHaveBeenCalled(); - expect(context.stroke).toHaveBeenCalled(); - - renderer.dispose(); - }); -}); diff --git a/packages/ui/src/lib/editor/canvas/Canvas.svelte b/packages/ui/src/lib/editor/canvas/Canvas.svelte index 8fa8989..60163ca 100644 --- a/packages/ui/src/lib/editor/canvas/Canvas.svelte +++ b/packages/ui/src/lib/editor/canvas/Canvas.svelte @@ -140,7 +140,11 @@ {#each liveProposal.affected_regions as region} {@const viewport = c.getViewport()} {@const bounds = region.bounds} - {@const topLeft = Camera.worldToScreen(c.store.getState().camera, { x: bounds.x, y: bounds.y }, viewport)} + {@const topLeft = Camera.worldToScreen( + c.store.getState().camera, + { x: bounds.x, y: bounds.y }, + viewport + )} {@const bottomRight = Camera.worldToScreen( c.store.getState().camera, { x: bounds.x + bounds.width, y: bounds.y + bounds.height }, @@ -148,7 +152,8 @@ )}
+ style={`left:${Math.min(topLeft.x, bottomRight.x)}px; top:${Math.min(topLeft.y, bottomRight.y)}px; width:${Math.abs(bottomRight.x - topLeft.x)}px; height:${Math.abs(bottomRight.y - topLeft.y)}px`}> + {/each} {/if} @@ -296,9 +301,9 @@ .proposal-ghost { position: absolute; box-sizing: border-box; - border: 1px dashed color-mix(in srgb, var(--accent) 82%, white 18%); - background: color-mix(in srgb, var(--accent) 13%, transparent); - box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 18%, transparent) inset; + border: 1px dashed color-mix(in srgb, var(--ink-accent) 82%, white 18%); + background: color-mix(in srgb, var(--ink-accent) 13%, transparent); + box-shadow: 0 0 0 1px color-mix(in srgb, var(--ink-accent) 18%, transparent) inset; animation: proposal-pulse 1.8s ease-in-out infinite; } @@ -314,9 +319,9 @@ .canvas-text-editor { position: absolute; - border: 1px solid var(--accent); - background: var(--surface); - color: var(--text); + border: 1px solid var(--ink-accent); + background: var(--ink-canvas); + color: var(--ink-text); padding: 0.25rem; transform-origin: top left; resize: none; @@ -331,9 +336,9 @@ .canvas-arrow-label-editor { position: absolute; - border: 1px solid var(--accent); - background: var(--surface); - color: var(--text); + border: 1px solid var(--ink-accent); + background: var(--ink-canvas); + color: var(--ink-text); padding: 6px 8px; transform-origin: center; outline: none; @@ -348,9 +353,9 @@ .canvas-markdown-editor { position: absolute; - border: 1px solid var(--accent); - background: var(--surface); - color: var(--text); + border: 1px solid var(--ink-accent); + background: var(--ink-canvas); + color: var(--ink-text); padding: 8px; transform-origin: top left; resize: none; diff --git a/packages/ui/src/lib/editor/components/ArrowPopover.svelte b/packages/ui/src/lib/editor/components/ArrowPopover.svelte index e94d2fc..7b544f6 100644 --- a/packages/ui/src/lib/editor/components/ArrowPopover.svelte +++ b/packages/ui/src/lib/editor/components/ArrowPopover.svelte @@ -197,9 +197,9 @@ } .arrow-popover__button { - border: 1px solid var(--border); - background: var(--surface); - color: var(--text); + border: 1px solid var(--ink-border); + background: var(--ink-canvas); + color: var(--ink-text); padding: 0.5rem 0.75rem; border-radius: 0.25rem; cursor: pointer; @@ -208,11 +208,11 @@ } .arrow-popover__button:hover:not(:disabled) { - background: var(--surface-elevated); + background: var(--ink-surface-raised); } .arrow-popover__button:focus { - outline: 2px solid var(--accent); + outline: 2px solid var(--ink-accent); outline-offset: 2px; } @@ -225,9 +225,9 @@ position: absolute; top: calc(100% + 4px); left: 0; - background: var(--surface); - color: var(--text); - border: 1px solid var(--border); + background: var(--ink-canvas); + color: var(--ink-text); + border: 1px solid var(--ink-border); border-radius: 6px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); padding: 0.75rem; @@ -247,7 +247,7 @@ .arrow-popover__label { font-size: 0.75rem; font-weight: 500; - color: var(--text); + color: var(--ink-text); } .arrow-popover__routing-buttons { @@ -257,9 +257,9 @@ .arrow-popover__routing-btn { flex: 1; - border: 1px solid var(--border); - background: var(--surface); - color: var(--text); + border: 1px solid var(--ink-border); + background: var(--ink-canvas); + color: var(--ink-text); padding: 6px 0.75rem; border-radius: 0.25rem; cursor: pointer; @@ -268,41 +268,41 @@ } .arrow-popover__routing-btn:hover { - background: var(--surface-elevated); + background: var(--ink-surface-raised); } .arrow-popover__routing-btn:focus { - outline: 2px solid var(--accent); + outline: 2px solid var(--ink-accent); outline-offset: 2px; } .arrow-popover__routing-btn--active { - background: var(--accent); - color: var(--surface); - border-color: var(--accent); + background: var(--ink-accent); + color: var(--ink-on-accent); + border-color: var(--ink-accent); } .arrow-popover__input { width: 100%; - border: 1px solid var(--border); - background: var(--surface); - color: var(--text); + border: 1px solid var(--ink-border); + background: var(--ink-canvas); + color: var(--ink-text); padding: 6px 8px; border-radius: 0.25rem; font-size: 13px; } .arrow-popover__input:focus { - outline: 2px solid var(--accent); + outline: 2px solid var(--ink-accent); outline-offset: 2px; } .arrow-popover__input::placeholder { - color: var(--text-muted); + color: var(--ink-text-muted); } .arrow-popover__divider { height: 1px; - background: var(--border); + background: var(--ink-border); } diff --git a/packages/ui/src/lib/editor/components/LayerPanel.svelte b/packages/ui/src/lib/editor/components/LayerPanel.svelte index fc52aa6..0029c74 100644 --- a/packages/ui/src/lib/editor/components/LayerPanel.svelte +++ b/packages/ui/src/lib/editor/components/LayerPanel.svelte @@ -183,10 +183,10 @@ max-height: calc(100% - 1.5rem); overflow: auto; padding: 0.75rem; - border: 1px solid var(--border); + border: 1px solid var(--ink-border); border-radius: 0.5rem; - background: var(--surface); - color: var(--text); + background: var(--ink-canvas); + color: var(--ink-text); box-shadow: 0 8px 24px rgb(0 0 0 / 14%); } header, @@ -215,11 +215,11 @@ display: grid; gap: 0.4rem; padding: 0.5rem; - border: 1px solid var(--border); + border: 1px solid var(--ink-border); border-radius: 0.35rem; } li.active { - border-color: var(--accent); + border-color: var(--ink-accent); } .layer-select { text-align: left; @@ -235,7 +235,7 @@ align-items: stretch; flex-direction: column; padding-top: 0.4rem; - border-top: 1px solid var(--border); + border-top: 1px solid var(--ink-border); } button, input, diff --git a/packages/ui/src/lib/editor/components/ProposalReview.svelte b/packages/ui/src/lib/editor/components/ProposalReview.svelte index e8cd213..92d8b1c 100644 --- a/packages/ui/src/lib/editor/components/ProposalReview.svelte +++ b/packages/ui/src/lib/editor/components/ProposalReview.svelte @@ -177,11 +177,11 @@ width: min(24rem, calc(100% - 2rem)); box-sizing: border-box; border-radius: 0.9rem; - background: color-mix(in srgb, var(--surface) 94%, var(--accent) 6%); - color: var(--text); + background: color-mix(in srgb, var(--ink-canvas) 94%, var(--ink-accent) 6%); + color: var(--ink-text); box-shadow: 0 1rem 2.5rem color-mix(in srgb, #000 22%, transparent), - 0 0 0 1px color-mix(in srgb, var(--accent) 24%, transparent); + 0 0 0 1px color-mix(in srgb, var(--ink-accent) 24%, transparent); -webkit-font-smoothing: antialiased; } @@ -208,7 +208,7 @@ .eyebrow { margin: 0 0 0.2rem; - color: var(--accent); + color: var(--ink-accent); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; @@ -222,7 +222,7 @@ } .expiry { - color: color-mix(in srgb, var(--text) 60%, transparent); + color: color-mix(in srgb, var(--ink-text) 60%, transparent); font-size: 0.68rem; font-variant-numeric: tabular-nums; text-align: right; @@ -230,7 +230,7 @@ .summary { margin: 0.8rem 0; - color: color-mix(in srgb, var(--text) 72%, transparent); + color: color-mix(in srgb, var(--ink-text) 72%, transparent); font-size: 0.78rem; line-height: 1.4; text-wrap: pretty; @@ -246,7 +246,7 @@ .change-grid div { padding: 0.45rem 0.3rem; border-radius: 0.5rem; - background: color-mix(in srgb, var(--surface-2, var(--surface)) 88%, var(--accent) 12%); + background: color-mix(in srgb, var(--ink-surface) 88%, var(--ink-accent) 12%); text-align: center; } @@ -262,7 +262,7 @@ .change-grid span { margin-top: 0.12rem; - color: color-mix(in srgb, var(--text) 62%, transparent); + color: color-mix(in srgb, var(--ink-text) 62%, transparent); font-size: 0.65rem; text-transform: uppercase; } @@ -273,12 +273,12 @@ padding: 0.55rem; overflow: auto; border: 0; - background: color-mix(in srgb, var(--surface-2, var(--surface)) 70%, transparent); + background: color-mix(in srgb, var(--ink-surface) 70%, transparent); } legend { padding: 0 0.25rem; - color: color-mix(in srgb, var(--text) 66%, transparent); + color: color-mix(in srgb, var(--ink-text) 66%, transparent); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; @@ -294,12 +294,12 @@ .operation-row input { width: 1rem; height: 1rem; - accent-color: var(--accent); + accent-color: var(--ink-accent); } .operation-row code { margin-left: auto; - color: color-mix(in srgb, var(--text) 58%, transparent); + color: color-mix(in srgb, var(--ink-text) 58%, transparent); font-size: 0.68rem; text-transform: capitalize; } @@ -331,28 +331,28 @@ margin: 0 0 0.8rem; padding: 0.6rem 0.65rem; border-radius: 0.5rem; - background: color-mix(in srgb, var(--accent) 13%, transparent); + background: color-mix(in srgb, var(--ink-accent) 13%, transparent); font-size: 0.72rem; } .authorization > code { padding: 0.35rem; overflow-wrap: anywhere; - background: color-mix(in srgb, var(--surface) 72%, transparent); + background: color-mix(in srgb, var(--ink-canvas) 72%, transparent); font-size: 0.68rem; user-select: all; } .authorization small { - color: color-mix(in srgb, var(--text) 66%, transparent); + color: color-mix(in srgb, var(--ink-text) 66%, transparent); line-height: 1.35; } .authorize { width: 100%; margin-bottom: 0.7rem; - background: color-mix(in srgb, var(--accent) 12%, var(--surface)); - color: var(--text); + background: color-mix(in srgb, var(--ink-accent) 12%, var(--ink-canvas)); + color: var(--ink-text); } .actions { @@ -383,17 +383,17 @@ } button.primary { - background: var(--accent); - color: var(--surface); + background: var(--ink-accent); + color: var(--ink-on-accent); } button.secondary { - background: color-mix(in srgb, var(--accent) 20%, var(--surface)); - color: var(--text); + background: color-mix(in srgb, var(--ink-accent) 20%, var(--ink-canvas)); + color: var(--ink-text); } button.quiet { background: transparent; - color: color-mix(in srgb, var(--text) 68%, transparent); + color: color-mix(in srgb, var(--ink-text) 68%, transparent); } diff --git a/packages/ui/src/lib/editor/components/StatusBar.svelte b/packages/ui/src/lib/editor/components/StatusBar.svelte index 267c66a..71d93d7 100644 --- a/packages/ui/src/lib/editor/components/StatusBar.svelte +++ b/packages/ui/src/lib/editor/components/StatusBar.svelte @@ -265,8 +265,8 @@ grid-template-columns: repeat(4, minmax(120px, 1fr)) auto auto; gap: 1.5rem; padding: 0.75rem 1.5rem; - background: var(--surface-elevated); - border-top: 1px solid color-mix(in srgb, var(--border) 46%, transparent); + background: var(--ink-surface-raised); + border-top: 1px solid color-mix(in srgb, var(--ink-border) 46%, transparent); box-shadow: 0 -8px 24px color-mix(in srgb, var(--ink-shadow-color) 10%, transparent); font-size: 0.75rem; align-items: center; @@ -288,7 +288,7 @@ padding: var(--ink-space-1) var(--ink-space-2); border: 1px solid transparent; border-radius: var(--ink-radius-wobbly-small); - color: var(--text-muted); + color: var(--ink-text-muted); background: transparent; cursor: pointer; transition-property: color, background-color, border-color, transform; @@ -296,9 +296,9 @@ } .status-bar__action:hover { - border-color: color-mix(in srgb, var(--border) 55%, transparent); - color: var(--text); - background: var(--surface-hover); + border-color: color-mix(in srgb, var(--ink-border) 55%, transparent); + color: var(--ink-text); + background: var(--ink-surface-hover); } .status-bar__action:active { @@ -306,7 +306,7 @@ } .status-bar__action:focus-visible { - outline: 2px solid var(--accent); + outline: 2px solid var(--ink-accent); outline-offset: 2px; } @@ -332,7 +332,7 @@ align-items: center; gap: 0.375rem; font-size: 0.75rem; - color: var(--text); + color: var(--ink-text); } .status-bar__toggle input { @@ -346,13 +346,13 @@ } .status-bar__toggle input:focus { - outline: 2px solid var(--accent); + outline: 2px solid var(--ink-accent); outline-offset: 2px; } .status-bar__label { font-size: 0.6875rem; - color: var(--text-muted); + color: var(--ink-text-muted); text-transform: uppercase; letter-spacing: 0.075em; font-weight: 600; @@ -360,17 +360,17 @@ .status-bar__value { font-weight: 500; - color: var(--text); + color: var(--ink-text); font-variant-numeric: tabular-nums; } .status-bar__value--error { - color: var(--color-error); + color: var(--ink-danger); } .status-bar__mode { font-size: 0.75rem; - color: var(--text-muted); + color: var(--ink-text-muted); } .about { diff --git a/packages/ui/src/lib/editor/components/StencilPalette.svelte b/packages/ui/src/lib/editor/components/StencilPalette.svelte index e3af998..e5d1cc7 100644 --- a/packages/ui/src/lib/editor/components/StencilPalette.svelte +++ b/packages/ui/src/lib/editor/components/StencilPalette.svelte @@ -147,7 +147,7 @@ {#if categories.length === 0}
- + No components found
{/if} @@ -166,8 +166,8 @@ display: flex; flex-direction: column; height: 100%; - background-color: var(--surface, #ffffff); - color: var(--text, #333333); + background-color: var(--ink-canvas, #ffffff); + color: var(--ink-text, #333333); } .palette__header { @@ -175,8 +175,8 @@ align-items: center; justify-content: space-between; padding: 1rem; - border-bottom: 1px solid var(--border, #e0e0e0); - background-color: var(--surface, #ffffff); + border-bottom: 1px solid var(--ink-border, #e0e0e0); + background-color: var(--ink-canvas, #ffffff); } .palette__title-row { @@ -192,7 +192,7 @@ font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; - color: var(--text-secondary, #666); + color: var(--ink-text-muted, #666); } .palette__close { @@ -206,13 +206,13 @@ } .palette__close:hover { - background-color: var(--surface-hover, #f5f5f5); + background-color: var(--ink-surface-hover, #f5f5f5); } .palette__search { padding: 0.75rem 1rem; - border-bottom: 1px solid var(--border, #e0e0e0); - background-color: var(--surface, #ffffff); + border-bottom: 1px solid var(--ink-border, #e0e0e0); + background-color: var(--ink-canvas, #ffffff); } .palette__search-wrapper { @@ -225,7 +225,7 @@ top: 50%; transform: translateY(-50%); pointer-events: none; - color: var(--text-muted, #9ca3af); + color: var(--ink-text-muted, #9ca3af); display: flex; } @@ -233,18 +233,18 @@ width: 100%; padding: 0.375rem 0.75rem 0.375rem 2.25rem; font-size: 0.875rem; - background-color: var(--surface-secondary, #f9f9f9); - border: 1px solid var(--border, #e0e0e0); + background-color: var(--ink-surface, #f9f9f9); + border: 1px solid var(--ink-border, #e0e0e0); border-radius: 0.375rem; - color: var(--text, #333); + color: var(--ink-text, #333); transition: all 0.2s; box-sizing: border-box; } .palette__search-input:focus { outline: none; - border-color: var(--primary, #007bff); - background-color: var(--surface, #ffffff); + border-color: var(--ink-accent, #007bff); + background-color: var(--ink-canvas, #ffffff); box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1); } @@ -274,7 +274,7 @@ font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; - color: var(--text-muted, #9ca3af); + color: var(--ink-text-muted, #9ca3af); padding-left: 0.25rem; margin: 0; } @@ -283,7 +283,7 @@ width: 0.375rem; height: 0.375rem; border-radius: 50%; - background-color: var(--border-dark, #cbd5e1); + background-color: var(--ink-border, #cbd5e1); } .palette__grid { @@ -298,8 +298,8 @@ flex-direction: column; align-items: center; padding: 0.5rem; - background-color: var(--surface, #ffffff); - border: 1px solid var(--border, #e0e0e0); + background-color: var(--ink-canvas, #ffffff); + border: 1px solid var(--ink-border, #e0e0e0); border-radius: 0.5rem; cursor: grab; user-select: none; @@ -307,7 +307,7 @@ } .palette__item:hover { - border-color: var(--primary-light, #60a5fa); + border-color: var(--ink-surface-hover, #60a5fa); box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); } @@ -322,21 +322,21 @@ align-items: center; justify-content: center; margin-bottom: 0.5rem; - background-color: var(--surface-secondary, #f9f9f9); + background-color: var(--ink-surface, #f9f9f9); border-radius: 0.25rem; overflow: hidden; transition: background-color 0.2s; } .palette__item:hover .palette__item-preview { - background-color: var(--surface-hover, #f0f9ff); + background-color: var(--ink-surface-hover, #f0f9ff); } .palette__item-preview-content { transform: scale(0.75); transform-origin: center; pointer-events: none; - color: var(--text, #333); + color: var(--ink-text, #333); width: 100%; height: 100%; display: flex; @@ -352,7 +352,7 @@ .palette__item-name { font-size: 0.75rem; font-weight: 500; - color: var(--text-secondary, #4b5563); + color: var(--ink-text-muted, #4b5563); width: 100%; text-align: center; white-space: nowrap; @@ -362,13 +362,13 @@ } .palette__item:hover .palette__item-name { - color: var(--primary, #007bff); + color: var(--ink-accent, #007bff); } .palette__item-hover-ring { position: absolute; inset: 0; - border: 2px solid var(--primary, #007bff); + border: 2px solid var(--ink-accent, #007bff); border-radius: 0.5rem; opacity: 0; pointer-events: none; @@ -385,7 +385,7 @@ align-items: center; justify-content: center; padding: 3rem 0; - color: var(--text-muted, #9ca3af); + color: var(--ink-text-muted, #9ca3af); gap: 0.5rem; font-size: 0.875rem; font-weight: 500; @@ -402,11 +402,11 @@ } .custom-scrollbar::-webkit-scrollbar-thumb { - background-color: var(--border, #e0e0e0); + background-color: var(--ink-border, #e0e0e0); border-radius: 3px; } .custom-scrollbar::-webkit-scrollbar-thumb:hover { - background-color: var(--text-muted, #9ca3af); + background-color: var(--ink-text-muted, #9ca3af); } diff --git a/packages/ui/src/lib/editor/components/Toolbar.svelte b/packages/ui/src/lib/editor/components/Toolbar.svelte index 6394351..306fbc9 100644 --- a/packages/ui/src/lib/editor/components/Toolbar.svelte +++ b/packages/ui/src/lib/editor/components/Toolbar.svelte @@ -872,7 +872,7 @@ width: 32px; min-height: 40px; cursor: grab; - color: var(--text-muted); + color: var(--ink-text-muted); opacity: 0.5; transition: opacity 0.2s; touch-action: none; @@ -880,13 +880,13 @@ .toolbar__drag-handle:hover { opacity: 1; - color: var(--text); + color: var(--ink-text); } .toolbar[data-dragging='true'] .toolbar__drag-handle { cursor: grabbing; opacity: 1; - color: var(--accent); + color: var(--ink-accent); } .toolbar__brand { @@ -905,25 +905,25 @@ font-weight: 600; font-size: 1.125rem; letter-spacing: -0.025em; - color: var(--text); + color: var(--ink-text); } .toolbar__tagline { font-size: 0.75rem; - color: var(--text-muted); + color: var(--ink-text-muted); font-weight: 500; text-decoration: none; } .toolbar__tagline:hover { - color: var(--text); + color: var(--ink-text); text-decoration: underline; text-underline-offset: 0.16em; } .toolbar__tagline:focus-visible { border-radius: 2px; - outline: 2px solid var(--accent); + outline: 2px solid var(--ink-accent); outline-offset: 2px; } @@ -937,7 +937,7 @@ border: var(--ink-line-width) solid transparent; border-radius: var(--ink-radius-wobbly-small); background: transparent; - color: var(--text); + color: var(--ink-text); cursor: pointer; transition-property: color, background-color, border-color, box-shadow, transform; transition-duration: var(--ink-duration-fast); @@ -947,10 +947,10 @@ } .toolbar__tool-button:hover { - background: var(--bg-tertiary); - color: var(--text); + background: var(--ink-surface-hover); + color: var(--ink-text); opacity: 1; - border-color: var(--text-muted); + border-color: var(--ink-text-muted); } .toolbar__tool-button:active, @@ -960,7 +960,7 @@ } .toolbar__tool-button:focus { - outline: 2px solid var(--accent); + outline: 2px solid var(--ink-accent); outline-offset: 2px; } @@ -987,7 +987,7 @@ .toolbar__divider { width: 1px; - background-color: var(--border); + background-color: var(--ink-border); margin: 0 var(--ink-space-1); height: 32px; opacity: 0.5; @@ -1000,9 +1000,9 @@ .toolbar__zoom-button, .toolbar__export-button { - border: 1px solid var(--border); - background: var(--surface); - color: var(--text); + border: 1px solid var(--ink-border); + background: var(--ink-canvas); + color: var(--ink-text); padding: 0.5rem 1rem; border-radius: 0.375rem; cursor: pointer; @@ -1015,8 +1015,8 @@ .toolbar__zoom-button:hover, .toolbar__export-button:hover { - background: var(--bg-tertiary); - border-color: var(--text-muted); + background: var(--ink-surface-hover); + border-color: var(--ink-text-muted); } .toolbar__zoom-menu, @@ -1024,9 +1024,9 @@ position: absolute; top: calc(100% + 8px); left: 0; - background: var(--surface-elevated); - color: var(--text); - border: 1px solid var(--border); + background: var(--ink-surface-raised); + color: var(--ink-text); + border: 1px solid var(--ink-border); border-radius: 0.5rem; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), @@ -1044,7 +1044,7 @@ .toolbar__menu-item { border: none; background: transparent; - color: var(--text); + color: var(--ink-text); padding: 4px 8px; border-radius: 0.25rem; text-align: left; @@ -1053,17 +1053,17 @@ } .toolbar__menu-item:hover { - background: var(--surface-elevated); + background: var(--ink-surface-raised); } .toolbar__menu-item:focus { - outline: 2px solid var(--accent); + outline: 2px solid var(--ink-accent); outline-offset: -2px; } .toolbar__menu-divider { height: 1px; - background: var(--border); + background: var(--ink-border); margin: 6px 0; } @@ -1081,7 +1081,7 @@ .toolbar__file { font-size: 13px; - color: var(--text-secondary); + color: var(--ink-text-muted); } .toolbar__desktop-actions { @@ -1092,9 +1092,9 @@ } .toolbar__desktop-button { - border: 1px solid var(--border); - background: var(--surface); - color: var(--text); + border: 1px solid var(--ink-border); + background: var(--ink-canvas); + color: var(--ink-text); border-radius: 6px; padding: 4px 10px; font-size: 13px; @@ -1102,7 +1102,7 @@ } .toolbar__desktop-button:hover { - background: var(--surface-elevated); + background: var(--ink-surface-raised); } .toolbar__recent { @@ -1110,22 +1110,22 @@ align-items: center; gap: 6px; font-size: 0.75rem; - color: var(--text-secondary); + color: var(--ink-text-muted); } .toolbar__recent select { font-size: 0.75rem; padding: 4px 6px; border-radius: 0.25rem; - border: 1px solid var(--border); - background: var(--surface); - color: var(--text); + border: 1px solid var(--ink-border); + background: var(--ink-canvas); + color: var(--ink-text); } .toolbar__logo { width: 32px; height: 32px; - color: var(--text); + color: var(--ink-text); display: flex; align-items: center; justify-content: center; @@ -1133,12 +1133,12 @@ .toolbar__name { font-weight: 600; - color: var(--text); + color: var(--ink-text); } .toolbar__tagline { font-size: 0.75rem; - color: var(--text-muted); + color: var(--ink-text-muted); } .toolbar__colors { diff --git a/packages/ui/src/lib/editor/filebrowser/FileBrowser.svelte b/packages/ui/src/lib/editor/filebrowser/FileBrowser.svelte index bf921b2..65fa108 100644 --- a/packages/ui/src/lib/editor/filebrowser/FileBrowser.svelte +++ b/packages/ui/src/lib/editor/filebrowser/FileBrowser.svelte @@ -420,32 +420,6 @@ - -
-

Migrations

- {#if inspectorData.migrations.length === 0} -
No migrations applied yet
- {:else} -
- {#each inspectorData.migrations as migration (migration.id)} -
- {migration.id} - - {formatTimestamp(migration.appliedAt)} - -
- {/each} -
- {/if} - {#if inspectorData.pendingMigrations.length > 0} -
-
Pending Migrations:
- {#each inspectorData.pendingMigrations as migrationId (migrationId)} -
{migrationId}
- {/each} -
- {/if} -
{/if} @@ -458,12 +432,12 @@ } .filebrowser { - --filebrowser-divider: color-mix(in srgb, var(--border) 42%, transparent); + --filebrowser-divider: color-mix(in srgb, var(--ink-border) 42%, transparent); display: flex; flex-direction: column; height: 100%; - background-color: var(--surface); - color: var(--text); + background-color: var(--ink-canvas); + color: var(--ink-text); } .filebrowser__header { @@ -489,7 +463,7 @@ .filebrowser__close { background: none; border: 1px solid transparent; - color: var(--text-secondary, #666); + color: var(--ink-text-muted, #666); font-size: 1.5rem; cursor: pointer; padding: 0.25rem; @@ -501,14 +475,14 @@ .filebrowser__close:hover, .filebrowser__close:focus-visible { background-color: rgba(0, 0, 0, 0.05); - color: var(--text); + color: var(--ink-text); border: 1px solid #e27878; } .filebrowser__action { padding: 0.5rem 1rem; - background-color: var(--primary, #007bff); - color: white; + background-color: var(--ink-accent, #007bff); + color: var(--ink-on-accent, white); border: none; border-radius: 0.25rem; cursor: pointer; @@ -517,13 +491,13 @@ } .filebrowser__action:hover { - background-color: var(--primary-hover, #0056b3); + background-color: var(--ink-accent-hover, #0056b3); } .filebrowser__workspace { padding: 0.75rem 1rem; - border-bottom: 1px solid var(--border, #e0e0e0); - background-color: var(--surface-secondary, #f9f9f9); + border-bottom: 1px solid var(--ink-border, #e0e0e0); + background-color: var(--ink-surface, #f9f9f9); } .filebrowser__workspace-info { @@ -539,23 +513,23 @@ text-overflow: ellipsis; white-space: nowrap; font-family: monospace; - color: var(--text); + color: var(--ink-text); } .filebrowser__workspace-change, .filebrowser__workspace-clear { padding: 0.25rem 0.5rem; background-color: transparent; - border: 1px solid var(--border, #e0e0e0); + border: 1px solid var(--ink-border, #e0e0e0); border-radius: 0.25rem; cursor: pointer; font-size: 0.75rem; - color: var(--text); + color: var(--ink-text); } .filebrowser__workspace-change:hover, .filebrowser__workspace-clear:hover { - background-color: var(--surface-hover, #f5f5f5); + background-color: var(--ink-surface-hover, #f5f5f5); } .filebrowser__workspace-pick { @@ -564,8 +538,8 @@ gap: 0.5rem; width: 100%; padding: 0.5rem; - background-color: var(--primary, #007bff); - color: white; + background-color: var(--ink-accent, #007bff); + color: var(--ink-on-accent, white); border: none; border-radius: 0.25rem; cursor: pointer; @@ -573,13 +547,13 @@ } .filebrowser__workspace-pick:hover { - background-color: var(--primary-hover, #0056b3); + background-color: var(--ink-accent-hover, #0056b3); } .filebrowser__workspace-hint { margin-top: 0.5rem; font-size: 0.75rem; - color: var(--text-muted, #6c757d); + color: var(--ink-text-muted, #6c757d); text-align: center; } @@ -591,39 +565,39 @@ .filebrowser__search-input { width: 100%; padding: 0.5rem; - border: 1px solid color-mix(in srgb, var(--border) 62%, transparent); + border: 1px solid color-mix(in srgb, var(--ink-border) 62%, transparent); border-radius: 0.25rem; font-size: 0.875rem; - background-color: var(--input-bg, white); - color: var(--text); + background-color: var(--ink-surface-raised, white); + color: var(--ink-text); } .filebrowser__search-input:focus { outline: none; - border-color: var(--primary, #007bff); + border-color: var(--ink-accent, #007bff); } .filebrowser__create-form, .filebrowser__edit-form { padding: 1rem; - border-bottom: 1px solid var(--border, #e0e0e0); - background-color: var(--surface-hover, #f5f5f5); + border-bottom: 1px solid var(--ink-border, #e0e0e0); + background-color: var(--ink-surface-hover, #f5f5f5); } .filebrowser__input { width: 100%; padding: 0.5rem; - border: 1px solid var(--border, #e0e0e0); + border: 1px solid var(--ink-border, #e0e0e0); border-radius: 0.25rem; font-size: 0.875rem; margin-bottom: 0.5rem; - background-color: var(--input-bg, white); - color: var(--text); + background-color: var(--ink-surface-raised, white); + color: var(--ink-text); } .filebrowser__input:focus { outline: none; - border-color: var(--primary, #007bff); + border-color: var(--ink-accent, #007bff); } .filebrowser__create-actions, @@ -641,21 +615,21 @@ } .filebrowser__btn--primary { - background-color: var(--primary, #007bff); - color: white; + background-color: var(--ink-accent, #007bff); + color: var(--ink-on-accent, white); } .filebrowser__btn--primary:hover { - background-color: var(--primary-hover, #0056b3); + background-color: var(--ink-accent-hover, #0056b3); } .filebrowser__btn--secondary { - background-color: var(--secondary, #6c757d); - color: white; + background-color: var(--ink-surface, #6c757d); + color: var(--ink-text, white); } .filebrowser__btn--secondary:hover { - background-color: var(--secondary-hover, #5a6268); + background-color: var(--ink-surface-hover, #5a6268); } .filebrowser__list { @@ -666,7 +640,7 @@ .filebrowser__empty { padding: 2rem; text-align: center; - color: var(--text-muted, #6c757d); + color: var(--ink-text-muted, #6c757d); } .filebrowser__board { @@ -680,7 +654,7 @@ } .filebrowser__board:hover { - background-color: color-mix(in srgb, var(--surface-hover, #f5f5f5) 72%, transparent); + background-color: color-mix(in srgb, var(--ink-surface-hover, #f5f5f5) 72%, transparent); } .filebrowser__board-info { @@ -694,7 +668,7 @@ .filebrowser__board-meta { font-size: 0.75rem; - color: var(--text-muted, #6c757d); + color: var(--ink-text-muted, #6c757d); } .filebrowser__board-actions { @@ -721,8 +695,8 @@ display: flex; flex-direction: column; height: 100%; - background-color: var(--surface); - color: var(--text); + background-color: var(--ink-canvas); + color: var(--ink-text); } .inspector__header { @@ -730,7 +704,7 @@ align-items: center; justify-content: space-between; padding: 1rem; - border-bottom: 1px solid var(--border, #e0e0e0); + border-bottom: 1px solid var(--ink-border, #e0e0e0); } .inspector__title { @@ -755,22 +729,22 @@ } .inspector__close:hover { - background-color: var(--surface-hover, #f5f5f5); + background-color: var(--ink-surface-hover, #f5f5f5); } .inspector__loading { padding: 2rem; text-align: center; - color: var(--text-muted, #6c757d); + color: var(--ink-text-muted, #6c757d); } .inspector__error { padding: 1rem; margin: 1rem; - background-color: var(--error-bg, #f8d7da); - color: var(--error-text, #721c24); + background-color: var(--ink-danger-surface, #f8d7da); + color: var(--ink-danger, #721c24); border-radius: 0.25rem; - border: 1px solid var(--error-border, #f5c6cb); + border: 1px solid var(--ink-danger, #f5c6cb); } .inspector__content { @@ -788,75 +762,22 @@ font-size: 0.875rem; font-weight: 600; text-transform: uppercase; - color: var(--text-muted, #6c757d); + color: var(--ink-text-muted, #6c757d); } .inspector__item { display: flex; justify-content: space-between; padding: 0.5rem 0; - border-bottom: 1px solid var(--border-light, #f0f0f0); + border-bottom: 1px solid var(--ink-border, #f0f0f0); } .inspector__label { font-weight: 500; - color: var(--text); + color: var(--ink-text); } .inspector__value { - color: var(--text-muted, #6c757d); - } - - .inspector__empty { - padding: 1rem; - text-align: center; - color: var(--text-muted, #6c757d); - font-size: 0.875rem; - } - - .inspector__migrations { - display: flex; - flex-direction: column; - gap: 0.5rem; - } - - .inspector__migration { - display: flex; - justify-content: space-between; - padding: 0.5rem; - background-color: var(--surface-hover, #f5f5f5); - border-radius: 0.25rem; - } - - .inspector__migration-id { - font-weight: 500; - font-family: monospace; - } - - .inspector__migration-date { - font-size: 0.75rem; - color: var(--text-muted, #6c757d); - } - - .inspector__pending { - margin-top: 1rem; - padding: 0.75rem; - background-color: var(--warning-bg, #fff3cd); - border: 1px solid var(--warning-border, #ffeaa7); - border-radius: 0.25rem; - } - - .inspector__pending-title { - margin: 0 0 0.5rem 0; - font-size: 0.875rem; - font-weight: 600; - color: var(--warning-text, #856404); - } - - .inspector__pending-migration { - font-family: monospace; - font-size: 0.875rem; - padding: 0.25rem 0; - color: var(--warning-text, #856404); + color: var(--ink-text-muted, #6c757d); } diff --git a/packages/ui/src/lib/styles/tokens.css b/packages/ui/src/lib/styles/tokens.css index ad930da..e2ef7ed 100644 --- a/packages/ui/src/lib/styles/tokens.css +++ b/packages/ui/src/lib/styles/tokens.css @@ -1,33 +1,26 @@ +/* Color palette adapted from Eldritch: https://github.com/eldritch-theme/eldritch */ + :root, [data-ink-theme='light'] { color-scheme: light; - --ink-eldritch-background: #f0f3f4; - --ink-eldritch-current-line: #e2e6e8; - --ink-eldritch-surface: #d5d9db; - --ink-eldritch-overlay: #c9cbcd; - --ink-eldritch-foreground: #1e2029; - --ink-eldritch-comment: #5b73dc; - --ink-eldritch-green: #38ff9f; - --ink-eldritch-orange: #ffaf4d; - --ink-eldritch-pink: #fb5bb6; - --ink-eldritch-purple: #8a69f7; - --ink-eldritch-red: #fb5b66; - - --ink-canvas: var(--ink-eldritch-background); - --ink-surface: var(--ink-eldritch-current-line); + --ink-canvas: #f0f3f4; + --ink-surface: #e2e6e8; --ink-surface-raised: #fff; - --ink-surface-hover: var(--ink-eldritch-surface); - --ink-text: var(--ink-eldritch-foreground); + --ink-surface-hover: #d5d9db; + --ink-text: #1e2029; --ink-text-muted: #495063; --ink-heading: #4d348f; --ink-border: #858a98; - --ink-border-strong: var(--ink-eldritch-foreground); - --ink-accent: var(--ink-eldritch-purple); + --ink-border-strong: #1e2029; + --ink-accent: #8a69f7; --ink-accent-hover: #7556dc; --ink-accent-text: #6044bd; - --ink-focus: var(--ink-eldritch-comment); - --ink-danger: var(--ink-eldritch-red); + --ink-focus: #5b73dc; + --ink-danger: #fb5b66; + --ink-danger-surface: color-mix(in srgb, var(--ink-danger) 14%, var(--ink-surface-raised)); + --ink-warning: #ffaf4d; + --ink-warning-surface: color-mix(in srgb, var(--ink-warning) 14%, var(--ink-surface-raised)); --ink-on-accent: #11131b; --ink-on-danger: #11131b; --ink-shadow-color: #1e2029; @@ -57,63 +50,26 @@ --ink-shadow-toolbar: 3px 4px 0 var(--ink-shadow-color); --ink-duration-fast: 120ms; --ink-ease-out: cubic-bezier(0.22, 1, 0.36, 1); - - /* Editor compatibility aliases. Shared editor components use these semantic - names while the public primitives use the ink-prefixed token contract. */ - --surface: var(--ink-canvas); - --surface-elevated: var(--ink-surface-raised); - --surface-secondary: var(--ink-surface); - --surface-hover: var(--ink-surface-hover); - --bg-tertiary: var(--ink-surface-hover); - --text: var(--ink-text); - --text-secondary: var(--ink-text-muted); - --text-muted: var(--ink-text-muted); - --border: var(--ink-border); - --accent: var(--ink-accent); - --primary: var(--ink-accent); - --primary-hover: var(--ink-accent-hover); - --primary-light: var(--ink-surface-hover); - --secondary: var(--ink-surface); - --secondary-hover: var(--ink-surface-hover); - --input-bg: var(--ink-surface-raised); - --color-error: var(--ink-danger); - --error-bg: color-mix(in srgb, var(--ink-danger) 14%, var(--ink-surface-raised)); - --error-border: var(--ink-danger); - --error-text: var(--ink-danger); - --warning-bg: color-mix(in srgb, var(--ink-eldritch-orange) 14%, var(--ink-surface-raised)); - --warning-border: var(--ink-eldritch-orange); - --warning-text: var(--ink-text); } [data-ink-theme='dark'] { color-scheme: dark; - --ink-eldritch-background: #171928; - --ink-eldritch-current-line: #252738; - --ink-eldritch-surface: #353746; - --ink-eldritch-overlay: #474852; - --ink-eldritch-foreground: #d8e6e6; - --ink-eldritch-comment: #506299; - --ink-eldritch-green: #2dcc82; - --ink-eldritch-orange: #d4a666; - --ink-eldritch-pink: #d154a1; - --ink-eldritch-purple: #8b75d9; - --ink-eldritch-red: #cc5860; - - --ink-canvas: var(--ink-eldritch-background); - --ink-surface: var(--ink-eldritch-current-line); - --ink-surface-raised: var(--ink-eldritch-surface); - --ink-surface-hover: var(--ink-eldritch-overlay); - --ink-text: var(--ink-eldritch-foreground); + --ink-canvas: #171928; + --ink-surface: #252738; + --ink-surface-raised: #353746; + --ink-surface-hover: #474852; + --ink-text: #d8e6e6; --ink-text-muted: #a7b4bc; --ink-heading: #c2b5f0; --ink-border: #646675; --ink-border-strong: #b8c5c8; - --ink-accent: var(--ink-eldritch-green); + --ink-accent: #2dcc82; --ink-accent-hover: #45dda0; --ink-accent-text: #8de2bc; --ink-focus: #7f91d8; - --ink-danger: var(--ink-eldritch-red); + --ink-danger: #cc5860; + --ink-warning: #d4a666; --ink-on-accent: #101b18; --ink-on-danger: #171928; --ink-shadow-color: #080910; @@ -123,31 +79,21 @@ :root:not([data-ink-theme]) { color-scheme: dark; - --ink-eldritch-background: #171928; - --ink-eldritch-current-line: #252738; - --ink-eldritch-surface: #353746; - --ink-eldritch-overlay: #474852; - --ink-eldritch-foreground: #d8e6e6; - --ink-eldritch-comment: #506299; - --ink-eldritch-green: #2dcc82; - --ink-eldritch-orange: #d4a666; - --ink-eldritch-pink: #d154a1; - --ink-eldritch-purple: #8b75d9; - --ink-eldritch-red: #cc5860; - --ink-canvas: var(--ink-eldritch-background); - --ink-surface: var(--ink-eldritch-current-line); - --ink-surface-raised: var(--ink-eldritch-surface); - --ink-surface-hover: var(--ink-eldritch-overlay); - --ink-text: var(--ink-eldritch-foreground); + --ink-canvas: #171928; + --ink-surface: #252738; + --ink-surface-raised: #353746; + --ink-surface-hover: #474852; + --ink-text: #d8e6e6; --ink-text-muted: #a7b4bc; --ink-heading: #c2b5f0; --ink-border: #646675; --ink-border-strong: #b8c5c8; - --ink-accent: var(--ink-eldritch-green); + --ink-accent: #2dcc82; --ink-accent-hover: #45dda0; --ink-accent-text: #8de2bc; --ink-focus: #7f91d8; - --ink-danger: var(--ink-eldritch-red); + --ink-danger: #cc5860; + --ink-warning: #d4a666; --ink-on-accent: #101b18; --ink-on-danger: #171928; --ink-shadow-color: #080910; diff --git a/packages/ui/src/routes/+page.svelte b/packages/ui/src/routes/+page.svelte index db2b640..e629f8a 100644 --- a/packages/ui/src/routes/+page.svelte +++ b/packages/ui/src/routes/+page.svelte @@ -132,7 +132,7 @@ padding: var(--ink-space-5); border: 2px solid var(--ink-border-strong); border-radius: var(--ink-radius-panel-small); - background: color-mix(in srgb, var(--ink-eldritch-orange) 52%, var(--ink-surface-raised)); + background: color-mix(in srgb, var(--ink-warning) 52%, var(--ink-surface-raised)); box-shadow: 4px 5px 0 var(--ink-shadow-color); } diff --git a/schemas/document-snapshot.schema.json b/schemas/document-snapshot.schema.json index 69f310c..d5b9703 100644 --- a/schemas/document-snapshot.schema.json +++ b/schemas/document-snapshot.schema.json @@ -487,11 +487,6 @@ "description": "Edit proposed or applied by an agent.", "type": "string" }, - { - "const": "import", - "description": "Record created while importing another format.", - "type": "string" - }, { "const": "sync", "description": "Change received from a trusted peer.", @@ -551,7 +546,7 @@ "description": "Path by which the record entered the document." }, "source": { - "description": "Optional source identifier, such as an imported filename or proposal ID.", + "description": "Optional source identifier, such as an external reference or proposal ID.", "type": [ "string", "null" diff --git a/schemas/protocol-request.schema.json b/schemas/protocol-request.schema.json index 63a2a1e..f58c113 100644 --- a/schemas/protocol-request.schema.json +++ b/schemas/protocol-request.schema.json @@ -1131,11 +1131,6 @@ "description": "Edit proposed or applied by an agent.", "type": "string" }, - { - "const": "import", - "description": "Record created while importing another format.", - "type": "string" - }, { "const": "sync", "description": "Change received from a trusted peer.", @@ -1199,7 +1194,7 @@ "description": "Path by which the record entered the document." }, "source": { - "description": "Optional source identifier, such as an imported filename or proposal ID.", + "description": "Optional source identifier, such as an external reference or proposal ID.", "type": [ "string", "null" @@ -1950,7 +1945,7 @@ "type": "object" }, { - "description": "Open a canonical or importable document in a new session.", + "description": "Open a canonical document in a new session.", "properties": { "actor_id": { "$ref": "#/$defs/ActorId", diff --git a/schemas/protocol-response.schema.json b/schemas/protocol-response.schema.json index c98ee7d..fcf3fd7 100644 --- a/schemas/protocol-response.schema.json +++ b/schemas/protocol-response.schema.json @@ -1355,11 +1355,6 @@ "description": "Edit proposed or applied by an agent.", "type": "string" }, - { - "const": "import", - "description": "Record created while importing another format.", - "type": "string" - }, { "const": "sync", "description": "Change received from a trusted peer.", @@ -1467,7 +1462,7 @@ "description": "Path by which the record entered the document." }, "source": { - "description": "Optional source identifier, such as an imported filename or proposal ID.", + "description": "Optional source identifier, such as an external reference or proposal ID.", "type": [ "string", "null" diff --git a/schemas/transaction-draft.schema.json b/schemas/transaction-draft.schema.json index f0f7967..38ae44c 100644 --- a/schemas/transaction-draft.schema.json +++ b/schemas/transaction-draft.schema.json @@ -1,1774 +1,894 @@ { - "$comment": "Generated by Inkfinite's binding generator. Do not edit this file manually.", - "$defs": { - "ActorId": { - "description": "Stable identifier for a human, agent, or system actor.", - "type": "string" - }, - "AssetId": { - "description": "Stable identifier for an embedded or linked asset.", - "type": "string" - }, - "AssetPatch": { - "description": "Mutable asset fields.", - "properties": { - "name": { - "description": "Replacement display name.", - "type": [ - "string", - "null" - ] - }, - "provenance_source": { - "description": "Replacement attribution source label.", - "type": [ - "string", - "null" - ] - } - }, - "type": "object" - }, - "AssetRecord": { - "description": "Durable image, font, or other binary asset.", - "properties": { - "digest": { - "description": "Content digest including its algorithm prefix.", - "type": "string" - }, - "id": { - "$ref": "#/$defs/AssetId", - "description": "Stable record identifier." - }, - "media_type": { - "description": "IANA media type.", - "type": "string" - }, - "name": { - "description": "User-visible asset name.", - "type": "string" - }, - "provenance": { - "$ref": "#/$defs/Provenance", - "description": "Attribution for the asset." - }, - "source": { - "$ref": "#/$defs/AssetSource", - "description": "Stored or linked content." - }, - "version": { - "$ref": "#/$defs/RecordVersion", - "description": "Version used by optimistic operation preconditions." - } - }, - "required": [ - "id", - "name", - "media_type", - "digest", - "source", - "provenance", - "version" - ], - "type": "object" - }, - "AssetSource": { - "description": "Storage form for asset contents.", - "oneOf": [ - { - "description": "Bytes stored inside the canonical document.", - "properties": { - "bytes": { - "description": "Raw asset bytes.", - "items": { - "format": "uint8", - "maximum": 255, - "minimum": 0, - "type": "integer" - }, - "type": "array" - }, - "kind": { - "const": "embedded", - "type": "string" - } - }, - "required": [ - "kind", - "bytes" - ], - "type": "object" - }, - { - "description": "Stable external URI retained for formats that cannot embed an asset.", - "properties": { - "kind": { - "const": "external", - "type": "string" - }, - "uri": { - "description": "URI used to resolve the content.", - "type": "string" - } - }, - "required": [ - "kind", - "uri" - ], - "type": "object" - } - ] - }, - "BindingAnchor": { - "description": "Attachment point on a bound shape.", - "oneOf": [ - { - "description": "Attach to the calculated center.", - "properties": { - "kind": { - "const": "center", - "type": "string" - } - }, - "required": [ - "kind" - ], - "type": "object" - }, - { - "description": "Attach at normalized shape coordinates.", - "properties": { - "kind": { - "const": "edge", - "type": "string" - }, - "x": { - "description": "Normalized horizontal coordinate.", - "format": "double", - "type": "number" - }, - "y": { - "description": "Normalized vertical coordinate.", - "format": "double", - "type": "number" - } - }, - "required": [ - "kind", - "x", - "y" - ], - "type": "object" - } - ] - }, - "BindingId": { - "description": "Stable identifier for a binding.", - "type": "string" - }, - "BindingKind": { - "description": "Registry key for a binding definition.", - "type": "string" - }, - "BindingRecord": { - "description": "Durable relationship between two shapes.", - "properties": { - "anchor": { - "$ref": "#/$defs/BindingAnchor", - "description": "Attachment point on the target." - }, - "id": { - "$ref": "#/$defs/BindingId", - "description": "Stable record identifier." - }, - "kind": { - "$ref": "#/$defs/BindingKind", - "description": "Registry key describing binding behavior." - }, - "source_handle": { - "description": "Named source handle, such as `start` or `end`.", - "type": "string" - }, - "source_shape_id": { - "$ref": "#/$defs/ShapeId", - "description": "Shape that owns the binding, such as an arrow." - }, - "target_shape_id": { - "$ref": "#/$defs/ShapeId", - "description": "Shape to which the source is bound." - }, - "version": { - "$ref": "#/$defs/RecordVersion", - "description": "Version used by optimistic operation preconditions." - } - }, - "required": [ - "id", - "kind", - "source_shape_id", - "target_shape_id", - "source_handle", - "anchor", - "version" - ], - "type": "object" - }, - "ChangeHash": { - "description": "Opaque causal hash supplied by the CRDT implementation.", - "type": "string" - }, - "ContainerLayout": { - "description": "Optional automatic layout applied by a container shape.", - "oneOf": [ - { - "description": "Children retain their explicit transforms.", - "properties": { - "kind": { - "const": "free", - "type": "string" - } - }, - "required": [ - "kind" - ], - "type": "object" - }, - { - "description": "Children flow along one axis.", - "properties": { - "alignment": { - "$ref": "#/$defs/LayoutAlignment", - "description": "Alignment on the cross axis." - }, - "direction": { - "$ref": "#/$defs/StackDirection", - "description": "Flow direction." - }, - "gap": { - "description": "Space between adjacent children.", - "format": "double", - "type": "number" - }, - "kind": { - "const": "stack", - "type": "string" - }, - "padding": { - "$ref": "#/$defs/Insets", - "description": "Space between children and container edges." - } - }, - "required": [ - "kind", - "direction", - "gap", - "padding", - "alignment" - ], - "type": "object" - }, - { - "description": "Children flow through a fixed number of columns.", - "properties": { - "alignment": { - "$ref": "#/$defs/LayoutAlignment", - "description": "Alignment within cells." - }, - "column_gap": { - "description": "Horizontal gap between cells.", - "format": "double", - "type": "number" - }, - "columns": { - "description": "Positive number of grid columns.", - "format": "uint32", - "minimum": 0, - "type": "integer" - }, - "kind": { - "const": "grid", - "type": "string" - }, - "padding": { - "$ref": "#/$defs/Insets", - "description": "Space between children and container edges." - }, - "row_gap": { - "description": "Vertical gap between cells.", - "format": "double", - "type": "number" - } - }, - "required": [ - "kind", - "columns", - "column_gap", - "row_gap", - "padding", - "alignment" - ], - "type": "object" - } - ] - }, - "Insets": { - "description": "Padding inside a layout container.", - "properties": { - "bottom": { - "description": "Bottom inset.", - "format": "double", - "type": "number" - }, - "left": { - "description": "Left inset.", - "format": "double", - "type": "number" - }, - "right": { - "description": "Right inset.", - "format": "double", - "type": "number" - }, - "top": { - "description": "Top inset.", - "format": "double", - "type": "number" - } - }, - "required": [ - "top", - "right", - "bottom", - "left" - ], - "type": "object" - }, - "LayerContentsDisposition": { - "description": "Policy for children of a deleted non-empty layer.", - "oneOf": [ - { - "description": "Move root shapes to the specified layer while preserving their order.", - "properties": { - "destination_layer_id": { - "$ref": "#/$defs/LayerId" - }, - "kind": { - "const": "move_to", - "type": "string" - } - }, - "required": [ - "kind", - "destination_layer_id" - ], - "type": "object" - }, - { - "description": "Delete every descendant explicitly.", - "properties": { - "kind": { - "const": "delete", - "type": "string" - } - }, - "required": [ - "kind" - ], - "type": "object" - } - ] - }, - "LayerId": { - "description": "Stable identifier for a layer.", - "type": "string" - }, - "LayerPatch": { - "description": "Mutable layer fields.", - "properties": { - "locked": { - "description": "Replacement locked state.", - "type": [ - "boolean", - "null" - ] - }, - "name": { - "description": "Replacement display name.", - "type": [ - "string", - "null" - ] - }, - "opacity": { - "anyOf": [ - { - "$ref": "#/$defs/Opacity" - }, - { - "type": "null" - } - ], - "description": "Replacement inherited opacity." - }, - "visible": { - "description": "Replacement visibility.", - "type": [ - "boolean", - "null" - ] - } - }, - "type": "object" - }, - "LayerRecord": { - "description": "Durable layer record and its ordered root-shape list.", - "properties": { - "id": { - "$ref": "#/$defs/LayerId", - "description": "Stable record identifier." - }, - "locked": { - "description": "Whether descendants can be selected or changed.", - "type": "boolean" - }, - "name": { - "description": "User-visible layer name.", - "type": "string" - }, - "opacity": { - "$ref": "#/$defs/Opacity", - "description": "Opacity inherited by descendants." - }, - "page_id": { - "$ref": "#/$defs/PageId", - "description": "Page that owns this layer." - }, - "shape_ids": { - "description": "Root shape IDs in back-to-front draw order.", - "items": { - "$ref": "#/$defs/ShapeId" - }, - "type": "array" - }, - "version": { - "$ref": "#/$defs/RecordVersion", - "description": "Version used by optimistic operation preconditions." - }, - "visible": { - "description": "Whether descendants participate in rendering and hit testing.", - "type": "boolean" - } - }, - "required": [ - "id", - "page_id", - "name", - "shape_ids", - "visible", - "locked", - "opacity", - "version" - ], - "type": "object" - }, - "LayoutAlignment": { - "description": "Cross-axis alignment for laid-out children.", - "oneOf": [ - { - "const": "start", - "description": "Align children to the start edge.", - "type": "string" - }, - { - "const": "center", - "description": "Center children on the cross axis.", - "type": "string" - }, - { - "const": "end", - "description": "Align children to the end edge.", - "type": "string" - }, - { - "const": "stretch", - "description": "Stretch children across the cross axis.", - "type": "string" - } - ] - }, - "LayoutAxis": { - "description": "Axis used by alignment and distribution operations.", - "oneOf": [ - { - "const": "horizontal", - "description": "Horizontal document axis.", - "type": "string" - }, - { - "const": "vertical", - "description": "Vertical document axis.", - "type": "string" - } - ] - }, - "Opacity": { - "description": "Opacity constrained to the inclusive range from zero to one.", - "format": "float", - "maximum": 1.0, - "minimum": 0.0, - "type": "number" - }, - "Operation": { - "description": "Durable document operation. Ordered insertions use sibling anchors only.", - "oneOf": [ - { - "description": "Insert a page into the document's ordered page list.", - "properties": { - "anchor": { - "$ref": "#/$defs/SiblingAnchor", - "description": "Placement relative to an existing page." - }, - "page": { - "$ref": "#/$defs/PageRecord", - "description": "Complete new page record." - }, - "type": { - "const": "create_page", - "type": "string" - } - }, - "required": [ - "type", - "page", - "anchor" - ], - "type": "object" - }, - { - "description": "Rename a page.", - "properties": { - "expected_version": { - "anyOf": [ - { - "$ref": "#/$defs/RecordVersion" - }, - { - "type": "null" - } - ], - "description": "Optional optimistic record version." - }, - "name": { - "description": "Replacement name.", - "type": "string" - }, - "page_id": { - "$ref": "#/$defs/PageId", - "description": "Page to rename." - }, - "type": { - "const": "rename_page", - "type": "string" - } - }, - "required": [ - "type", - "page_id", - "name" - ], - "type": "object" - }, - { - "description": "Delete a page and its owned records.", - "properties": { - "expected_version": { - "anyOf": [ - { - "$ref": "#/$defs/RecordVersion" - }, - { - "type": "null" - } - ], - "description": "Optional optimistic record version." - }, - "page_id": { - "$ref": "#/$defs/PageId", - "description": "Page to delete." - }, - "type": { - "const": "delete_page", - "type": "string" - } - }, - "required": [ - "type", - "page_id" - ], - "type": "object" - }, - { - "description": "Insert a layer into a page's ordered layer list.", - "properties": { - "anchor": { - "$ref": "#/$defs/SiblingAnchor2", - "description": "Placement relative to an existing layer." - }, - "layer": { - "$ref": "#/$defs/LayerRecord", - "description": "Complete new layer record." - }, - "type": { - "const": "create_layer", - "type": "string" - } - }, - "required": [ - "type", - "layer", - "anchor" - ], - "type": "object" - }, - { - "description": "Change mutable layer fields.", - "properties": { - "expected_version": { - "anyOf": [ - { - "$ref": "#/$defs/RecordVersion" - }, - { - "type": "null" - } - ], - "description": "Optional optimistic record version." - }, - "layer_id": { - "$ref": "#/$defs/LayerId", - "description": "Layer to change." - }, - "patch": { - "$ref": "#/$defs/LayerPatch", - "description": "Requested field replacements." - }, - "type": { - "const": "patch_layer", - "type": "string" - } - }, - "required": [ - "type", - "layer_id", - "patch" - ], - "type": "object" - }, - { - "description": "Move a layer within its page.", - "properties": { - "anchor": { - "$ref": "#/$defs/SiblingAnchor2", - "description": "New placement relative to a sibling layer." - }, - "expected_version": { - "anyOf": [ - { - "$ref": "#/$defs/RecordVersion" - }, - { - "type": "null" - } - ], - "description": "Optional optimistic record version." - }, - "layer_id": { - "$ref": "#/$defs/LayerId", - "description": "Layer to move." - }, - "type": { - "const": "reorder_layer", - "type": "string" - } - }, - "required": [ - "type", - "layer_id", - "anchor" - ], - "type": "object" - }, - { - "description": "Delete a layer using an explicit child disposition.", - "properties": { - "contents": { - "$ref": "#/$defs/LayerContentsDisposition", - "description": "Required handling for existing shapes." - }, - "expected_version": { - "anyOf": [ - { - "$ref": "#/$defs/RecordVersion" - }, - { - "type": "null" - } - ], - "description": "Optional optimistic record version." - }, - "layer_id": { - "$ref": "#/$defs/LayerId", - "description": "Layer to delete." - }, - "type": { - "const": "delete_layer", - "type": "string" - } - }, - "required": [ - "type", - "layer_id", - "contents" - ], - "type": "object" - }, - { - "description": "Insert a shape into its parent's ordered child list.", - "properties": { - "anchor": { - "$ref": "#/$defs/SiblingAnchor3", - "description": "Placement relative to an existing shape child." - }, - "shape": { - "$ref": "#/$defs/ShapeRecord", - "description": "Complete new shape record." - }, - "type": { - "const": "create_shape", - "type": "string" - } - }, - "required": [ - "type", - "shape", - "anchor" - ], - "type": "object" - }, - { - "description": "Change mutable shape fields without moving it.", - "properties": { - "expected_version": { - "anyOf": [ - { - "$ref": "#/$defs/RecordVersion" - }, - { - "type": "null" - } - ], - "description": "Optional optimistic record version." - }, - "patch": { - "$ref": "#/$defs/ShapePatch", - "description": "Requested field replacements." - }, - "shape_id": { - "$ref": "#/$defs/ShapeId", - "description": "Shape to change." - }, - "type": { - "const": "patch_shape", - "type": "string" - } - }, - "required": [ - "type", - "shape_id", - "patch" - ], - "type": "object" - }, - { - "description": "Move a shape to another layer or container and place it by sibling anchor.", - "properties": { - "anchor": { - "$ref": "#/$defs/SiblingAnchor3", - "description": "Placement relative to a child of the replacement parent." - }, - "expected_version": { - "anyOf": [ - { - "$ref": "#/$defs/RecordVersion" - }, - { - "type": "null" - } - ], - "description": "Optional optimistic record version." - }, - "parent": { - "$ref": "#/$defs/ShapeParent", - "description": "Replacement parent." - }, - "shape_id": { - "$ref": "#/$defs/ShapeId", - "description": "Shape to move." - }, - "type": { - "const": "reparent_shape", - "type": "string" - } - }, - "required": [ - "type", - "shape_id", - "parent", - "anchor" - ], - "type": "object" - }, - { - "description": "Delete a shape and its owned descendants.", - "properties": { - "expected_version": { - "anyOf": [ - { - "$ref": "#/$defs/RecordVersion" - }, - { - "type": "null" - } - ], - "description": "Optional optimistic record version." - }, - "shape_id": { - "$ref": "#/$defs/ShapeId", - "description": "Shape to delete." - }, - "type": { - "const": "delete_shape", - "type": "string" - } - }, - "required": [ - "type", - "shape_id" - ], - "type": "object" - }, - { - "description": "Create a relationship between two shapes.", - "properties": { - "binding": { - "$ref": "#/$defs/BindingRecord", - "description": "Complete new binding record." - }, - "type": { - "const": "create_binding", - "type": "string" - } - }, - "required": [ - "type", - "binding" - ], - "type": "object" - }, - { - "description": "Delete a binding.", - "properties": { - "binding_id": { - "$ref": "#/$defs/BindingId", - "description": "Binding to delete." - }, - "expected_version": { - "anyOf": [ - { - "$ref": "#/$defs/RecordVersion" - }, - { - "type": "null" - } - ], - "description": "Optional optimistic record version." - }, - "type": { - "const": "delete_binding", - "type": "string" - } - }, - "required": [ - "type", - "binding_id" - ], - "type": "object" - }, - { - "description": "Add an asset to the document.", - "properties": { - "asset": { - "$ref": "#/$defs/AssetRecord", - "description": "Complete new asset record." - }, - "type": { - "const": "create_asset", - "type": "string" - } - }, - "required": [ - "type", - "asset" - ], - "type": "object" - }, - { - "description": "Change mutable asset metadata.", - "properties": { - "asset_id": { - "$ref": "#/$defs/AssetId", - "description": "Asset to change." - }, - "expected_version": { - "anyOf": [ - { - "$ref": "#/$defs/RecordVersion" - }, - { - "type": "null" - } - ], - "description": "Optional optimistic record version." - }, - "patch": { - "$ref": "#/$defs/AssetPatch", - "description": "Requested field replacements." - }, - "type": { - "const": "patch_asset", - "type": "string" - } - }, - "required": [ - "type", - "asset_id", - "patch" - ], - "type": "object" - }, - { - "description": "Delete an asset that is no longer referenced.", - "properties": { - "asset_id": { - "$ref": "#/$defs/AssetId", - "description": "Asset to delete." - }, - "expected_version": { - "anyOf": [ - { - "$ref": "#/$defs/RecordVersion" - }, - { - "type": "null" - } - ], - "description": "Optional optimistic record version." - }, - "type": { - "const": "delete_asset", - "type": "string" - } - }, - "required": [ - "type", - "asset_id" - ], - "type": "object" - }, - { - "description": "Align two or more shapes using their materialized bounds.", - "properties": { - "alignment": { - "$ref": "#/$defs/ShapeAlignment", - "description": "Alignment line shared by the shapes." - }, - "expected_versions": { - "additionalProperties": { - "$ref": "#/$defs/RecordVersion" - }, - "description": "Optional optimistic versions keyed by shape ID.", - "type": "object" - }, - "shape_ids": { - "description": "Shapes to align.", - "items": { - "$ref": "#/$defs/ShapeId" - }, - "type": "array" - }, - "type": { - "const": "align_shapes", - "type": "string" - } - }, - "required": [ - "type", - "shape_ids", - "alignment", - "expected_versions" - ], - "type": "object" - }, - { - "description": "Distribute three or more shapes with equal gaps between their bounds.", - "properties": { - "axis": { - "$ref": "#/$defs/LayoutAxis", - "description": "Axis on which to distribute the shapes." - }, - "expected_versions": { - "additionalProperties": { - "$ref": "#/$defs/RecordVersion" - }, - "description": "Optional optimistic versions keyed by shape ID.", - "type": "object" - }, - "shape_ids": { - "description": "Shapes to distribute.", - "items": { - "$ref": "#/$defs/ShapeId" - }, - "type": "array" - }, - "type": { - "const": "distribute_shapes", - "type": "string" - } - }, - "required": [ - "type", - "shape_ids", - "axis", - "expected_versions" - ], - "type": "object" - } - ] - }, - "Origin": { - "description": "Origin of a durable record or transaction.", - "oneOf": [ - { - "const": "human", - "description": "Direct edit made by a person.", - "type": "string" - }, - { - "const": "agent", - "description": "Edit proposed or applied by an agent.", - "type": "string" - }, - { - "const": "import", - "description": "Record created while importing another format.", - "type": "string" - }, - { - "const": "sync", - "description": "Change received from a trusted peer.", - "type": "string" - }, - { - "const": "system", - "description": "Deterministic repair or other internal change.", - "type": "string" - } - ] - }, - "PageId": { - "description": "Stable identifier for a page.", - "type": "string" - }, - "PageRecord": { - "description": "Durable page record and its ordered layer list.", - "properties": { - "id": { - "$ref": "#/$defs/PageId", - "description": "Stable record identifier." - }, - "layer_ids": { - "description": "Layer IDs in back-to-front draw order.", - "items": { - "$ref": "#/$defs/LayerId" - }, - "type": "array" - }, - "name": { - "description": "User-visible page name.", - "type": "string" - }, - "version": { - "$ref": "#/$defs/RecordVersion", - "description": "Version used by optimistic operation preconditions." - } - }, - "required": [ - "id", - "name", - "layer_ids", - "version" - ], - "type": "object" - }, - "Provenance": { - "description": "Attribution retained with durable content.", - "properties": { - "actor_id": { - "$ref": "#/$defs/ActorId", - "description": "Actor responsible for the record's current form." - }, - "origin": { - "$ref": "#/$defs/Origin", - "description": "Path by which the record entered the document." - }, - "source": { - "description": "Optional source identifier, such as an imported filename or proposal ID.", - "type": [ - "string", - "null" - ] - }, - "timestamp": { - "$ref": "#/$defs/Timestamp", - "description": "Time at which this provenance entry was recorded." - } - }, - "required": [ - "actor_id", - "origin", - "timestamp" - ], - "type": "object" - }, - "RecordVersion": { - "description": "Monotonic version of a durable record within the document history.", - "format": "uint64", - "minimum": 0, - "type": "integer" - }, - "SemanticMetadata": { - "description": "Human- and agent-readable meaning attached to a shape.", - "properties": { - "agent_editable": { - "description": "Whether an agent may propose or apply edits to this shape.", - "type": "boolean" - }, - "description": { - "description": "Optional longer description.", - "type": [ - "string", - "null" - ] - }, - "locked": { - "description": "Whether direct edits to this shape are prohibited.", - "type": "boolean" - }, - "name": { - "description": "Optional display name.", - "type": [ - "string", - "null" - ] - }, - "provenance": { - "$ref": "#/$defs/Provenance", - "description": "Attribution for the record." - }, - "role": { - "description": "Optional semantic selector such as `architecture.service`.", - "type": [ - "string", - "null" - ] - }, - "tags": { - "description": "Searchable, user-defined tags.", - "items": { - "type": "string" - }, - "type": "array" - } - }, - "required": [ - "tags", - "locked", - "agent_editable", - "provenance" - ], - "type": "object" - }, - "ShapeAlignment": { - "description": "Edge or center line used to align a group of shapes.", - "oneOf": [ - { - "const": "left", - "description": "Align left bounds.", - "type": "string" - }, - { - "const": "center", - "description": "Align horizontal centers.", - "type": "string" - }, - { - "const": "right", - "description": "Align right bounds.", - "type": "string" - }, - { - "const": "top", - "description": "Align top bounds.", - "type": "string" - }, - { - "const": "middle", - "description": "Align vertical centers.", - "type": "string" - }, - { - "const": "bottom", - "description": "Align bottom bounds.", - "type": "string" - } - ] - }, - "ShapeId": { - "description": "Stable identifier for a shape.", - "type": "string" - }, - "ShapeKind": { - "description": "Registry key for a shape definition.", - "type": "string" - }, - "ShapeParent": { - "description": "Parent that owns a shape's sole draw-order entry.", - "oneOf": [ - { - "description": "The shape is a root child of a layer.", - "properties": { - "id": { - "$ref": "#/$defs/LayerId" - }, - "kind": { - "const": "layer", - "type": "string" - } - }, - "required": [ - "kind", - "id" - ], - "type": "object" - }, - { - "description": "The shape is a child of a container shape.", - "properties": { - "id": { - "$ref": "#/$defs/ShapeId" - }, - "kind": { - "const": "shape", - "type": "string" - } - }, - "required": [ - "kind", - "id" - ], - "type": "object" - } - ] - }, - "ShapePatch": { - "description": "Mutable shape fields. `Some(None)` clears an optional field.", - "properties": { - "layout": { - "anyOf": [ - { - "$ref": "#/$defs/ContainerLayout" - }, - { - "type": "null" - } - ], - "description": "Replacement or removal of container layout." - }, - "metadata": { - "anyOf": [ - { - "$ref": "#/$defs/SemanticMetadata" - }, - { - "type": "null" - } - ], - "description": "Replacement semantic metadata." - }, - "properties": { - "additionalProperties": true, - "description": "Replacement kind-specific properties.", - "type": [ - "object", - "null" - ] - }, - "style": { - "anyOf": [ - { - "$ref": "#/$defs/ShapeStyle" - }, - { - "type": "null" - } - ], - "description": "Replacement common style." - }, - "transform": { - "anyOf": [ - { - "$ref": "#/$defs/Transform" - }, - { - "type": "null" - } - ], - "description": "Replacement relative transform." - } - }, - "type": "object" - }, - "ShapeRecord": { - "description": "Durable shape record shared by all built-in shape definitions.", - "properties": { - "child_ids": { - "description": "Ordered children when this shape is a container.", - "items": { - "$ref": "#/$defs/ShapeId" - }, - "type": "array" - }, - "id": { - "$ref": "#/$defs/ShapeId", - "description": "Stable record identifier." - }, - "kind": { - "$ref": "#/$defs/ShapeKind", - "description": "Registry key. Built-in values are exposed as `*_KIND` constants." - }, - "layout": { - "anyOf": [ - { - "$ref": "#/$defs/ContainerLayout" - }, - { - "type": "null" - } - ], - "description": "Optional automatic layout for container shapes." - }, - "metadata": { - "$ref": "#/$defs/SemanticMetadata", - "description": "Human- and agent-readable semantics and permissions." - }, - "parent": { - "$ref": "#/$defs/ShapeParent", - "description": "Parent relation; ordering comes only from the parent's child list." - }, - "properties": { - "additionalProperties": true, - "description": "Kind-specific serialized properties validated by the registry.", - "type": "object" - }, - "style": { - "$ref": "#/$defs/ShapeStyle", - "description": "Visual properties common to all kinds." - }, - "transform": { - "$ref": "#/$defs/Transform", - "description": "Transform relative to `parent`." - }, - "version": { - "$ref": "#/$defs/RecordVersion", - "description": "Version used by optimistic operation preconditions." - } - }, - "required": [ - "id", - "kind", - "parent", - "transform", - "child_ids", - "properties", - "metadata", - "style", - "version" - ], - "type": "object" - }, - "ShapeStyle": { - "description": "Common visual style shared by all shape kinds.", - "properties": { - "fill_opacity": { - "anyOf": [ - { - "$ref": "#/$defs/Opacity" - }, - { - "type": "null" - } - ], - "description": "Optional opacity override for fills." - }, - "opacity": { - "$ref": "#/$defs/Opacity", - "description": "Opacity applied to the complete shape." - }, - "stroke_opacity": { - "anyOf": [ - { - "$ref": "#/$defs/Opacity" - }, - { - "type": "null" - } - ], - "description": "Optional opacity override for strokes." - } - }, - "required": [ - "opacity" - ], - "type": "object" - }, - "SiblingAnchor": { - "description": "Anchor used to place an item in an ordered child list without numeric indexes.", - "oneOf": [ - { - "description": "Place the item before every existing sibling.", - "properties": { - "position": { - "const": "first", - "type": "string" - } - }, - "required": [ - "position" - ], - "type": "object" - }, - { - "description": "Place the item after every existing sibling.", - "properties": { - "position": { - "const": "last", - "type": "string" - } - }, - "required": [ - "position" - ], - "type": "object" - }, - { - "description": "Place the item immediately before the identified sibling.", - "properties": { - "position": { - "const": "before", - "type": "string" - }, - "sibling_id": { - "$ref": "#/$defs/PageId" - } - }, - "required": [ - "position", - "sibling_id" - ], - "type": "object" - }, - { - "description": "Place the item immediately after the identified sibling.", - "properties": { - "position": { - "const": "after", - "type": "string" - }, - "sibling_id": { - "$ref": "#/$defs/PageId" - } - }, - "required": [ - "position", - "sibling_id" - ], - "type": "object" - } - ] - }, - "SiblingAnchor2": { - "description": "Anchor used to place an item in an ordered child list without numeric indexes.", - "oneOf": [ - { - "description": "Place the item before every existing sibling.", - "properties": { - "position": { - "const": "first", - "type": "string" - } - }, - "required": [ - "position" - ], - "type": "object" - }, - { - "description": "Place the item after every existing sibling.", - "properties": { - "position": { - "const": "last", - "type": "string" - } - }, - "required": [ - "position" - ], - "type": "object" - }, - { - "description": "Place the item immediately before the identified sibling.", - "properties": { - "position": { - "const": "before", - "type": "string" - }, - "sibling_id": { - "$ref": "#/$defs/LayerId" - } - }, - "required": [ - "position", - "sibling_id" - ], - "type": "object" - }, - { - "description": "Place the item immediately after the identified sibling.", - "properties": { - "position": { - "const": "after", - "type": "string" - }, - "sibling_id": { - "$ref": "#/$defs/LayerId" - } - }, - "required": [ - "position", - "sibling_id" - ], - "type": "object" - } - ] - }, - "SiblingAnchor3": { - "description": "Anchor used to place an item in an ordered child list without numeric indexes.", - "oneOf": [ - { - "description": "Place the item before every existing sibling.", - "properties": { - "position": { - "const": "first", - "type": "string" - } - }, - "required": [ - "position" - ], - "type": "object" - }, - { - "description": "Place the item after every existing sibling.", - "properties": { - "position": { - "const": "last", - "type": "string" - } - }, - "required": [ - "position" - ], - "type": "object" - }, - { - "description": "Place the item immediately before the identified sibling.", - "properties": { - "position": { - "const": "before", - "type": "string" - }, - "sibling_id": { - "$ref": "#/$defs/ShapeId" - } - }, - "required": [ - "position", - "sibling_id" - ], - "type": "object" - }, - { - "description": "Place the item immediately after the identified sibling.", - "properties": { - "position": { - "const": "after", - "type": "string" - }, - "sibling_id": { - "$ref": "#/$defs/ShapeId" - } - }, - "required": [ - "position", - "sibling_id" - ], - "type": "object" - } - ] - }, - "StackDirection": { - "description": "Stack direction for container layout.", - "oneOf": [ - { - "const": "horizontal", - "description": "Place children from left to right.", - "type": "string" - }, - { - "const": "vertical", - "description": "Place children from top to bottom.", - "type": "string" - } - ] - }, - "Timestamp": { - "description": "Milliseconds since the Unix epoch.", - "format": "int64", - "type": "integer" - }, - "TransactionId": { - "description": "Stable identifier for a transaction.", - "type": "string" - }, - "Transform": { - "description": "Transform relative to a shape's parent container or layer.", - "properties": { - "rotation": { - "description": "Clockwise rotation in radians.", - "format": "double", - "type": "number" - }, - "scale_x": { - "description": "Horizontal scale.", - "format": "double", - "type": "number" - }, - "scale_y": { - "description": "Vertical scale.", - "format": "double", - "type": "number" - }, - "translation": { - "$ref": "#/$defs/Vec2", - "description": "Translation in parent coordinates." - } - }, - "required": [ - "translation", - "rotation", - "scale_x", - "scale_y" - ], - "type": "object" - }, - "Vec2": { - "description": "Two-dimensional point or vector in document coordinates.", - "properties": { - "x": { - "description": "Horizontal component.", - "format": "double", - "type": "number" - }, - "y": { - "description": "Vertical component.", - "format": "double", - "type": "number" - } - }, - "required": [ - "x", - "y" - ], - "type": "object" - } - }, - "$schema": "https://json-schema.org/draft/2020-12/schema", - "description": "One durable edit submitted to the transaction engine.", - "properties": { - "actor_id": { - "$ref": "#/$defs/ActorId", - "description": "Actor responsible for the transaction." - }, - "base_heads": { - "description": "Causal heads inspected by the caller.", - "items": { - "$ref": "#/$defs/ChangeHash" - }, - "type": "array" - }, - "description": { - "description": "Human-readable explanation retained in history.", - "type": "string" - }, - "id": { - "$ref": "#/$defs/TransactionId", - "description": "Stable transaction identifier." - }, - "operations": { - "description": "Ordered operations committed as one CRDT change.", - "items": { - "$ref": "#/$defs/Operation" - }, - "type": "array" - }, - "origin": { - "$ref": "#/$defs/Origin", - "description": "Path by which the transaction entered the engine." - }, - "timestamp": { - "$ref": "#/$defs/Timestamp", - "description": "Client-recorded transaction time." - } - }, - "required": [ - "id", - "actor_id", - "origin", - "base_heads", - "description", - "operations", - "timestamp" - ], - "title": "TransactionDraft", - "type": "object" + "$comment": "Generated by Inkfinite's binding generator. Do not edit this file manually.", + "$defs": { + "ActorId": { "description": "Stable identifier for a human, agent, or system actor.", "type": "string" }, + "AssetId": { "description": "Stable identifier for an embedded or linked asset.", "type": "string" }, + "AssetPatch": { + "description": "Mutable asset fields.", + "properties": { + "name": { "description": "Replacement display name.", "type": ["string", "null"] }, + "provenance_source": { + "description": "Replacement attribution source label.", + "type": ["string", "null"] + } + }, + "type": "object" + }, + "AssetRecord": { + "description": "Durable image, font, or other binary asset.", + "properties": { + "digest": { "description": "Content digest including its algorithm prefix.", "type": "string" }, + "id": { "$ref": "#/$defs/AssetId", "description": "Stable record identifier." }, + "media_type": { "description": "IANA media type.", "type": "string" }, + "name": { "description": "User-visible asset name.", "type": "string" }, + "provenance": { "$ref": "#/$defs/Provenance", "description": "Attribution for the asset." }, + "source": { "$ref": "#/$defs/AssetSource", "description": "Stored or linked content." }, + "version": { + "$ref": "#/$defs/RecordVersion", + "description": "Version used by optimistic operation preconditions." + } + }, + "required": ["id", "name", "media_type", "digest", "source", "provenance", "version"], + "type": "object" + }, + "AssetSource": { + "description": "Storage form for asset contents.", + "oneOf": [ + { + "description": "Bytes stored inside the canonical document.", + "properties": { + "bytes": { + "description": "Raw asset bytes.", + "items": { "format": "uint8", "maximum": 255, "minimum": 0, "type": "integer" }, + "type": "array" + }, + "kind": { "const": "embedded", "type": "string" } + }, + "required": ["kind", "bytes"], + "type": "object" + }, + { + "description": "Stable external URI retained for formats that cannot embed an asset.", + "properties": { + "kind": { "const": "external", "type": "string" }, + "uri": { "description": "URI used to resolve the content.", "type": "string" } + }, + "required": ["kind", "uri"], + "type": "object" + } + ] + }, + "BindingAnchor": { + "description": "Attachment point on a bound shape.", + "oneOf": [ + { + "description": "Attach to the calculated center.", + "properties": { "kind": { "const": "center", "type": "string" } }, + "required": ["kind"], + "type": "object" + }, + { + "description": "Attach at normalized shape coordinates.", + "properties": { + "kind": { "const": "edge", "type": "string" }, + "x": { + "description": "Normalized horizontal coordinate.", + "format": "double", + "type": "number" + }, + "y": { "description": "Normalized vertical coordinate.", "format": "double", "type": "number" } + }, + "required": ["kind", "x", "y"], + "type": "object" + } + ] + }, + "BindingId": { "description": "Stable identifier for a binding.", "type": "string" }, + "BindingKind": { "description": "Registry key for a binding definition.", "type": "string" }, + "BindingRecord": { + "description": "Durable relationship between two shapes.", + "properties": { + "anchor": { "$ref": "#/$defs/BindingAnchor", "description": "Attachment point on the target." }, + "id": { "$ref": "#/$defs/BindingId", "description": "Stable record identifier." }, + "kind": { "$ref": "#/$defs/BindingKind", "description": "Registry key describing binding behavior." }, + "source_handle": { "description": "Named source handle, such as `start` or `end`.", "type": "string" }, + "source_shape_id": { + "$ref": "#/$defs/ShapeId", + "description": "Shape that owns the binding, such as an arrow." + }, + "target_shape_id": { "$ref": "#/$defs/ShapeId", "description": "Shape to which the source is bound." }, + "version": { + "$ref": "#/$defs/RecordVersion", + "description": "Version used by optimistic operation preconditions." + } + }, + "required": ["id", "kind", "source_shape_id", "target_shape_id", "source_handle", "anchor", "version"], + "type": "object" + }, + "ChangeHash": { "description": "Opaque causal hash supplied by the CRDT implementation.", "type": "string" }, + "ContainerLayout": { + "description": "Optional automatic layout applied by a container shape.", + "oneOf": [ + { + "description": "Children retain their explicit transforms.", + "properties": { "kind": { "const": "free", "type": "string" } }, + "required": ["kind"], + "type": "object" + }, + { + "description": "Children flow along one axis.", + "properties": { + "alignment": { + "$ref": "#/$defs/LayoutAlignment", + "description": "Alignment on the cross axis." + }, + "direction": { "$ref": "#/$defs/StackDirection", "description": "Flow direction." }, + "gap": { + "description": "Space between adjacent children.", + "format": "double", + "type": "number" + }, + "kind": { "const": "stack", "type": "string" }, + "padding": { + "$ref": "#/$defs/Insets", + "description": "Space between children and container edges." + } + }, + "required": ["kind", "direction", "gap", "padding", "alignment"], + "type": "object" + }, + { + "description": "Children flow through a fixed number of columns.", + "properties": { + "alignment": { "$ref": "#/$defs/LayoutAlignment", "description": "Alignment within cells." }, + "column_gap": { + "description": "Horizontal gap between cells.", + "format": "double", + "type": "number" + }, + "columns": { + "description": "Positive number of grid columns.", + "format": "uint32", + "minimum": 0, + "type": "integer" + }, + "kind": { "const": "grid", "type": "string" }, + "padding": { + "$ref": "#/$defs/Insets", + "description": "Space between children and container edges." + }, + "row_gap": { + "description": "Vertical gap between cells.", + "format": "double", + "type": "number" + } + }, + "required": ["kind", "columns", "column_gap", "row_gap", "padding", "alignment"], + "type": "object" + } + ] + }, + "Insets": { + "description": "Padding inside a layout container.", + "properties": { + "bottom": { "description": "Bottom inset.", "format": "double", "type": "number" }, + "left": { "description": "Left inset.", "format": "double", "type": "number" }, + "right": { "description": "Right inset.", "format": "double", "type": "number" }, + "top": { "description": "Top inset.", "format": "double", "type": "number" } + }, + "required": ["top", "right", "bottom", "left"], + "type": "object" + }, + "LayerContentsDisposition": { + "description": "Policy for children of a deleted non-empty layer.", + "oneOf": [ + { + "description": "Move root shapes to the specified layer while preserving their order.", + "properties": { + "destination_layer_id": { "$ref": "#/$defs/LayerId" }, + "kind": { "const": "move_to", "type": "string" } + }, + "required": ["kind", "destination_layer_id"], + "type": "object" + }, + { + "description": "Delete every descendant explicitly.", + "properties": { "kind": { "const": "delete", "type": "string" } }, + "required": ["kind"], + "type": "object" + } + ] + }, + "LayerId": { "description": "Stable identifier for a layer.", "type": "string" }, + "LayerPatch": { + "description": "Mutable layer fields.", + "properties": { + "locked": { "description": "Replacement locked state.", "type": ["boolean", "null"] }, + "name": { "description": "Replacement display name.", "type": ["string", "null"] }, + "opacity": { + "anyOf": [{ "$ref": "#/$defs/Opacity" }, { "type": "null" }], + "description": "Replacement inherited opacity." + }, + "visible": { "description": "Replacement visibility.", "type": ["boolean", "null"] } + }, + "type": "object" + }, + "LayerRecord": { + "description": "Durable layer record and its ordered root-shape list.", + "properties": { + "id": { "$ref": "#/$defs/LayerId", "description": "Stable record identifier." }, + "locked": { "description": "Whether descendants can be selected or changed.", "type": "boolean" }, + "name": { "description": "User-visible layer name.", "type": "string" }, + "opacity": { "$ref": "#/$defs/Opacity", "description": "Opacity inherited by descendants." }, + "page_id": { "$ref": "#/$defs/PageId", "description": "Page that owns this layer." }, + "shape_ids": { + "description": "Root shape IDs in back-to-front draw order.", + "items": { "$ref": "#/$defs/ShapeId" }, + "type": "array" + }, + "version": { + "$ref": "#/$defs/RecordVersion", + "description": "Version used by optimistic operation preconditions." + }, + "visible": { + "description": "Whether descendants participate in rendering and hit testing.", + "type": "boolean" + } + }, + "required": ["id", "page_id", "name", "shape_ids", "visible", "locked", "opacity", "version"], + "type": "object" + }, + "LayoutAlignment": { + "description": "Cross-axis alignment for laid-out children.", + "oneOf": [ + { "const": "start", "description": "Align children to the start edge.", "type": "string" }, + { "const": "center", "description": "Center children on the cross axis.", "type": "string" }, + { "const": "end", "description": "Align children to the end edge.", "type": "string" }, + { "const": "stretch", "description": "Stretch children across the cross axis.", "type": "string" } + ] + }, + "LayoutAxis": { + "description": "Axis used by alignment and distribution operations.", + "oneOf": [ + { "const": "horizontal", "description": "Horizontal document axis.", "type": "string" }, + { "const": "vertical", "description": "Vertical document axis.", "type": "string" } + ] + }, + "Opacity": { + "description": "Opacity constrained to the inclusive range from zero to one.", + "format": "float", + "maximum": 1.0, + "minimum": 0.0, + "type": "number" + }, + "Operation": { + "description": "Durable document operation. Ordered insertions use sibling anchors only.", + "oneOf": [ + { + "description": "Insert a page into the document's ordered page list.", + "properties": { + "anchor": { + "$ref": "#/$defs/SiblingAnchor", + "description": "Placement relative to an existing page." + }, + "page": { "$ref": "#/$defs/PageRecord", "description": "Complete new page record." }, + "type": { "const": "create_page", "type": "string" } + }, + "required": ["type", "page", "anchor"], + "type": "object" + }, + { + "description": "Rename a page.", + "properties": { + "expected_version": { + "anyOf": [{ "$ref": "#/$defs/RecordVersion" }, { "type": "null" }], + "description": "Optional optimistic record version." + }, + "name": { "description": "Replacement name.", "type": "string" }, + "page_id": { "$ref": "#/$defs/PageId", "description": "Page to rename." }, + "type": { "const": "rename_page", "type": "string" } + }, + "required": ["type", "page_id", "name"], + "type": "object" + }, + { + "description": "Delete a page and its owned records.", + "properties": { + "expected_version": { + "anyOf": [{ "$ref": "#/$defs/RecordVersion" }, { "type": "null" }], + "description": "Optional optimistic record version." + }, + "page_id": { "$ref": "#/$defs/PageId", "description": "Page to delete." }, + "type": { "const": "delete_page", "type": "string" } + }, + "required": ["type", "page_id"], + "type": "object" + }, + { + "description": "Insert a layer into a page's ordered layer list.", + "properties": { + "anchor": { + "$ref": "#/$defs/SiblingAnchor2", + "description": "Placement relative to an existing layer." + }, + "layer": { "$ref": "#/$defs/LayerRecord", "description": "Complete new layer record." }, + "type": { "const": "create_layer", "type": "string" } + }, + "required": ["type", "layer", "anchor"], + "type": "object" + }, + { + "description": "Change mutable layer fields.", + "properties": { + "expected_version": { + "anyOf": [{ "$ref": "#/$defs/RecordVersion" }, { "type": "null" }], + "description": "Optional optimistic record version." + }, + "layer_id": { "$ref": "#/$defs/LayerId", "description": "Layer to change." }, + "patch": { "$ref": "#/$defs/LayerPatch", "description": "Requested field replacements." }, + "type": { "const": "patch_layer", "type": "string" } + }, + "required": ["type", "layer_id", "patch"], + "type": "object" + }, + { + "description": "Move a layer within its page.", + "properties": { + "anchor": { + "$ref": "#/$defs/SiblingAnchor2", + "description": "New placement relative to a sibling layer." + }, + "expected_version": { + "anyOf": [{ "$ref": "#/$defs/RecordVersion" }, { "type": "null" }], + "description": "Optional optimistic record version." + }, + "layer_id": { "$ref": "#/$defs/LayerId", "description": "Layer to move." }, + "type": { "const": "reorder_layer", "type": "string" } + }, + "required": ["type", "layer_id", "anchor"], + "type": "object" + }, + { + "description": "Delete a layer using an explicit child disposition.", + "properties": { + "contents": { + "$ref": "#/$defs/LayerContentsDisposition", + "description": "Required handling for existing shapes." + }, + "expected_version": { + "anyOf": [{ "$ref": "#/$defs/RecordVersion" }, { "type": "null" }], + "description": "Optional optimistic record version." + }, + "layer_id": { "$ref": "#/$defs/LayerId", "description": "Layer to delete." }, + "type": { "const": "delete_layer", "type": "string" } + }, + "required": ["type", "layer_id", "contents"], + "type": "object" + }, + { + "description": "Insert a shape into its parent's ordered child list.", + "properties": { + "anchor": { + "$ref": "#/$defs/SiblingAnchor3", + "description": "Placement relative to an existing shape child." + }, + "shape": { "$ref": "#/$defs/ShapeRecord", "description": "Complete new shape record." }, + "type": { "const": "create_shape", "type": "string" } + }, + "required": ["type", "shape", "anchor"], + "type": "object" + }, + { + "description": "Change mutable shape fields without moving it.", + "properties": { + "expected_version": { + "anyOf": [{ "$ref": "#/$defs/RecordVersion" }, { "type": "null" }], + "description": "Optional optimistic record version." + }, + "patch": { "$ref": "#/$defs/ShapePatch", "description": "Requested field replacements." }, + "shape_id": { "$ref": "#/$defs/ShapeId", "description": "Shape to change." }, + "type": { "const": "patch_shape", "type": "string" } + }, + "required": ["type", "shape_id", "patch"], + "type": "object" + }, + { + "description": "Move a shape to another layer or container and place it by sibling anchor.", + "properties": { + "anchor": { + "$ref": "#/$defs/SiblingAnchor3", + "description": "Placement relative to a child of the replacement parent." + }, + "expected_version": { + "anyOf": [{ "$ref": "#/$defs/RecordVersion" }, { "type": "null" }], + "description": "Optional optimistic record version." + }, + "parent": { "$ref": "#/$defs/ShapeParent", "description": "Replacement parent." }, + "shape_id": { "$ref": "#/$defs/ShapeId", "description": "Shape to move." }, + "type": { "const": "reparent_shape", "type": "string" } + }, + "required": ["type", "shape_id", "parent", "anchor"], + "type": "object" + }, + { + "description": "Delete a shape and its owned descendants.", + "properties": { + "expected_version": { + "anyOf": [{ "$ref": "#/$defs/RecordVersion" }, { "type": "null" }], + "description": "Optional optimistic record version." + }, + "shape_id": { "$ref": "#/$defs/ShapeId", "description": "Shape to delete." }, + "type": { "const": "delete_shape", "type": "string" } + }, + "required": ["type", "shape_id"], + "type": "object" + }, + { + "description": "Create a relationship between two shapes.", + "properties": { + "binding": { "$ref": "#/$defs/BindingRecord", "description": "Complete new binding record." }, + "type": { "const": "create_binding", "type": "string" } + }, + "required": ["type", "binding"], + "type": "object" + }, + { + "description": "Delete a binding.", + "properties": { + "binding_id": { "$ref": "#/$defs/BindingId", "description": "Binding to delete." }, + "expected_version": { + "anyOf": [{ "$ref": "#/$defs/RecordVersion" }, { "type": "null" }], + "description": "Optional optimistic record version." + }, + "type": { "const": "delete_binding", "type": "string" } + }, + "required": ["type", "binding_id"], + "type": "object" + }, + { + "description": "Add an asset to the document.", + "properties": { + "asset": { "$ref": "#/$defs/AssetRecord", "description": "Complete new asset record." }, + "type": { "const": "create_asset", "type": "string" } + }, + "required": ["type", "asset"], + "type": "object" + }, + { + "description": "Change mutable asset metadata.", + "properties": { + "asset_id": { "$ref": "#/$defs/AssetId", "description": "Asset to change." }, + "expected_version": { + "anyOf": [{ "$ref": "#/$defs/RecordVersion" }, { "type": "null" }], + "description": "Optional optimistic record version." + }, + "patch": { "$ref": "#/$defs/AssetPatch", "description": "Requested field replacements." }, + "type": { "const": "patch_asset", "type": "string" } + }, + "required": ["type", "asset_id", "patch"], + "type": "object" + }, + { + "description": "Delete an asset that is no longer referenced.", + "properties": { + "asset_id": { "$ref": "#/$defs/AssetId", "description": "Asset to delete." }, + "expected_version": { + "anyOf": [{ "$ref": "#/$defs/RecordVersion" }, { "type": "null" }], + "description": "Optional optimistic record version." + }, + "type": { "const": "delete_asset", "type": "string" } + }, + "required": ["type", "asset_id"], + "type": "object" + }, + { + "description": "Align two or more shapes using their materialized bounds.", + "properties": { + "alignment": { + "$ref": "#/$defs/ShapeAlignment", + "description": "Alignment line shared by the shapes." + }, + "expected_versions": { + "additionalProperties": { "$ref": "#/$defs/RecordVersion" }, + "description": "Optional optimistic versions keyed by shape ID.", + "type": "object" + }, + "shape_ids": { + "description": "Shapes to align.", + "items": { "$ref": "#/$defs/ShapeId" }, + "type": "array" + }, + "type": { "const": "align_shapes", "type": "string" } + }, + "required": ["type", "shape_ids", "alignment", "expected_versions"], + "type": "object" + }, + { + "description": "Distribute three or more shapes with equal gaps between their bounds.", + "properties": { + "axis": { + "$ref": "#/$defs/LayoutAxis", + "description": "Axis on which to distribute the shapes." + }, + "expected_versions": { + "additionalProperties": { "$ref": "#/$defs/RecordVersion" }, + "description": "Optional optimistic versions keyed by shape ID.", + "type": "object" + }, + "shape_ids": { + "description": "Shapes to distribute.", + "items": { "$ref": "#/$defs/ShapeId" }, + "type": "array" + }, + "type": { "const": "distribute_shapes", "type": "string" } + }, + "required": ["type", "shape_ids", "axis", "expected_versions"], + "type": "object" + } + ] + }, + "Origin": { + "description": "Origin of a durable record or transaction.", + "oneOf": [ + { "const": "human", "description": "Direct edit made by a person.", "type": "string" }, + { "const": "agent", "description": "Edit proposed or applied by an agent.", "type": "string" }, + { "const": "sync", "description": "Change received from a trusted peer.", "type": "string" }, + { "const": "system", "description": "Deterministic repair or other internal change.", "type": "string" } + ] + }, + "PageId": { "description": "Stable identifier for a page.", "type": "string" }, + "PageRecord": { + "description": "Durable page record and its ordered layer list.", + "properties": { + "id": { "$ref": "#/$defs/PageId", "description": "Stable record identifier." }, + "layer_ids": { + "description": "Layer IDs in back-to-front draw order.", + "items": { "$ref": "#/$defs/LayerId" }, + "type": "array" + }, + "name": { "description": "User-visible page name.", "type": "string" }, + "version": { + "$ref": "#/$defs/RecordVersion", + "description": "Version used by optimistic operation preconditions." + } + }, + "required": ["id", "name", "layer_ids", "version"], + "type": "object" + }, + "Provenance": { + "description": "Attribution retained with durable content.", + "properties": { + "actor_id": { + "$ref": "#/$defs/ActorId", + "description": "Actor responsible for the record's current form." + }, + "origin": { "$ref": "#/$defs/Origin", "description": "Path by which the record entered the document." }, + "source": { + "description": "Optional source identifier, such as an external reference or proposal ID.", + "type": ["string", "null"] + }, + "timestamp": { + "$ref": "#/$defs/Timestamp", + "description": "Time at which this provenance entry was recorded." + } + }, + "required": ["actor_id", "origin", "timestamp"], + "type": "object" + }, + "RecordVersion": { + "description": "Monotonic version of a durable record within the document history.", + "format": "uint64", + "minimum": 0, + "type": "integer" + }, + "SemanticMetadata": { + "description": "Human- and agent-readable meaning attached to a shape.", + "properties": { + "agent_editable": { + "description": "Whether an agent may propose or apply edits to this shape.", + "type": "boolean" + }, + "description": { "description": "Optional longer description.", "type": ["string", "null"] }, + "locked": { "description": "Whether direct edits to this shape are prohibited.", "type": "boolean" }, + "name": { "description": "Optional display name.", "type": ["string", "null"] }, + "provenance": { "$ref": "#/$defs/Provenance", "description": "Attribution for the record." }, + "role": { + "description": "Optional semantic selector such as `architecture.service`.", + "type": ["string", "null"] + }, + "tags": { + "description": "Searchable, user-defined tags.", + "items": { "type": "string" }, + "type": "array" + } + }, + "required": ["tags", "locked", "agent_editable", "provenance"], + "type": "object" + }, + "ShapeAlignment": { + "description": "Edge or center line used to align a group of shapes.", + "oneOf": [ + { "const": "left", "description": "Align left bounds.", "type": "string" }, + { "const": "center", "description": "Align horizontal centers.", "type": "string" }, + { "const": "right", "description": "Align right bounds.", "type": "string" }, + { "const": "top", "description": "Align top bounds.", "type": "string" }, + { "const": "middle", "description": "Align vertical centers.", "type": "string" }, + { "const": "bottom", "description": "Align bottom bounds.", "type": "string" } + ] + }, + "ShapeId": { "description": "Stable identifier for a shape.", "type": "string" }, + "ShapeKind": { "description": "Registry key for a shape definition.", "type": "string" }, + "ShapeParent": { + "description": "Parent that owns a shape's sole draw-order entry.", + "oneOf": [ + { + "description": "The shape is a root child of a layer.", + "properties": { + "id": { "$ref": "#/$defs/LayerId" }, + "kind": { "const": "layer", "type": "string" } + }, + "required": ["kind", "id"], + "type": "object" + }, + { + "description": "The shape is a child of a container shape.", + "properties": { + "id": { "$ref": "#/$defs/ShapeId" }, + "kind": { "const": "shape", "type": "string" } + }, + "required": ["kind", "id"], + "type": "object" + } + ] + }, + "ShapePatch": { + "description": "Mutable shape fields. `Some(None)` clears an optional field.", + "properties": { + "layout": { + "anyOf": [{ "$ref": "#/$defs/ContainerLayout" }, { "type": "null" }], + "description": "Replacement or removal of container layout." + }, + "metadata": { + "anyOf": [{ "$ref": "#/$defs/SemanticMetadata" }, { "type": "null" }], + "description": "Replacement semantic metadata." + }, + "properties": { + "additionalProperties": true, + "description": "Replacement kind-specific properties.", + "type": ["object", "null"] + }, + "style": { + "anyOf": [{ "$ref": "#/$defs/ShapeStyle" }, { "type": "null" }], + "description": "Replacement common style." + }, + "transform": { + "anyOf": [{ "$ref": "#/$defs/Transform" }, { "type": "null" }], + "description": "Replacement relative transform." + } + }, + "type": "object" + }, + "ShapeRecord": { + "description": "Durable shape record shared by all built-in shape definitions.", + "properties": { + "child_ids": { + "description": "Ordered children when this shape is a container.", + "items": { "$ref": "#/$defs/ShapeId" }, + "type": "array" + }, + "id": { "$ref": "#/$defs/ShapeId", "description": "Stable record identifier." }, + "kind": { + "$ref": "#/$defs/ShapeKind", + "description": "Registry key. Built-in values are exposed as `*_KIND` constants." + }, + "layout": { + "anyOf": [{ "$ref": "#/$defs/ContainerLayout" }, { "type": "null" }], + "description": "Optional automatic layout for container shapes." + }, + "metadata": { + "$ref": "#/$defs/SemanticMetadata", + "description": "Human- and agent-readable semantics and permissions." + }, + "parent": { + "$ref": "#/$defs/ShapeParent", + "description": "Parent relation; ordering comes only from the parent's child list." + }, + "properties": { + "additionalProperties": true, + "description": "Kind-specific serialized properties validated by the registry.", + "type": "object" + }, + "style": { "$ref": "#/$defs/ShapeStyle", "description": "Visual properties common to all kinds." }, + "transform": { "$ref": "#/$defs/Transform", "description": "Transform relative to `parent`." }, + "version": { + "$ref": "#/$defs/RecordVersion", + "description": "Version used by optimistic operation preconditions." + } + }, + "required": [ + "id", + "kind", + "parent", + "transform", + "child_ids", + "properties", + "metadata", + "style", + "version" + ], + "type": "object" + }, + "ShapeStyle": { + "description": "Common visual style shared by all shape kinds.", + "properties": { + "fill_opacity": { + "anyOf": [{ "$ref": "#/$defs/Opacity" }, { "type": "null" }], + "description": "Optional opacity override for fills." + }, + "opacity": { "$ref": "#/$defs/Opacity", "description": "Opacity applied to the complete shape." }, + "stroke_opacity": { + "anyOf": [{ "$ref": "#/$defs/Opacity" }, { "type": "null" }], + "description": "Optional opacity override for strokes." + } + }, + "required": ["opacity"], + "type": "object" + }, + "SiblingAnchor": { + "description": "Anchor used to place an item in an ordered child list without numeric indexes.", + "oneOf": [ + { + "description": "Place the item before every existing sibling.", + "properties": { "position": { "const": "first", "type": "string" } }, + "required": ["position"], + "type": "object" + }, + { + "description": "Place the item after every existing sibling.", + "properties": { "position": { "const": "last", "type": "string" } }, + "required": ["position"], + "type": "object" + }, + { + "description": "Place the item immediately before the identified sibling.", + "properties": { + "position": { "const": "before", "type": "string" }, + "sibling_id": { "$ref": "#/$defs/PageId" } + }, + "required": ["position", "sibling_id"], + "type": "object" + }, + { + "description": "Place the item immediately after the identified sibling.", + "properties": { + "position": { "const": "after", "type": "string" }, + "sibling_id": { "$ref": "#/$defs/PageId" } + }, + "required": ["position", "sibling_id"], + "type": "object" + } + ] + }, + "SiblingAnchor2": { + "description": "Anchor used to place an item in an ordered child list without numeric indexes.", + "oneOf": [ + { + "description": "Place the item before every existing sibling.", + "properties": { "position": { "const": "first", "type": "string" } }, + "required": ["position"], + "type": "object" + }, + { + "description": "Place the item after every existing sibling.", + "properties": { "position": { "const": "last", "type": "string" } }, + "required": ["position"], + "type": "object" + }, + { + "description": "Place the item immediately before the identified sibling.", + "properties": { + "position": { "const": "before", "type": "string" }, + "sibling_id": { "$ref": "#/$defs/LayerId" } + }, + "required": ["position", "sibling_id"], + "type": "object" + }, + { + "description": "Place the item immediately after the identified sibling.", + "properties": { + "position": { "const": "after", "type": "string" }, + "sibling_id": { "$ref": "#/$defs/LayerId" } + }, + "required": ["position", "sibling_id"], + "type": "object" + } + ] + }, + "SiblingAnchor3": { + "description": "Anchor used to place an item in an ordered child list without numeric indexes.", + "oneOf": [ + { + "description": "Place the item before every existing sibling.", + "properties": { "position": { "const": "first", "type": "string" } }, + "required": ["position"], + "type": "object" + }, + { + "description": "Place the item after every existing sibling.", + "properties": { "position": { "const": "last", "type": "string" } }, + "required": ["position"], + "type": "object" + }, + { + "description": "Place the item immediately before the identified sibling.", + "properties": { + "position": { "const": "before", "type": "string" }, + "sibling_id": { "$ref": "#/$defs/ShapeId" } + }, + "required": ["position", "sibling_id"], + "type": "object" + }, + { + "description": "Place the item immediately after the identified sibling.", + "properties": { + "position": { "const": "after", "type": "string" }, + "sibling_id": { "$ref": "#/$defs/ShapeId" } + }, + "required": ["position", "sibling_id"], + "type": "object" + } + ] + }, + "StackDirection": { + "description": "Stack direction for container layout.", + "oneOf": [ + { "const": "horizontal", "description": "Place children from left to right.", "type": "string" }, + { "const": "vertical", "description": "Place children from top to bottom.", "type": "string" } + ] + }, + "Timestamp": { "description": "Milliseconds since the Unix epoch.", "format": "int64", "type": "integer" }, + "TransactionId": { "description": "Stable identifier for a transaction.", "type": "string" }, + "Transform": { + "description": "Transform relative to a shape's parent container or layer.", + "properties": { + "rotation": { "description": "Clockwise rotation in radians.", "format": "double", "type": "number" }, + "scale_x": { "description": "Horizontal scale.", "format": "double", "type": "number" }, + "scale_y": { "description": "Vertical scale.", "format": "double", "type": "number" }, + "translation": { "$ref": "#/$defs/Vec2", "description": "Translation in parent coordinates." } + }, + "required": ["translation", "rotation", "scale_x", "scale_y"], + "type": "object" + }, + "Vec2": { + "description": "Two-dimensional point or vector in document coordinates.", + "properties": { + "x": { "description": "Horizontal component.", "format": "double", "type": "number" }, + "y": { "description": "Vertical component.", "format": "double", "type": "number" } + }, + "required": ["x", "y"], + "type": "object" + } + }, + "$schema": "https://json-schema.org/draft/2020-12/schema", + "description": "One durable edit submitted to the transaction engine.", + "properties": { + "actor_id": { "$ref": "#/$defs/ActorId", "description": "Actor responsible for the transaction." }, + "base_heads": { + "description": "Causal heads inspected by the caller.", + "items": { "$ref": "#/$defs/ChangeHash" }, + "type": "array" + }, + "description": { "description": "Human-readable explanation retained in history.", "type": "string" }, + "id": { "$ref": "#/$defs/TransactionId", "description": "Stable transaction identifier." }, + "operations": { + "description": "Ordered operations committed as one CRDT change.", + "items": { "$ref": "#/$defs/Operation" }, + "type": "array" + }, + "origin": { "$ref": "#/$defs/Origin", "description": "Path by which the transaction entered the engine." }, + "timestamp": { "$ref": "#/$defs/Timestamp", "description": "Client-recorded transaction time." } + }, + "required": ["id", "actor_id", "origin", "base_heads", "description", "operations", "timestamp"], + "title": "TransactionDraft", + "type": "object" } diff --git a/scripts/capture-performance.mjs b/scripts/capture-performance.mjs new file mode 100644 index 0000000..4c44f36 --- /dev/null +++ b/scripts/capture-performance.mjs @@ -0,0 +1,246 @@ +import { execFileSync } from 'node:child_process'; +import { mkdtempSync, rmSync, writeFileSync } from 'node:fs'; +import { cpus, freemem, platform, release, tmpdir, totalmem } from 'node:os'; +import { join, resolve } from 'node:path'; +import process from 'node:process'; +import { hitTestPoint, Store } from '../packages/core/dist/index.mjs'; +import { createRenderer } from '../packages/renderer/dist/index.mjs'; + +const root = resolve(import.meta.dirname, '..'); +const outputFlagIndex = process.argv.indexOf('--output'); +const outputPath = outputFlagIndex >= 0 ? resolve(process.cwd(), process.argv[outputFlagIndex + 1]) : null; +const pageId = 'page:performance'; +const layerId = 'layer:performance:default'; +const shapeCount = 10_000; +const seed = 0x1a2b3c4d; + +function commandVersion(command, args = ['--version']) { + try { + return execFileSync(command, args, { encoding: 'utf8' }).trim(); + } catch { + return 'unavailable'; + } +} + +function duration(operation) { + const start = performance.now(); + const value = operation(); + return { value, milliseconds: performance.now() - start }; +} + +function median(values) { + const sorted = [...values].sort((left, right) => left - right); + return sorted[Math.floor(sorted.length / 2)]; +} + +function createNativeFixture() { + const shapes = {}; + const shapeIds = []; + for (let index = 0; index < shapeCount; index += 1) { + const id = `shape:performance:${index.toString().padStart(5, '0')}`; + shapeIds.push(id); + const column = index % 100; + const row = Math.floor(index / 100); + shapes[id] = { + id, + type: 'rect', + pageId, + layerId, + x: column * 64, + y: row * 64, + rot: 0, + opacity: 1, + props: { + w: 48 + ((index * 17 + seed) % 17), + h: 40 + ((index * 29 + seed) % 25), + fill: index % 2 === 0 ? '#dbeafe' : '#fef3c7', + stroke: '#334155', + radius: index % 5 + } + }; + } + + return { + fixture: { seed, generator: 'scripts/capture-performance.mjs' }, + doc: { + pages: { [pageId]: { id: pageId, name: 'Performance board', shapeIds, layerIds: [layerId] } }, + layers: { + [layerId]: { id: layerId, pageId, name: 'Default', shapeIds, visible: true, locked: false, opacity: 1 } + }, + shapes, + bindings: {} + } + }; +} + +function createCanvasHarness() { + const frames = []; + const noop = () => {}; + const context = { + save: noop, + restore: noop, + scale: noop, + translate: noop, + rotate: noop, + clearRect: noop, + fillRect: noop, + strokeRect: noop, + fillText: noop, + measureText: (text) => ({ width: text.length * 8 }), + beginPath: noop, + moveTo: noop, + lineTo: noop, + arc: noop, + arcTo: noop, + ellipse: noop, + rect: noop, + closePath: noop, + fill: noop, + stroke: noop, + setLineDash: noop, + fillStyle: '', + strokeStyle: '', + lineWidth: 1, + font: '', + textAlign: 'start', + textBaseline: 'alphabetic', + globalAlpha: 1 + }; + const canvas = { + width: 1280, + height: 720, + getContext: () => context, + getBoundingClientRect: () => ({ width: 1280, height: 720, top: 0, left: 0, right: 1280, bottom: 720 }) + }; + globalThis.window = { devicePixelRatio: 1 }; + globalThis.requestAnimationFrame = (callback) => { + frames.push(callback); + return frames.length; + }; + globalThis.cancelAnimationFrame = noop; + return { canvas, frames }; +} + +function countVisibleShapes(document, currentPageId, camera, viewport) { + const halfWidth = viewport.width / (2 * camera.zoom); + const halfHeight = viewport.height / (2 * camera.zoom); + const bounds = { + left: camera.x - halfWidth, + right: camera.x + halfWidth, + top: camera.y - halfHeight, + bottom: camera.y + halfHeight + }; + return document.pages[currentPageId].shapeIds.filter((id) => { + const shape = document.shapes[id]; + return ( + shape.x + shape.props.w >= bounds.left && + shape.x <= bounds.right && + shape.y + shape.props.h >= bounds.top && + shape.y <= bounds.bottom + ); + }).length; +} + +const nativeFixture = createNativeFixture(); +const viewport = { width: 1280, height: 720 }; +const camera = { x: 3200, y: 3200, zoom: 1 }; +const state = { doc: nativeFixture.doc, ui: { currentPageId: pageId, selectionIds: [], toolId: 'select' }, camera }; + +const rssBeforeOpen = process.memoryUsage().rss; +const openSamples = []; +for (let index = 0; index < 3; index += 1) { + const opened = duration(() => structuredClone(nativeFixture)); + openSamples.push(opened.milliseconds); +} +const rssAfterOpen = process.memoryUsage().rss; + +const hitPoints = Array.from({ length: 256 }, (_, index) => ({ x: (index * 97) % 6400, y: (index * 193) % 6400 })); +const hitTestSamples = []; +for (let index = 0; index < 3; index += 1) { + hitTestSamples.push( + duration(() => { + for (const point of hitPoints) hitTestPoint(state, point); + }).milliseconds / hitPoints.length + ); +} + +const { canvas, frames } = createCanvasHarness(); +const renderer = createRenderer(canvas, new Store(state), { + snapProvider: { get: () => ({ snapEnabled: false, gridEnabled: false, gridSize: 25 }) } +}); +const frameSamples = []; +for (let index = 0; index < 4; index += 1) { + while (frames.length > 0) frames.shift()(performance.now()); + renderer.markDirty(); + const frame = frames.shift(); + frameSamples.push(duration(() => frame(performance.now())).milliseconds); +} +renderer.dispose(); + +const saveDirectory = mkdtempSync(join(tmpdir(), 'inkfinite-performance-')); +const savePath = join(saveDirectory, 'board.snapshot.json'); +const saveSamples = []; +for (let index = 0; index < 5; index += 1) { + saveSamples.push(duration(() => writeFileSync(savePath, `${JSON.stringify(nativeFixture)}\n`)).milliseconds); +} +rmSync(saveDirectory, { recursive: true, force: true }); + +const cpu = cpus()[0]; +const result = { + schemaVersion: 1, + capturedAt: new Date().toISOString(), + fixture: { + path: 'fixtures/native/performance/large-board.json', + seed, + documentShapeCount: shapeCount, + visibleShapeCount: countVisibleShapes(nativeFixture.doc, pageId, camera, viewport), + viewport, + camera + }, + hardware: { + platform: platform(), + osRelease: release(), + cpu: cpu?.model ?? 'unknown', + logicalCpuCount: cpus().length, + cpuSpeedMHz: cpu?.speed ?? null, + totalMemoryBytes: totalmem(), + freeMemoryBytesAtCapture: freemem() + }, + runtime: { + node: process.version, + v8: process.versions.v8, + rustc: commandVersion('rustc'), + cargo: commandVersion('cargo'), + typescript: commandVersion(resolve(root, 'node_modules/.bin/tsc')), + vitest: commandVersion(resolve(root, 'packages/core/node_modules/.bin/vitest')), + tauri: commandVersion(resolve(root, 'apps/desktop/node_modules/.bin/tauri')) + }, + budgets: { frameTimeMillisecondsMedian: 8, hitTestTimeMillisecondsMedian: 1 }, + passed: { frame: median(frameSamples.slice(1)) <= 8, hitTest: median(hitTestSamples) <= 1 }, + strategy: { + renderer: 'Canvas 2D with viewport culling, dirty-frame batching, and bounded layout caches', + hitTesting: 'Reverse draw-order linear scan; no spatial index', + overlayLayers: 'Single canvas; the measured frame cost does not justify a second durable-scene bitmap' + }, + measurements: { + frameTimeMillisecondsMedian: median(frameSamples.slice(1)), + hitTestTimeMillisecondsMedian: median(hitTestSamples), + hitTestSampleCount: hitPoints.length, + memoryRssBeforeOpenBytes: rssBeforeOpen, + memoryRssAfterOpenBytes: rssAfterOpen, + memoryRssDeltaBytes: rssAfterOpen - rssBeforeOpen, + openTimeMillisecondsMedian: median(openSamples), + saveTimeMillisecondsMedian: median(saveSamples) + }, + notes: [ + 'The native performance fixture is generated deterministically from the native document model.', + 'Timing uses the production Canvas 2D renderer with a no-op context to isolate JavaScript traversal cost.', + 'The budget remains explicit so release verification can fail when either interaction measure regresses.' + ] +}; + +if (!result.passed.frame || !result.passed.hitTest) process.exitCode = 1; + +const serialized = `${JSON.stringify(result, null, '\t')}\n`; +if (outputPath) writeFileSync(outputPath, serialized); +else process.stdout.write(serialized); diff --git a/scripts/capture-v1-performance.mjs b/scripts/capture-v1-performance.mjs deleted file mode 100644 index 1b12349..0000000 --- a/scripts/capture-v1-performance.mjs +++ /dev/null @@ -1,200 +0,0 @@ -import { execFileSync } from "node:child_process"; -import { mkdtempSync, readFileSync, rmSync, writeFileSync } from "node:fs"; -import { cpus, freemem, platform, release, tmpdir, totalmem } from "node:os"; -import { dirname, join, resolve } from "node:path"; -import { fileURLToPath } from "node:url"; -import process from "node:process"; -import { hitTestPoint, Store } from "../packages/core/dist/index.mjs"; -import { createRenderer } from "../packages/renderer/dist/index.mjs"; - -const root = resolve(dirname(fileURLToPath(import.meta.url)), ".."); -const fixturePath = resolve(root, "fixtures/v1/performance/board-10000.inkfinite.json"); -const outputFlagIndex = process.argv.indexOf("--output"); -const outputPath = outputFlagIndex >= 0 ? resolve(process.cwd(), process.argv[outputFlagIndex + 1]) : null; - -function commandVersion(command, args = ["--version"]) { - try { - return execFileSync(command, args, { encoding: "utf8" }).trim(); - } catch { - return "unavailable"; - } -} - -function duration(operation) { - const start = performance.now(); - const value = operation(); - return { value, milliseconds: performance.now() - start }; -} - -function median(values) { - const sorted = [...values].sort((left, right) => left - right); - return sorted[Math.floor(sorted.length / 2)]; -} - -function createCanvasHarness() { - const frames = []; - const noop = () => {}; - const context = { - save: noop, - restore: noop, - scale: noop, - translate: noop, - rotate: noop, - clearRect: noop, - fillRect: noop, - strokeRect: noop, - fillText: noop, - measureText: (text) => ({ width: text.length * 8 }), - beginPath: noop, - moveTo: noop, - lineTo: noop, - arc: noop, - arcTo: noop, - ellipse: noop, - rect: noop, - closePath: noop, - fill: noop, - stroke: noop, - setLineDash: noop, - fillStyle: "", - strokeStyle: "", - lineWidth: 1, - font: "", - textAlign: "start", - textBaseline: "alphabetic", - globalAlpha: 1, - }; - const canvas = { - width: 1280, - height: 720, - getContext: () => context, - getBoundingClientRect: () => ({ width: 1280, height: 720, top: 0, left: 0, right: 1280, bottom: 720 }), - }; - globalThis.window = { devicePixelRatio: 1 }; - globalThis.requestAnimationFrame = (callback) => { - frames.push(callback); - return frames.length; - }; - globalThis.cancelAnimationFrame = noop; - return { canvas, frames }; -} - -function countVisibleShapes(document, pageId, camera, viewport) { - const halfWidth = viewport.width / (2 * camera.zoom); - const halfHeight = viewport.height / (2 * camera.zoom); - const bounds = { - left: camera.x - halfWidth, - right: camera.x + halfWidth, - top: camera.y - halfHeight, - bottom: camera.y + halfHeight, - }; - return document.pages[pageId].shapeIds.filter((id) => { - const shape = document.shapes[id]; - return shape.x + shape.props.w >= bounds.left - && shape.x <= bounds.right - && shape.y + shape.props.h >= bounds.top - && shape.y <= bounds.bottom; - }).length; -} - -const rssBeforeOpen = process.memoryUsage().rss; -const openSamples = []; -let fixture; -for (let index = 0; index < 5; index++) { - const opened = duration(() => JSON.parse(readFileSync(fixturePath, "utf8"))); - fixture = opened.value; - openSamples.push(opened.milliseconds); -} -const rssAfterOpen = process.memoryUsage().rss; -const pageId = fixture.order.pageIds[0]; -const camera = { x: 3200, y: 3200, zoom: 1 }; -const viewport = { width: 1280, height: 720 }; -const state = { - doc: fixture.doc, - ui: { currentPageId: pageId, selectionIds: [], toolId: "select" }, - camera, -}; - -const hitPoints = Array.from({ length: 1_000 }, (_, index) => ({ - x: (index * 97) % 6400, - y: (index * 193) % 6400, -})); -const hitTestSamples = []; -for (let index = 0; index < 7; index++) { - hitTestSamples.push(duration(() => { - for (const point of hitPoints) hitTestPoint(state, point); - }).milliseconds / hitPoints.length); -} - -const { canvas, frames } = createCanvasHarness(); -const renderer = createRenderer(canvas, new Store(state), { - snapProvider: { get: () => ({ snapEnabled: false, gridEnabled: false, gridSize: 25 }) }, -}); -const frameSamples = []; -for (let index = 0; index < 6; index++) { - while (frames.length > 0) frames.shift()(performance.now()); - renderer.markDirty(); - const frame = frames.shift(); - frameSamples.push(duration(() => frame(performance.now())).milliseconds); -} -renderer.dispose(); - -const saveDirectory = mkdtempSync(join(tmpdir(), "inkfinite-v1-baseline-")); -const savePath = join(saveDirectory, "board.inkfinite.json"); -const saveSamples = []; -for (let index = 0; index < 5; index++) { - saveSamples.push(duration(() => writeFileSync(savePath, `${JSON.stringify(fixture, null, 2)}\n`)).milliseconds); -} -rmSync(saveDirectory, { recursive: true }); - -const cpu = cpus()[0]; -const result = { - schemaVersion: 1, - capturedAt: new Date().toISOString(), - fixture: { - path: "fixtures/v1/performance/board-10000.inkfinite.json", - seed: fixture.fixture.seed, - documentShapeCount: fixture.doc.pages[pageId].shapeIds.length, - visibleShapeCount: countVisibleShapes(fixture.doc, pageId, camera, viewport), - viewport, - camera, - }, - hardware: { - platform: platform(), - osRelease: release(), - cpu: cpu?.model ?? "unknown", - logicalCpuCount: cpus().length, - cpuSpeedMHz: cpu?.speed ?? null, - totalMemoryBytes: totalmem(), - freeMemoryBytesAtCapture: freemem(), - }, - runtime: { - node: process.version, - v8: process.versions.v8, - pnpm: commandVersion("pnpm"), - rustc: commandVersion("rustc"), - cargo: commandVersion("cargo"), - typescript: commandVersion(resolve(root, "node_modules/.bin/tsc")), - vitest: commandVersion(resolve(root, "packages/core/node_modules/.bin/vitest")), - tauri: commandVersion(resolve(root, "apps/desktop/node_modules/.bin/tauri")), - }, - measurements: { - frameTimeMillisecondsMedian: median(frameSamples.slice(1)), - hitTestTimeMillisecondsMedian: median(hitTestSamples), - hitTestSampleCount: hitPoints.length, - memoryRssBeforeOpenBytes: rssBeforeOpen, - memoryRssAfterOpenBytes: rssAfterOpen, - memoryRssDeltaBytes: rssAfterOpen - rssBeforeOpen, - openTimeMillisecondsMedian: median(openSamples), - saveTimeMillisecondsMedian: median(saveSamples), - }, - notes: [ - "The v1 renderer traverses every shape on the current page; visibleShapeCount is recorded separately.", - "Frame timing uses the production Canvas 2D renderer with a no-op context to isolate JavaScript traversal cost.", - "No performance budget is enforced by V2-01; this file is the comparison point for later architecture gates.", - ], -}; - -const serialized = `${JSON.stringify(result, null, 2)}\n`; -if (outputPath) writeFileSync(outputPath, serialized); -else process.stdout.write(serialized); diff --git a/scripts/capture-v2-performance.mjs b/scripts/capture-v2-performance.mjs deleted file mode 100644 index 9b4d973..0000000 --- a/scripts/capture-v2-performance.mjs +++ /dev/null @@ -1,44 +0,0 @@ -import { execFileSync } from 'node:child_process'; -import { mkdirSync, writeFileSync } from 'node:fs'; -import { dirname, resolve } from 'node:path'; -import process from 'node:process'; - -const root = resolve(import.meta.dirname, '..'); -const outputFlagIndex = process.argv.indexOf('--output'); -const outputPath = outputFlagIndex >= 0 ? resolve(process.cwd(), process.argv[outputFlagIndex + 1]) : null; -const raw = execFileSync(process.execPath, [resolve(root, 'scripts/capture-v1-performance.mjs')], { encoding: 'utf8' }); -const baseline = JSON.parse(raw); -const budgets = { frameTimeMillisecondsMedian: 8, hitTestTimeMillisecondsMedian: 1 }; -const measurements = baseline.measurements; -const result = { - ...baseline, - schemaVersion: 2, - capturedAt: new Date().toISOString(), - budgets, - passed: { - frame: measurements.frameTimeMillisecondsMedian <= budgets.frameTimeMillisecondsMedian, - hitTest: measurements.hitTestTimeMillisecondsMedian <= budgets.hitTestTimeMillisecondsMedian - }, - strategy: { - renderer: 'Canvas 2D with viewport culling, dirty-frame batching, and bounded layout caches', - hitTesting: 'Reverse draw-order linear scan; no spatial index', - overlayLayers: 'Single canvas; the measured frame cost does not justify a second durable-scene bitmap' - }, - notes: [ - 'The renderer culls by transformed world bounds with padding for arrowheads, shadows, and selection handles.', - 'Selected overlays render from the full page list so culling cannot clip handles outside the viewport.', - 'The linear hit-test median remains below the 1 ms gate, so V2-11 does not add a spatial index.' - ] -}; - -if (!result.passed.frame || !result.passed.hitTest) { - process.exitCode = 1; -} - -const serialized = `${JSON.stringify(result, null, '\t')}\n`; -if (outputPath) { - mkdirSync(dirname(outputPath), { recursive: true }); - writeFileSync(outputPath, serialized); -} else { - process.stdout.write(serialized); -} diff --git a/scripts/check-bindings.mjs b/scripts/check-bindings.mjs index 6277dc6..9aa6abe 100644 --- a/scripts/check-bindings.mjs +++ b/scripts/check-bindings.mjs @@ -8,7 +8,7 @@ import { validateShapeProperties, } from "../packages/bindings/dist/index.js"; -const fixture = JSON.parse(await readFile(new URL("../fixtures/v2/shape-registry.json", import.meta.url), "utf8")); +const fixture = JSON.parse(await readFile(new URL("../fixtures/native/shape-registry.json", import.meta.url), "utf8")); assert.deepEqual([...BUILTIN_SHAPE_KINDS], fixture.kind_names); assert.deepEqual(GEOMETRY_CONVENTION, { @@ -38,4 +38,4 @@ assert.equal(shape.kind, "rect"); assert.equal(shape.transform.translation.x, transaction.operations[0].patch.transform.translation.x); assert.equal(transaction.operations[0].type, "patch_shape"); -console.log("generated TypeScript bindings conform to the shared V2-06 fixture"); +console.log("generated TypeScript bindings conform to the native shared fixture"); diff --git a/scripts/generate-v1-fixtures.mjs b/scripts/generate-v1-fixtures.mjs deleted file mode 100644 index f19602c..0000000 --- a/scripts/generate-v1-fixtures.mjs +++ /dev/null @@ -1,270 +0,0 @@ -import { mkdirSync, writeFileSync } from "node:fs"; -import { dirname, resolve } from "node:path"; -import { fileURLToPath } from "node:url"; - -const root = resolve(dirname(fileURLToPath(import.meta.url)), ".."); -const fixtureRoot = resolve(root, "fixtures/v1"); -const generatedAt = "2026-07-17T00:00:00.000Z"; -const timestamp = Date.parse(generatedAt); -const seed = 0x1a2b3c4d; - -function writeJson(relativePath, value) { - const path = resolve(fixtureRoot, relativePath); - mkdirSync(dirname(path), { recursive: true }); - writeFileSync(path, `${JSON.stringify(value, null, 2)}\n`); -} - -function page(id, name, shapeIds) { - return { id, name, shapeIds }; -} - -function baseShape(id, type, pageId, x, y, extra = {}) { - return { id, type, pageId, x, y, rot: 0, ...extra }; -} - -function makeFeatureDocument() { - const pageOne = "page:fixtures"; - const pageTwo = "page:ordering"; - const shapes = { - "shape:stencil-process": baseShape("shape:stencil-process", "rect", pageOne, 40, 40, { - props: { w: 120, h: 80, fill: "#ffffff", stroke: "#000000", radius: 0 }, - }), - "shape:stencil-decision": baseShape("shape:stencil-decision", "rect", pageOne, 220, 40, { - rot: Math.PI / 4, - props: { w: 80, h: 80, fill: "#ffffff", stroke: "#000000", radius: 0 }, - }), - "shape:stencil-terminator": baseShape("shape:stencil-terminator", "rect", pageOne, 380, 40, { - props: { w: 120, h: 60, fill: "#ffffff", stroke: "#000000", radius: 30 }, - }), - "shape:stencil-sticky": baseShape("shape:stencil-sticky", "rect", pageOne, 560, 40, { - props: { w: 200, h: 200, fill: "#fff740", stroke: "transparent", radius: 0 }, - }), - "shape:stencil-card": baseShape("shape:stencil-card", "rect", pageOne, 40, 220, { - groupId: "group:card", - props: { w: 300, h: 200, fill: "#ffffff", stroke: "#333333", radius: 8 }, - }), - "shape:stencil-card-divider": baseShape("shape:stencil-card-divider", "line", pageOne, 40, 270, { - groupId: "group:card", - props: { a: { x: 0, y: 0 }, b: { x: 300, y: 0 }, stroke: "#333333", width: 1 }, - }), - "shape:ellipse": baseShape("shape:ellipse", "ellipse", pageOne, 400, 280, { - props: { w: 150, h: 100, fill: "#dbeafe", stroke: "#1d4ed8" }, - }), - "shape:line": baseShape("shape:line", "line", pageOne, 400, 430, { - props: { a: { x: 0, y: 0 }, b: { x: 180, y: 60 }, stroke: "#334155", width: 3 }, - }), - "shape:arrow": baseShape("shape:arrow", "arrow", pageOne, 0, 0, { - props: { - points: [{ x: 160, y: 80 }, { x: 350, y: 160 }, { x: 475, y: 330 }], - start: { kind: "bound", bindingId: "binding:arrow-start" }, - end: { kind: "bound", bindingId: "binding:arrow-end" }, - style: { stroke: "#7c3aed", width: 2, headStart: true, headEnd: true, dash: [8, 4] }, - routing: { kind: "orthogonal", cornerRadius: 8 }, - label: { text: "bound route", align: "center", offset: 12 }, - }, - }), - "shape:text": baseShape("shape:text", "text", pageOne, 620, 300, { - groupId: "group:content", - props: { text: "Inkfinite v1 fixture", fontSize: 18, fontFamily: "Inter", color: "#111827", w: 180 }, - }), - "shape:stroke": baseShape("shape:stroke", "stroke", pageOne, 0, 0, { - props: { - points: [[620, 390, 0.2], [650, 410, 0.6], [690, 395, 0.9], [730, 430, 0.5]], - style: { color: "#dc2626", opacity: 0.75 }, - brush: { size: 12, thinning: 0.5, smoothing: 0.5, streamline: 0.5, simulatePressure: false }, - }, - }), - "shape:markdown": baseShape("shape:markdown", "markdown", pageOne, 40, 500, { - groupId: "group:content", - props: { - md: "# Frozen Markdown\n\n- **bold** item\n- `code` item\n\n```ts\nconst version = 1;\n```", - w: 360, - h: 240, - fontSize: 16, - fontFamily: "Inter", - color: "#0f172a", - bg: "#f8fafc", - border: "#94a3b8", - }, - }), - "shape:ordering-back": baseShape("shape:ordering-back", "rect", pageTwo, 100, 100, { - props: { w: 180, h: 180, fill: "#ef4444", stroke: "#7f1d1d", radius: 0 }, - }), - "shape:ordering-middle": baseShape("shape:ordering-middle", "ellipse", pageTwo, 130, 130, { - props: { w: 180, h: 180, fill: "#22c55e", stroke: "#14532d" }, - }), - "shape:ordering-front": baseShape("shape:ordering-front", "rect", pageTwo, 160, 160, { - props: { w: 180, h: 180, fill: "#3b82f6", stroke: "#1e3a8a", radius: 16 }, - }), - }; - - const fixtureOrder = [ - "shape:stencil-sticky", - "shape:stencil-process", - "shape:stencil-decision", - "shape:stencil-terminator", - "shape:stencil-card", - "shape:stencil-card-divider", - "shape:ellipse", - "shape:line", - "shape:arrow", - "shape:text", - "shape:stroke", - "shape:markdown", - ]; - const orderingOrder = ["shape:ordering-back", "shape:ordering-middle", "shape:ordering-front"]; - - return { - pages: { - [pageOne]: page(pageOne, "All features", fixtureOrder), - [pageTwo]: page(pageTwo, "Persisted ordering", orderingOrder), - }, - shapes, - bindings: { - "binding:arrow-start": { - id: "binding:arrow-start", - type: "arrow-end", - fromShapeId: "shape:arrow", - toShapeId: "shape:stencil-process", - handle: "start", - anchor: { kind: "edge", nx: 1, ny: 0 }, - }, - "binding:arrow-end": { - id: "binding:arrow-end", - type: "arrow-end", - fromShapeId: "shape:arrow", - toShapeId: "shape:ellipse", - handle: "end", - anchor: { kind: "center" }, - }, - }, - }; -} - -function makeLargeDocument() { - let randomState = seed >>> 0; - const random = () => { - randomState = (Math.imul(randomState, 1664525) + 1013904223) >>> 0; - return randomState / 0x100000000; - }; - const pageId = "page:10000"; - const shapeIds = []; - const shapes = {}; - - for (let index = 0; index < 10_000; index++) { - const id = `shape:perf:${String(index).padStart(5, "0")}`; - const column = index % 100; - const row = Math.floor(index / 100); - const width = 24 + Math.floor(random() * 24); - const height = 24 + Math.floor(random() * 24); - shapeIds.push(id); - shapes[id] = baseShape(id, "rect", pageId, column * 64, row * 64, { - props: { - w: width, - h: height, - fill: `hsl(${Math.floor(random() * 360)} 70% 80%)`, - stroke: "#334155", - radius: index % 5, - }, - }); - } - - return { pages: { [pageId]: page(pageId, "10,000 shapes", shapeIds) }, shapes, bindings: {} }; -} - -const board = { id: "board:v1-fixtures", name: "V1 compatibility fixtures", createdAt: timestamp, updatedAt: timestamp }; -const document = makeFeatureDocument(); -const order = { - pageIds: ["page:ordering", "page:fixtures"], - shapeOrder: Object.fromEntries(Object.values(document.pages).map((entry) => [entry.id, [...entry.shapeIds]])), -}; -const desktopFixture = { board, doc: document, order }; - -writeJson("desktop/all-features.inkfinite.json", desktopFixture); -writeJson("web/all-features.web.json", desktopFixture); -writeJson("rendering/all-shapes.json", { - state: { - doc: document, - ui: { currentPageId: "page:fixtures", selectionIds: ["shape:markdown"], toolId: "select" }, - camera: { x: 400, y: 300, zoom: 1 }, - }, - expected: { - shapeTypes: ["arrow", "ellipse", "line", "markdown", "rect", "stroke", "text"], - orderedShapeIds: document.pages["page:fixtures"].shapeIds, - }, -}); -writeJson("history/history-edits.json", { - initialState: { - doc: { - pages: { "page:history": page("page:history", "History", ["shape:history"]) }, - shapes: { - "shape:history": baseShape("shape:history", "rect", "page:history", 20, 30, { - props: { w: 100, h: 60, fill: "#ffffff", stroke: "#000000", radius: 4 }, - }), - }, - bindings: {}, - }, - ui: { currentPageId: "page:history", selectionIds: ["shape:history"], toolId: "select" }, - camera: { x: 0, y: 0, zoom: 1 }, - }, - edits: [ - { kind: "update-shape", shapeId: "shape:history", patch: { x: 220, y: 180, rot: 0.25 } }, - { kind: "update-shape", shapeId: "shape:history", patch: { props: { fill: "#f59e0b" } } }, - { kind: "delete-shape", shapeId: "shape:history" }, - ], - expectedAfterUndoAll: { shapeId: "shape:history", x: 20, y: 30, fill: "#ffffff" }, -}); -writeJson("invalid/missing-envelope-fields.json", { board }); -writeJson("invalid/dangling-references.inkfinite.json", { - board: { ...board, id: "board:invalid-dangling" }, - doc: { - pages: { "page:invalid": page("page:invalid", "Invalid", ["shape:missing"]) }, - shapes: { - "shape:dangling": baseShape("shape:dangling", "rect", "page:missing", 0, 0, { - props: { w: 10, h: 10, fill: "#fff", stroke: "#000", radius: 0 }, - }), - }, - bindings: {}, - }, - order: { pageIds: ["page:invalid"], shapeOrder: { "page:invalid": ["shape:missing"] } }, -}); -writeJson("invalid/duplicate-order.inkfinite.json", { - board: { ...board, id: "board:invalid-order" }, - doc: { - pages: { "page:invalid": page("page:invalid", "Invalid", ["shape:one", "shape:one"]) }, - shapes: { - "shape:one": baseShape("shape:one", "rect", "page:invalid", 0, 0, { - props: { w: 10, h: 10, fill: "#fff", stroke: "#000", radius: 0 }, - }), - }, - bindings: {}, - }, - order: { pageIds: ["page:invalid"], shapeOrder: { "page:invalid": ["shape:one", "shape:one"] } }, -}); -const malformedPath = resolve(fixtureRoot, "invalid/malformed-json.inkfinite.json"); -mkdirSync(dirname(malformedPath), { recursive: true }); -writeFileSync(malformedPath, "{\n \"board\":\n"); - -const largeDocument = makeLargeDocument(); -writeJson("performance/board-10000.inkfinite.json", { - board: { id: "board:10000", name: "10,000 shape baseline", createdAt: timestamp, updatedAt: timestamp }, - doc: largeDocument, - order: { - pageIds: ["page:10000"], - shapeOrder: { "page:10000": largeDocument.pages["page:10000"].shapeIds }, - }, - fixture: { seed, generator: "scripts/generate-v1-fixtures.mjs", generatedAt }, -}); -writeJson("manifest.json", { - format: "inkfinite-v1-compatibility-fixtures", - generatedAt, - generator: "scripts/generate-v1-fixtures.mjs", - performanceSeed: seed, - coverage: { - shapeTypes: ["rect", "ellipse", "line", "arrow", "text", "stroke", "markdown"], - stencilIds: ["flowchart:process", "flowchart:decision", "flowchart:terminator", "etc:stickynote", "ui:card"], - groupIds: ["group:card", "group:content"], - bindingIds: ["binding:arrow-start", "binding:arrow-end"], - pageIds: ["page:fixtures", "page:ordering"], - }, -});